]> matita.cs.unibo.it Git - helm.git/blob - matitaB/components/ng_paramodulation/nCicParamod.ml
Too flexible terms are pruned.
[helm.git] / matitaB / 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 noprint _ = ();;
20 let print s = prerr_endline (Lazy.force s);; 
21 let debug = noprint;; 
22
23 module B : Orderings.Blob 
24   with type t = NCic.term and type input = NCic.term 
25   = Orderings.LPO(NCicBlob.NCicBlob)
26
27 module NCicParamod = Paramod.Paramod(B)
28
29 let readback status ?(demod=false) metasenv subst context (bag,i,fo_subst,l) =
30 (*
31   List.iter (fun x ->
32      print_endline (Pp.pp_unit_clause ~margin:max_int
33      (fst(Terms.M.find x bag)))) l; 
34 *)
35   (* let stamp = Unix.gettimeofday () in *)
36   let proofterm,prooftype = NCicProof.mk_proof status ~demod bag i fo_subst l in
37   (* debug (lazy (Printf.sprintf "Got proof term in %fs"
38                      (Unix.gettimeofday() -. stamp))); *)
39 (*
40   let metasenv, proofterm = 
41     let rec aux k metasenv = function
42       | NCic.Meta _ as t -> metasenv, t
43       | NCic.Implicit _ -> 
44           let metasenv, i, _, _ =
45             NCicMetaSubst.mk_meta metasenv context `IsTerm 
46           in
47             metasenv, NCic.Meta (i,(k,NCic.Irl (List.length context)))
48       | t -> NCicUntrusted.map_term_fold_a 
49           (fun _ k -> k+1) k aux metasenv t
50     in
51       aux 0 metasenv proofterm
52   in *)
53   debug (lazy (status#ppterm ~metasenv ~subst ~context proofterm));
54 (*
55   let stamp = Unix.gettimeofday () in
56   let metasenv, subst, proofterm, _prooftype = 
57     NCicRefiner.typeof 
58       (status#set_coerc_db NCicCoercion.empty_db) 
59       metasenv subst context proofterm None
60   in
61     print (lazy (Printf.sprintf "Refined in %fs"
62                      (Unix.gettimeofday() -. stamp)));
63 *)
64     proofterm, prooftype, metasenv, subst
65
66 let nparamod status metasenv subst context t table =
67   let module P = NCicParamod in
68   let module Pp = Pp.Pp(B) in
69   let bag, maxvar = Terms.empty_bag, 0 in
70   let saturate (t,ty) = 
71     NCicBlob.saturate status metasenv subst context t ty in
72   let (bag,maxvar), goals = 
73     HExtlib.list_mapi_acc 
74       (fun x _ a -> P.mk_goal a (saturate x)) (bag,maxvar) [t]
75   in
76   let (bag,maxvar), passives =
77     HExtlib.list_mapi_acc 
78       (fun x _ a -> P.mk_passive a (saturate x))  (bag,maxvar) table
79   in
80   match 
81     P.paramod ~useage:true ~max_steps:max_int ~timeout:(Unix.gettimeofday () +. 300.0) 
82       ~g_passives:goals ~passives (bag,maxvar) 
83   with 
84   | P.Error _ | P.GaveUp | P.Timeout _ -> []
85   | P.Unsatisfiable solutions -> 
86       List.map (readback status metasenv subst context) solutions
87 ;;
88   
89 module CB = NCicBlob.NCicBlob
90 module P = NCicParamod
91
92 type state = P.state
93 let empty_state = P.empty_state
94
95 let size_of_state = P.size_of_state
96
97 let tooflex (_,l,_,_) =
98   match l with
99     | Terms.Equation (l,r,_,o) ->
100       (match l,r,o with
101        | Terms.Var _, _, (Terms.Incomparable | Terms.Invertible) -> true
102        | _, Terms.Var _,(Terms.Incomparable | Terms.Invertible) -> true
103        | _ -> false)
104     | _ -> false
105 ;;  
106
107 let forward_infer_step status metasenv subst context s t ty =
108   let bag = P.bag_of_state s in
109   let saturate (t,ty) = 
110     NCicBlob.saturate status metasenv subst context t ty in
111   let bag,clause = P.mk_passive bag (saturate (t,ty)) in
112     if Terms.is_eq_clause clause then
113       if tooflex clause then (debug (lazy "pruning tooflex"); s)
114       else P.forward_infer_step (P.replace_bag s bag) clause 0
115     else ((*print (lazy "not eq");*) s)
116 ;;
117
118 let index_obj status s uri =
119   let obj = NCicEnvironment.get_checked_obj status uri in
120   debug (lazy ("indexing : " ^ (NUri.string_of_uri uri)));
121   debug (lazy ("no : " ^ (string_of_int (fst (Obj.magic uri)))));
122   match obj with
123     | (_,_,[],[],NCic.Constant(_,_,None,ty,_)) ->
124         let nref = NReference.reference_of_spec uri NReference.Decl in
125         forward_infer_step status [] [] [] s (NCic.Const nref) ty
126     | (_,d,[],[],NCic.Constant(_,_,Some(_),ty,_)) ->
127         let nref = NReference.reference_of_spec uri (NReference.Def d) in
128         forward_infer_step status [] [] [] s (NCic.Const nref) ty
129     | _ -> s
130 ;;
131
132 let demod status metasenv subst context s goal =
133   (* let stamp = Unix.gettimeofday () in *)
134   match P.demod s goal with
135     | P.Error _ | P.GaveUp | P.Timeout _ -> []
136     | P.Unsatisfiable solutions -> 
137       (* print (lazy (Printf.sprintf "Got solutions in %fs"
138                      (Unix.gettimeofday() -. stamp))); *)
139       List.map (readback ~demod:true status metasenv subst context) solutions
140 ;;
141
142 let paramod status metasenv subst context s goal =
143   (* let stamp = Unix.gettimeofday () in *)
144   match P.nparamod ~useage:true ~max_steps:max_int 
145     ~timeout:(Unix.gettimeofday () +. 300.0) s goal with
146   | P.Error _ | P.GaveUp | P.Timeout _ -> []
147   | P.Unsatisfiable solutions -> 
148       (* print (lazy (Printf.sprintf "Got solutions in %fs"
149                      (Unix.gettimeofday() -. stamp))); *)
150       List.map (readback status metasenv subst context) solutions
151 ;;
152
153 let fast_eq_check status metasenv subst context s goal =
154   (* let stamp = Unix.gettimeofday () in *)
155   match P.fast_eq_check s goal with
156   | P.Error _ | P.GaveUp | P.Timeout _ -> []
157   | P.Unsatisfiable solutions -> 
158       (* print (lazy (Printf.sprintf "Got solutions in %fs"
159                      (Unix.gettimeofday() -. stamp))); *)
160       List.map (readback status metasenv subst context) solutions
161 ;;
162
163 let is_equation status metasenv subst context ty =
164   let hty, _, _ = 
165     NCicMetaSubst.saturate status ~delta:0 metasenv subst context
166       ty 0 
167   in match hty with
168     | NCic.Appl (eq ::tl) when eq = CB.eqP() -> true
169     | _ -> false
170 ;;
171
172 (*
173 let demodulate status metasenv subst context s goal =
174   (* let stamp = Unix.gettimeofday () in *)
175   match P.fast_eq_check s goal with
176   | P.Error _ | P.GaveUp | P.Timeout _ -> []
177   | P.Unsatisfiable solutions -> 
178       (* print (lazy (Printf.sprintf "Got solutions in %fs"
179                      (Unix.gettimeofday() -. stamp))); *)
180       List.map (readback status metasenv subst context) solutions
181 ;;
182 *)