]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic/cic.ml
Module CicHash (hash-tables over CIC terms based on physical equality) moved
[helm.git] / helm / ocaml / cic / cic.ml
index aacaabda95490e4f9e1cfc9df946f6be70e08c8c..624a3021640ea23eb3b961a06578dbf72ed4d539 100644 (file)
@@ -222,3 +222,12 @@ type anntarget =
  | Conjecture of annconjecture
  | Hypothesis of annhypothesis
 
+module CicHash =
+ Hashtbl.Make
+  (struct
+    type t = term
+    let equal = (==)
+    let hash = Hashtbl.hash
+   end)
+;;
+