]> matita.cs.unibo.it Git - helm.git/blobdiff - components/cic/discrimination_tree.mli
new snapshot
[helm.git] / components / cic / discrimination_tree.mli
index 61631f47869059e0fc0830498d399d83b3b9afab..63464e2ccf77b01b10bf11b3ff00debd098fd308 100644 (file)
@@ -27,17 +27,14 @@ module DiscriminationTreeIndexing :
   functor (A : Set.S) ->
     sig
 
-      val arities : (Cic.term, int) Hashtbl.t 
-
-      type key = Cic.term
       type t 
 
       val empty : t
-      val index : t -> key -> A.elt -> t
-      val remove_index : t -> key -> A.elt -> t
-      val in_index : t -> key -> (A.elt -> bool) -> bool
-      val retrieve_generalizations : t -> key -> A.t
-      val retrieve_unifiables : t -> key -> A.t
+      val index : t -> Cic.term -> A.elt -> t
+      val remove_index : t -> Cic.term -> A.elt -> t
+      val in_index : t -> Cic.term -> (A.elt -> bool) -> bool
+      val retrieve_generalizations : t -> Cic.term -> A.t
+      val retrieve_unifiables : t -> Cic.term -> A.t
     end