]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/paramodulation/equality_indexing.mli
added a new type for proofs.
[helm.git] / helm / software / components / tactics / paramodulation / equality_indexing.mli
index d7c3bec5ec179db7cb33028b566f84ea694f8578..58b28458d6308f5fb620b7279af45ec894fc2d8b 100644 (file)
@@ -25,7 +25,7 @@
 
 module type EqualityIndex =
   sig
-    module PosEqSet : Set.S with type elt = Utils.pos * Inference.equality
+    module PosEqSet : Set.S with type elt = Utils.pos * Equality.equality
     val arities : (Cic.term, int) Hashtbl.t
     type key = Cic.term
     type t = Discrimination_tree.DiscriminationTreeIndexing(PosEqSet).t
@@ -33,9 +33,9 @@ module type EqualityIndex =
     val retrieve_generalizations : t -> key -> PosEqSet.t
     val retrieve_unifiables : t -> key -> PosEqSet.t
     val init_index : unit -> unit
-    val remove_index : t -> Inference.equality -> t
-    val index : t -> Inference.equality -> t
-    val in_index : t -> Inference.equality -> bool
+    val remove_index : t -> Equality.equality -> t
+    val index : t -> Equality.equality -> t
+    val in_index : t -> Equality.equality -> bool
   end
 
 module DT : EqualityIndex