]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/index.mli
Branched paramodulation for CNF (Horn clauses)
[helm.git] / helm / software / components / ng_paramodulation / index.mli
index 5581f7cfa7fd7bbcda4f39d56b00f56b4210c503..51934d1b1f592a1afe69620a47a551ba8dbd0785 100644 (file)
 
 (* $Id$ *)
 
-module Index (B : Terms.Blob) : 
+module Index (B : Orderings.Blob) : 
   sig
     module ClauseSet : Set.S with 
-      type elt = Terms.direction * B.t Terms.unit_clause
+      type elt = Terms.direction * B.t Terms.clause
 
     module FotermIndexable : Discrimination_tree.Indexable with 
       type constant_name = B.t and
@@ -26,7 +26,9 @@ module Index (B : Terms.Blob) :
       type data = ClauseSet.elt and 
       type dataset = ClauseSet.t
     
-    val index_unit_clause :
-          DT.t -> B.t Terms.unit_clause -> DT.t 
+    val index_clause :
+          DT.t -> B.t Terms.clause -> DT.t 
+
+    type active_set = B.t Terms.clause list * DT.t
 
   end