]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/paramod.ml
do not infer on closed goals
[helm.git] / helm / software / components / ng_paramodulation / paramod.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 let debug s = prerr_endline s ;;
15 let debug _ = ();;
16
17 let monster = 500;;
18     
19 module Paramod (B : Terms.Blob) = struct
20   exception Failure of string * B.t Terms.bag * int * int
21   type bag = B.t Terms.bag * int
22   module Pp = Pp.Pp (B) 
23   module FU = FoUnif.Founif(B) 
24   module IDX = Index.Index(B) 
25   module Sup = Superposition.Superposition(B) 
26   module Utils = FoUtils.Utils(B) 
27   module WeightOrderedPassives =
28       struct
29         type t = B.t Terms.passive_clause
30         let compare = Utils.compare_passive_clauses_weight
31       end
32
33   module AgeOrderedPassives =
34       struct
35         type t = B.t Terms.passive_clause
36         let compare = Utils.compare_passive_clauses_age
37       end
38   
39   module WeightPassiveSet = Set.Make(WeightOrderedPassives)
40   module AgePassiveSet = Set.Make(AgeOrderedPassives)
41
42   let add_passive_clause ?(no_weight=false) (passives_w,passives_a) cl =
43     let cl = if no_weight then (0,cl)
44     else Utils.mk_passive_clause cl in
45     WeightPassiveSet.add cl passives_w, AgePassiveSet.add cl passives_a
46   ;;
47
48   let add_passive_goal ?(no_weight=false) (passives_w,passives_a) g =
49     let g = if no_weight then (0,g)
50     else Utils.mk_passive_goal g in
51     WeightPassiveSet.add g passives_w, AgePassiveSet.add g passives_a
52   ;;
53
54   let remove_passive_clause (passives_w,passives_a) cl =
55     let passives_w = WeightPassiveSet.remove cl passives_w in
56     let passives_a = AgePassiveSet.remove cl passives_a in
57       passives_w,passives_a
58   ;;
59
60   let add_passive_clauses ?(no_weight=false)
61       (passives_w,passives_a) new_clauses =
62     let new_clauses_w,new_clauses_a =
63       List.fold_left (add_passive_clause ~no_weight)
64       (WeightPassiveSet.empty,AgePassiveSet.empty) new_clauses
65     in
66       (WeightPassiveSet.union new_clauses_w passives_w,
67        AgePassiveSet.union new_clauses_a passives_a)
68   ;;
69
70   let add_passive_goals ?(no_weight=false)
71       (passives_w,passives_a) new_clauses =
72     let new_clauses_w,new_clauses_a =
73       List.fold_left (add_passive_goal ~no_weight)
74       (WeightPassiveSet.empty,AgePassiveSet.empty) new_clauses
75     in
76       (WeightPassiveSet.union new_clauses_w passives_w,
77        AgePassiveSet.union new_clauses_a passives_a)
78   ;;
79
80   let is_passive_set_empty (passives_w,passives_a) =
81     if (WeightPassiveSet.is_empty passives_w) then begin
82       assert (AgePassiveSet.is_empty passives_a); true
83     end else begin
84       assert (not (AgePassiveSet.is_empty passives_a)); false
85     end
86   ;;
87
88   let passive_set_cardinal (passives_w,_) = WeightPassiveSet.cardinal passives_w
89   
90   let passive_empty_set =
91     (WeightPassiveSet.empty,AgePassiveSet.empty)
92   ;;
93
94   let pick_min_passive ~use_age (passives_w,passives_a) =
95     if use_age then AgePassiveSet.min_elt passives_a
96     else WeightPassiveSet.min_elt passives_w
97   ;;
98
99   let mk_clause bag maxvar (t,ty) =
100     let (proof,ty) = B.saturate t ty in
101     let c, maxvar = Utils.mk_unit_clause maxvar ty proof in
102     let bag, c = Utils.add_to_bag bag c in
103     (bag, maxvar), c
104   ;;
105   
106   let mk_passive (bag,maxvar) = mk_clause bag maxvar;;
107   let mk_goal (bag,maxvar) = mk_clause bag maxvar;;
108
109   (* TODO : global age over facts and goals (without comparing weights) *)
110   let select ~use_age passives g_passives =
111     if is_passive_set_empty passives then begin
112       assert (not (is_passive_set_empty g_passives));
113       let g_cl = pick_min_passive ~use_age:use_age g_passives in
114         (true,g_cl,passives,remove_passive_clause g_passives g_cl)
115     end
116     else let cl = pick_min_passive ~use_age:use_age passives in
117       if is_passive_set_empty g_passives then
118         (false,cl,remove_passive_clause passives cl,g_passives)
119       else
120         let g_cl = pick_min_passive ~use_age:use_age g_passives in
121           if (fst cl <= fst g_cl) then
122             (false,cl,remove_passive_clause passives cl,g_passives)
123           else
124             (true,g_cl,passives,remove_passive_clause g_passives g_cl)
125   ;;
126
127   let backward_infer_step bag maxvar actives passives
128                           g_actives g_passives g_current =
129     (* superposition left, simplifications on goals *)
130       debug "infer_left step...";
131       let bag, maxvar, new_goals = 
132         Sup.infer_left bag maxvar g_current actives 
133       in
134         debug "Performed infer_left step";
135         bag, maxvar, actives, passives, g_current::g_actives,
136     (add_passive_goals g_passives new_goals)
137   ;;
138
139   let forward_infer_step bag maxvar actives passives g_actives
140                          g_passives current =
141     (* forward step *)
142     
143     (* e = select P           *
144      * e' = demod A e         *
145      * A' = demod [e'] A      *
146      * A'' = A' + e'          *
147      * e'' = fresh e'         *
148      * new = supright e'' A'' *
149      * new'= demod A'' new    *
150      * P' = P + new'          *)
151     debug "Forward infer step...";
152     let bag, maxvar, actives, new_clauses = 
153       Sup.infer_right bag maxvar current actives 
154     in
155       debug "Demodulating goals with actives...";
156       (* keep goals demodulated w.r.t. actives and check if solved *)
157       let bag, g_actives = 
158         List.fold_left 
159           (fun (bag,acc) c -> 
160              match 
161                Sup.simplify_goal ~no_demod:false maxvar (snd actives) bag acc c
162              with
163                | None -> bag, acc
164                | Some (bag,c) -> bag,c::acc)
165           (bag,[]) g_actives 
166       in
167       let ctable = IDX.index_unit_clause IDX.DT.empty current in
168       let bag, maxvar, new_goals = 
169         List.fold_left 
170           (fun (bag,m,acc) g -> 
171              let bag, m, ng = Sup.infer_left bag m g ([current],ctable) in
172                bag,m,ng@acc) 
173           (bag,maxvar,[]) g_actives 
174       in
175     bag, maxvar, actives,
176     add_passive_clauses passives new_clauses, g_actives,
177     add_passive_goals g_passives new_goals
178   ;;
179  
180   let rec given_clause ~noinfer 
181     bag maxvar iterno max_steps timeout 
182     actives passives g_actives g_passives 
183   =
184     let iterno = iterno + 1 in
185     if iterno = max_steps then       
186       raise (Failure ("No iterations left !",bag,maxvar,iterno));
187     (* timeout check: gettimeofday called only if timeout set *)
188     if timeout <> None &&
189       (match timeout with
190       | None -> assert false
191       | Some timeout -> Unix.gettimeofday () > timeout) then
192         if noinfer then
193           begin
194             debug 
195               ("Last chance: all is indexed " ^ string_of_float
196                 (Unix.gettimeofday()));
197             let maxgoals = 100 in
198             ignore(List.fold_left 
199               (fun (acc,i) x -> 
200                  if i < maxgoals then
201                  ignore(Sup.simplify_goal ~no_demod:true 
202                           maxvar (snd actives) bag acc x)
203                  else
204                    ();
205                  x::acc,i+1)
206               ([],0) g_actives);
207             raise (Failure (("Last chance: failed over " ^ 
208               string_of_int maxgoals^ " goal " ^ 
209               string_of_float (Unix.gettimeofday())),bag,maxvar,0));
210           end
211         else if false then (* activates last chance strategy *)
212           begin
213            debug("Last chance: "^string_of_float (Unix.gettimeofday()));
214            given_clause ~noinfer:true bag maxvar iterno max_steps 
215              (Some (Unix.gettimeofday () +. 20.))
216              actives passives g_actives g_passives;
217            raise (Failure ("Timeout !",bag,maxvar,iterno))
218           end
219         else raise (Failure ("Timeout !",bag,maxvar,iterno));
220
221     (* let use_age = iterno mod 10 = 0 in *)
222
223     let rec aux_select bag passives g_passives =
224       let backward,(weight,current),passives,g_passives =
225         select ~use_age:false passives g_passives
226       in
227         if backward then
228          match 
229            if noinfer then 
230              if weight > monster then None else Some (bag,current)
231            else 
232              Sup.simplify_goal 
233                ~no_demod:false maxvar (snd actives) bag g_actives current 
234          with
235             | None -> aux_select bag passives g_passives
236             | Some (bag,g_current) ->
237                if noinfer then 
238                  let g_actives = g_current :: g_actives in 
239                  bag,maxvar,actives,passives,g_actives,g_passives
240                else
241                  backward_infer_step bag maxvar actives passives
242                    g_actives g_passives g_current
243         else
244           let _ = debug ("Selected fact : " ^ Pp.pp_unit_clause current) in
245           (*let is_orphan = Sup.orphan_murder bag (fst actives) current in*)
246           match 
247             if noinfer then 
248               if weight > monster then bag,None 
249               else  bag, Some (current,actives)
250             else if Sup.orphan_murder bag (fst actives) current then
251               let (id,_,_,_) = current in
252               let bag = Terms.M.add id (current,true) bag in
253                 bag, None
254             else Sup.keep_simplified current actives bag maxvar
255           with
256         (*match Sup.one_pass_simplification current actives bag maxvar with*)
257               | bag,None -> aux_select bag passives g_passives
258               | bag,Some (current,actives) ->
259 (*                    if is_orphan then prerr_endline
260                       ("WRONG discarded: " ^ (Pp.pp_unit_clause current));
261                   List.iter (fun x ->
262                                prerr_endline (Pp.pp_unit_clause x))
263                     (fst actives);*)
264
265 (*                  List.iter (fun (id,_,_,_) -> let (cl,d) =
266                              Terms.M.find id bag in 
267                              if d then prerr_endline
268                                ("WRONG discarded: " ^ (Pp.pp_unit_clause cl)))
269                     (current::fst actives);*)
270                   if noinfer then
271                     let actives = 
272                       current::fst actives,
273                       IDX.index_unit_clause (snd actives) current
274                     in
275                     bag,maxvar,actives,passives,g_actives,g_passives
276                   else
277                     forward_infer_step bag maxvar actives passives
278                       g_actives g_passives current
279     in
280     
281
282       (*prerr_endline "Active table :"; 
283        (List.iter (fun x -> prerr_endline (Pp.pp_unit_clause x))
284           (fst actives)); *)
285
286     let bag,maxvar,actives,passives,g_actives,g_passives =      
287       aux_select bag passives g_passives
288     in
289       debug
290         (Printf.sprintf "Number of active goals : %d"
291            (List.length g_actives));
292       debug
293         (Printf.sprintf "Number of passive goals : %d"
294            (passive_set_cardinal g_passives));
295       debug
296         (Printf.sprintf "Number of actives : %d" (List.length (fst actives)));
297       debug
298         (Printf.sprintf "Number of passives : %d"
299            (passive_set_cardinal passives));
300       given_clause ~noinfer
301         bag maxvar iterno max_steps timeout 
302         actives passives g_actives g_passives
303   ;;
304
305   let paramod ~max_steps ?timeout (bag,maxvar) ~g_passives ~passives =
306     let initial_timestamp = Unix.gettimeofday () in
307     let passives =
308       add_passive_clauses ~no_weight:true passive_empty_set passives
309     in
310     let g_passives =
311       add_passive_goals ~no_weight:true passive_empty_set g_passives
312     in
313     let g_actives = [] in
314     let actives = [], IDX.DT.empty in
315     try 
316      given_clause ~noinfer:false
317       bag maxvar 0 max_steps timeout actives passives g_actives g_passives
318     with 
319     | Sup.Success (bag, _, (i,_,_,_)) ->
320         let l =
321           let rec traverse ongoal (accg,acce) i =
322             match Terms.M.find i bag with
323               | (id,_,_,Terms.Exact _),_ ->
324                   if ongoal then [i],acce else
325                     if (List.mem i acce) then accg,acce else accg,acce@[i]
326               | (_,_,_,Terms.Step (_,i1,i2,_,_,_)),_ ->
327                   if (not ongoal) && (List.mem i acce) then accg,acce
328                   else
329                     let accg,acce = 
330                       traverse false (traverse ongoal (accg,acce) i1) i2
331                     in
332                       if ongoal then i::accg,acce else accg,i::acce
333           in
334           let gsteps,esteps = traverse true ([],[]) i in
335             (List.rev esteps)@gsteps
336         in
337 (*        List.iter (fun id -> let (cl,d) =
338                        Terms.M.find id bag in 
339                     if d then prerr_endline (Pp.pp_unit_clause cl)) l;*)
340         prerr_endline 
341           (Printf.sprintf "Found proof, %fs" 
342             (Unix.gettimeofday() -. initial_timestamp));
343         (* 
344         prerr_endline "Proof:"; 
345         List.iter (fun x ->
346           prerr_endline (Pp.pp_unit_clause (fst(Terms.M.find x bag)))) l;
347         *)
348         [ bag, i, l ]
349     | Failure (msg,_bag,_maxvar,iterno) -> 
350         prerr_endline msg;
351         prerr_endline (Printf.sprintf "FAILURE in %d iterations" iterno); 
352         []
353   ;;
354
355 end