diff --git a/lib/Lattice.v b/lib/Lattice.v index 7ef1b9e1832f5b451660b0ac4e3d8f10a7e6a720..f796367dcaace1b6f79e5247ef6914bd2e166f7a 100644 --- a/lib/Lattice.v +++ b/lib/Lattice.v @@ -6,10 +6,10 @@ Require Import FSets. (** * Signatures of semi-lattices *) -(** A semi-lattice is a type [t] equipped with a decidable equality [eq], - a partial order [ge], a smallest element [bot], and an upper - bound operation [lub]. Note that we do not demand that [lub] computes - the least upper bound. *) +(** A semi-lattice is a type [t] equipped with an equivalence relation [eq], + a boolean equivalence test [beq], a partial order [ge], a smallest element + [bot], and an upper bound operation [lub]. + Note that we do not demand that [lub] computes the least upper bound. *) Module Type SEMILATTICE.