X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2FnCicParamod.ml;h=5b3e6148b99d4519ef0446941a35a10882a90f7a;hb=5d917dca1e20e201ada174da2c36796f73a24623;hp=fad1aa41157a96cdaf31669b598ca246601dfe78;hpb=c3186d490cc27c447ee3ae5c4cf6b5d8cef0ee5d;p=helm.git diff --git a/helm/software/components/ng_paramodulation/nCicParamod.ml b/helm/software/components/ng_paramodulation/nCicParamod.ml index fad1aa411..5b3e6148b 100644 --- a/helm/software/components/ng_paramodulation/nCicParamod.ml +++ b/helm/software/components/ng_paramodulation/nCicParamod.ml @@ -35,6 +35,7 @@ let readback rdb metasenv subst context (bag,i,fo_subst,l) = let proofterm,prooftype = NCicProof.mk_proof bag i fo_subst l in (* debug (lazy (Printf.sprintf "Got proof term in %fs" (Unix.gettimeofday() -. stamp))); *) +(* let metasenv, proofterm = let rec aux k metasenv = function | NCic.Meta _ as t -> metasenv, t @@ -47,7 +48,7 @@ let readback rdb metasenv subst context (bag,i,fo_subst,l) = (fun _ k -> k+1) k aux metasenv t in aux 0 metasenv proofterm - in + in *) debug (lazy (NCicPp.ppterm ~metasenv ~subst ~context proofterm)); (* let stamp = Unix.gettimeofday () in @@ -95,6 +96,7 @@ module EmptyC = let context = [] end +module CB = NCicBlob.NCicBlob(EmptyC) module P = NCicParamod(EmptyC) type state = P.state @@ -105,11 +107,13 @@ let forward_infer_step s t ty = let bag,clause = P.mk_passive bag (t,ty) in if Terms.is_eq_clause clause then P.forward_infer_step (P.replace_bag s bag) clause 0 - else s + else (debug (lazy "not eq"); s) ;; let index_obj s uri = let obj = NCicEnvironment.get_checked_obj uri in + debug (lazy ("indexing : " ^ (NUri.string_of_uri uri))); + debug (lazy ("no : " ^ (string_of_int (fst (Obj.magic uri))))); match obj with | (_,d,[],[],NCic.Constant(_,_,Some(_),ty,_)) -> let nref = NReference.reference_of_spec uri (NReference.Def d) in @@ -117,6 +121,17 @@ let index_obj s uri = | _ -> s ;; +let paramod rdb metasenv subst context s goal = + (* let stamp = Unix.gettimeofday () in *) + match P.nparamod ~useage:true ~max_steps:max_int + ~timeout:(Unix.gettimeofday () +. 300.0) s goal with + | P.Error _ | P.GaveUp | P.Timeout _ -> [] + | P.Unsatisfiable solutions -> + (* print (lazy (Printf.sprintf "Got solutions in %fs" + (Unix.gettimeofday() -. stamp))); *) + List.map (readback rdb metasenv subst context) solutions +;; + let fast_eq_check rdb metasenv subst context s goal = (* let stamp = Unix.gettimeofday () in *) match P.fast_eq_check s goal with @@ -127,3 +142,24 @@ let fast_eq_check rdb metasenv subst context s goal = List.map (readback rdb metasenv subst context) solutions ;; +let is_equation metasenv subst context ty = + let hty, _, _ = + NCicMetaSubst.saturate ~delta:0 metasenv subst context + ty 0 + in match hty with + | NCic.Appl (eq ::tl) when eq = CB.eqP -> true + | _ -> false +;; + + +(* +let demodulate rdb metasenv subst context s goal = + (* let stamp = Unix.gettimeofday () in *) + match P.fast_eq_check s goal with + | P.Error _ | P.GaveUp | P.Timeout _ -> [] + | P.Unsatisfiable solutions -> + (* print (lazy (Printf.sprintf "Got solutions in %fs" + (Unix.gettimeofday() -. stamp))); *) + List.map (readback rdb metasenv subst context) solutions +;; +*)