X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2FnCicParamod.ml;h=a1e2a9ff5ea96b58cee526825ac456af267804f4;hb=ad8d37cce3b39565861014d870b91b1add0ec0e3;hp=8c740a0e4605c5d282ff89270b6f1134587553f2;hpb=9450b36b5e385818adbcda257fa74260c2979fcd;p=helm.git diff --git a/helm/software/components/ng_paramodulation/nCicParamod.ml b/helm/software/components/ng_paramodulation/nCicParamod.ml index 8c740a0e4..a1e2a9ff5 100644 --- a/helm/software/components/ng_paramodulation/nCicParamod.ml +++ b/helm/software/components/ng_paramodulation/nCicParamod.ml @@ -21,17 +21,17 @@ let nparamod rdb metasenv subst context t table = in let module B : Orderings.Blob with type t = NCic.term and type input = NCic.term - = Orderings.NRKBO(NCicBlob.NCicBlob(C)) + = Orderings.LPO(NCicBlob.NCicBlob(C)) in let module P = Paramod.Paramod(B) in let module Pp = Pp.Pp(B) in let bag, maxvar = Terms.empty_bag, 0 in - let (bag,maxvar), passives = - HExtlib.list_mapi_acc (fun x _ a -> P.mk_passive a x) (bag,maxvar) table - in let (bag,maxvar), goals = HExtlib.list_mapi_acc (fun x _ a -> P.mk_goal a x) (bag,maxvar) [t] in + let (bag,maxvar), passives = + HExtlib.list_mapi_acc (fun x _ a -> P.mk_passive a x) (bag,maxvar) table + in match P.paramod ~useage:true ~max_steps:max_int ~timeout:(Unix.gettimeofday () +. 300.0) ~g_passives:goals ~passives (bag,maxvar)