aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/names.ml
diff options
context:
space:
mode:
authorGravatar Matej Kosik <matej.kosik@inria.fr>2016-10-25 13:40:18 +0200
committerGravatar Matej Kosik <matej.kosik@inria.fr>2016-10-26 10:55:32 +0200
commit68dfa4701d7636728270dfd8f33133627486204b (patch)
tree9b8f95fd7e6cdc2aa6afdcea3fcc3cf38730503b /kernel/names.ml
parent5474d83bc8845bd5aa3fb339057d6efa5feedd7a (diff)
COMMENT: Names.Cmap and Names.Cmap_env
Diffstat (limited to 'kernel/names.ml')
-rw-r--r--kernel/names.ml6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/names.ml b/kernel/names.ml
index 1313bae7b..d928d300f 100644
--- a/kernel/names.ml
+++ b/kernel/names.ml
@@ -598,7 +598,13 @@ end
module Constant = KerPair
module Cmap = HMap.Make(Constant.CanOrd)
+(** A map whose keys are constants (values of the {!Constant.t} type).
+ Keys are ordered wrt. "cannonical form" of the constant. *)
+
module Cmap_env = HMap.Make(Constant.UserOrd)
+(** A map whose keys are constants (values of the {!Constant.t} type).
+ Keys are ordered wrt. "user form" of the constant. *)
+
module Cpred = Predicate.Make(Constant.CanOrd)
module Cset = Cmap.Set
module Cset_env = Cmap_env.Set