]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/terms.ml
First compiling version
[helm.git] / helm / software / components / ng_paramodulation / terms.ml
index db4c8cad6bce2680f9b98f538373cb8a9c274d5d..0e69cace91c57189aad37d6a50247d5a7dfb18ba 100644 (file)
@@ -18,7 +18,7 @@ type 'a foterm =
 
 type 'a substitution = (int * 'a foterm) list
 
-type comparison = Lt | Eq | Gt | Incomparable
+type comparison = Lt | Eq | Gt | Incomparable | Invertible
 
 type rule = Superposition | Demodulation
 type direction = Left2Right | Right2Left | Nodir
@@ -46,8 +46,10 @@ type 'a unit_clause =
 
 type 'a clause =
     int
-    * 'a literal list (* left hand side of the arrow *)
-    * 'a literal list (* right hand side of the arrow *)
+    * ('a literal * bool) list (* left hand side of the arrow,
+                                 with flag for selection *)
+    * ('a literal * bool) list (* right hand side of the arrow,
+                                 with flag for selection *)
     * varlist
     * 'a proof
 
@@ -72,16 +74,16 @@ module M : Map.S with type key = int
   = Map.Make(OT) 
 
 type 'a bag = int
-              * (('a unit_clause * bool * int) M.t)
+              * (('a clause * bool * int) M.t)
 
-  let add_to_bag (_,lit,vl,proof) (id,bag) =
+  let add_to_bag (_,nlit,plit,vl,proof) (id,bag) =
     let id = id+1 in
-    let clause = (id, lit, vl, proof) in
+    let clause = (id, nlit, plit, vl, proof) in
     let bag = M.add id (clause,false,0) bag in
     (id,bag), clause 
    ;;
 
-  let replace_in_bag ((id,_,_,_),_,_ as cl) (max_id,bag) =
+  let replace_in_bag ((id,_,_,_,_),_,_ as cl) (max_id,bag) =
     let bag = M.add id cl bag in
       (max_id,bag)
   ;;