]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/nCicParamod.ml
fad1aa41157a96cdaf31669b598ca246601dfe78
[helm.git] / helm / software / components / ng_paramodulation / nCicParamod.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *)
13
14 NCicBlob.set_default_eqP()
15 ;;
16 NCicProof.set_default_sig()
17 ;;
18
19 let debug _ = ();;
20 let print s = prerr_endline (Lazy.force s);; 
21
22 module B(C : NCicBlob.NCicContext): Orderings.Blob 
23   with type t = NCic.term and type input = NCic.term 
24   = Orderings.LPO(NCicBlob.NCicBlob(C))
25
26 module NCicParamod(C : NCicBlob.NCicContext) = Paramod.Paramod(B(C))
27
28 let readback rdb metasenv subst context (bag,i,fo_subst,l) =
29 (*
30   List.iter (fun x ->
31      print_endline (Pp.pp_unit_clause ~margin:max_int
32      (fst(Terms.M.find x bag)))) l; 
33 *)
34   (* let stamp = Unix.gettimeofday () in *)
35   let proofterm,prooftype = NCicProof.mk_proof bag i fo_subst l in
36   (* debug (lazy (Printf.sprintf "Got proof term in %fs"
37                      (Unix.gettimeofday() -. stamp))); *)
38   let metasenv, proofterm = 
39     let rec aux k metasenv = function
40       | NCic.Meta _ as t -> metasenv, t
41       | NCic.Implicit _ -> 
42           let metasenv, i, _, _ =
43             NCicMetaSubst.mk_meta metasenv context `IsTerm 
44           in
45             metasenv, NCic.Meta (i,(k,NCic.Irl (List.length context)))
46       | t -> NCicUntrusted.map_term_fold_a 
47           (fun _ k -> k+1) k aux metasenv t
48     in
49       aux 0 metasenv proofterm
50   in 
51   debug (lazy (NCicPp.ppterm ~metasenv ~subst ~context proofterm));
52 (*
53   let stamp = Unix.gettimeofday () in
54   let metasenv, subst, proofterm, _prooftype = 
55     NCicRefiner.typeof 
56       (rdb#set_coerc_db NCicCoercion.empty_db) 
57       metasenv subst context proofterm None
58   in
59     print (lazy (Printf.sprintf "Refined in %fs"
60                      (Unix.gettimeofday() -. stamp)));
61 *)
62     proofterm, prooftype, metasenv, subst
63
64 let nparamod rdb metasenv subst context t table =
65   let module C =
66     struct 
67       let metasenv = metasenv
68       let subst = subst
69       let context = context 
70     end 
71   in
72   let module B = B(C) in
73   let module P = NCicParamod(C) in
74   let module Pp = Pp.Pp(B) in
75   let bag, maxvar = Terms.empty_bag, 0 in
76   let (bag,maxvar), goals = 
77     HExtlib.list_mapi_acc (fun x _ a -> P.mk_goal a x) (bag,maxvar) [t]
78   in
79   let (bag,maxvar), passives = 
80     HExtlib.list_mapi_acc (fun x _ a -> P.mk_passive a x) (bag,maxvar) table
81   in
82   match 
83     P.paramod ~useage:true ~max_steps:max_int ~timeout:(Unix.gettimeofday () +. 300.0) 
84       ~g_passives:goals ~passives (bag,maxvar) 
85   with 
86   | P.Error _ | P.GaveUp | P.Timeout _ -> []
87   | P.Unsatisfiable solutions -> 
88       List.map (readback rdb metasenv subst context) solutions
89 ;;
90   
91 module EmptyC = 
92   struct
93     let metasenv = []
94     let subst = []
95     let context = []
96   end
97
98 module P = NCicParamod(EmptyC)
99
100 type state = P.state
101 let empty_state = P.empty_state
102
103 let forward_infer_step s t ty =
104   let bag = P.bag_of_state s in
105   let bag,clause = P.mk_passive bag (t,ty) in
106     if Terms.is_eq_clause clause then
107       P.forward_infer_step (P.replace_bag s bag) clause 0
108     else s
109 ;;
110
111 let index_obj s uri =
112   let obj = NCicEnvironment.get_checked_obj uri in
113   match obj with
114     | (_,d,[],[],NCic.Constant(_,_,Some(_),ty,_)) ->
115         let nref = NReference.reference_of_spec uri (NReference.Def d) in
116         forward_infer_step s (NCic.Const nref) ty
117     | _ -> s
118 ;;
119
120 let fast_eq_check rdb metasenv subst context s goal =
121   (* let stamp = Unix.gettimeofday () in *)
122   match P.fast_eq_check s goal with
123   | P.Error _ | P.GaveUp | P.Timeout _ -> []
124   | P.Unsatisfiable solutions -> 
125       (* print (lazy (Printf.sprintf "Got solutions in %fs"
126                      (Unix.gettimeofday() -. stamp))); *)
127       List.map (readback rdb metasenv subst context) solutions
128 ;;
129