]> matita.cs.unibo.it Git - helm.git/commitdiff
Added a function remove_unit_clause
authorAndrea Asperti <andrea.asperti@unibo.it>
Wed, 2 Dec 2009 09:48:37 +0000 (09:48 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Wed, 2 Dec 2009 09:48:37 +0000 (09:48 +0000)
helm/software/components/ng_paramodulation/index.ml
helm/software/components/ng_paramodulation/index.mli

index 4db4584a451494caf00bff8166a3a37f96d678dc..b6ca890b2c3ee9c777f70246c7a45a3932c5ab9a 100644 (file)
@@ -81,27 +81,27 @@ module Index(B : Orderings.Blob) = struct
       type dataset = ClauseSet.t
     = Make(FotermIndexable)(ClauseSet)
   
-  let index_unit_clause maxvar t = function
+  let process op t = function
     | (_,Terms.Equation (l,_,_,Terms.Gt),_,_) as c -> 
-          DT.index t l (Terms.Left2Right, c)
+        op t l (Terms.Left2Right, c)
     | (_,Terms.Equation (_,r,_,Terms.Lt),_,_) as c -> 
-          DT.index t r (Terms.Right2Left, c)
+        op t r (Terms.Right2Left, c)
     | (_,Terms.Equation (l,r,_,Terms.Incomparable),vl,_) as c ->
-(*     if are_invertible maxvar vl l r then
-         (prerr_endline ("Invertible " ^ (Pp.pp_foterm l) ^ "=" ^
-            (Pp.pp_foterm r));
-           DT.index t l (Terms.Left2Right, c))
-          else *)
-          DT.index  
-           (DT.index t l (Terms.Left2Right, c))
-           r (Terms.Right2Left, c)
+        op (op t l (Terms.Left2Right, c))
+          r (Terms.Right2Left, c)
     | (_,Terms.Equation (l,r,_,Terms.Invertible),vl,_) as c ->
-       DT.index t l (Terms.Left2Right, c)
+       op t l (Terms.Left2Right, c)
     | (_,Terms.Equation (_,r,_,Terms.Eq),_,_)  -> assert false
     | (_,Terms.Predicate p,_,_) as c ->
-          DT.index t p (Terms.Nodir, c)
+        op t p (Terms.Nodir, c)
   ;;
 
+  let index_unit_clause = 
+    process DT.index 
+  let remove_unit_clause =
+    process DT.remove_index 
+
   type active_set = B.t Terms.unit_clause list * DT.t
 
 end
index bfed8d533e73dfc9d315c7188d6ae6595154697a..2fc8ec1e847323edd88f10681c83fc3f112bd9bc 100644 (file)
@@ -26,8 +26,11 @@ module Index (B : Orderings.Blob) :
       type data = ClauseSet.elt and 
       type dataset = ClauseSet.t
     
-    val index_unit_clause :
-          int -> DT.t -> B.t Terms.unit_clause -> DT.t 
+    val index_unit_clause : 
+      DT.t -> B.t Terms.unit_clause -> DT.t 
+
+    val remove_unit_clause :
+      DT.t -> B.t Terms.unit_clause -> DT.t 
 
     type active_set = B.t Terms.unit_clause list * DT.t