X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fterms.ml;h=0e69cace91c57189aad37d6a50247d5a7dfb18ba;hb=bebc917ebff72c2e235cb3062a4c94f10a9aab27;hp=a7173b1b96989be4cdee817a5169f3a895ba4ac9;hpb=b519aa529779c0a4625eb43fa9557862d8cc6617;p=helm.git diff --git a/helm/software/components/ng_paramodulation/terms.ml b/helm/software/components/ng_paramodulation/terms.ml index a7173b1b9..0e69cace9 100644 --- a/helm/software/components/ng_paramodulation/terms.ml +++ b/helm/software/components/ng_paramodulation/terms.ml @@ -74,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) ;;