]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/paramodulation/saturation.ml
added the geniric
[helm.git] / components / tactics / paramodulation / saturation.ml
1 (* Copyright (C) 2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 let _profiler = <:profiler<_profiler>>;;
27
28 (* $Id$ *)
29
30 open Inference;;
31 open Utils;;
32
33 (* set to false to disable paramodulation inside auto_tac *)
34 let connect_to_auto = true;;
35
36
37 (* profiling statistics... *)
38 let infer_time = ref 0.;;
39 let forward_simpl_time = ref 0.;;
40 let forward_simpl_new_time = ref 0.;;
41 let backward_simpl_time = ref 0.;;
42 let passive_maintainance_time = ref 0.;;
43
44 (* limited-resource-strategy related globals *)
45 let processed_clauses = ref 0;; (* number of equalities selected so far... *)
46 let time_limit = ref 0.;; (* in seconds, settable by the user... *)
47 let start_time = ref 0.;; (* time at which the execution started *)
48 let elapsed_time = ref 0.;;
49 (* let maximal_weight = ref None;; *)
50 let maximal_retained_equality = ref None;;
51
52 (* equality-selection related globals *)
53 let use_fullred = ref true;;
54 let weight_age_ratio = ref 6 (* 5 *);; (* settable by the user *)
55 let weight_age_counter = ref !weight_age_ratio ;;
56 let symbols_ratio = ref 0 (* 3 *);;
57 let symbols_counter = ref 0;;
58
59 (* non-recursive Knuth-Bendix term ordering by default *)
60 (* Utils.compare_terms := Utils.rpo;; *)
61 (* Utils.compare_terms := Utils.nonrec_kbo;; *)
62 (* Utils.compare_terms := Utils.ao;; *)
63
64 (* statistics... *)
65 let derived_clauses = ref 0;;
66 let kept_clauses = ref 0;;
67
68 (* index of the greatest Cic.Meta created - TODO: find a better way! *)
69 let maxmeta = ref 0;;
70
71 (* varbiables controlling the search-space *)
72 let maxdepth = ref 3;;
73 let maxwidth = ref 3;;
74
75 type new_proof = 
76   Equality.goal_proof * Equality.proof * int * Subst.substitution * Cic.metasenv
77 type result =
78   | ParamodulationFailure of string
79   | ParamodulationSuccess of new_proof
80 ;;
81
82 type goal = Equality.goal_proof * Cic.metasenv * Cic.term;;
83
84 type theorem = Cic.term * Cic.term * Cic.metasenv;;
85
86 let symbols_of_equality equality = 
87   let (_, _, (_, left, right, _), _,_) = Equality.open_equality equality in
88   let m1 = symbols_of_term left in
89   let m = 
90     TermMap.fold
91       (fun k v res ->
92          try
93            let c = TermMap.find k res in
94            TermMap.add k (c+v) res
95          with Not_found ->
96            TermMap.add k v res)
97       (symbols_of_term right) m1
98   in
99   m
100 ;;
101
102 (* griggio *)
103 module OrderedEquality = struct 
104   type t = Equality.equality
105
106   let compare eq1 eq2 =
107     match Equality.meta_convertibility_eq eq1 eq2 with
108     | true -> 0
109     | false -> 
110         let w1, _, (ty,left, right, _), m1,_ = Equality.open_equality eq1 in
111         let w2, _, (ty',left', right', _), m2,_ = Equality.open_equality eq2 in
112         match Pervasives.compare w1 w2 with
113         | 0 -> 
114             let res = (List.length m1) - (List.length m2) in 
115             if res <> 0 then res else 
116               Equality.compare eq1 eq2
117         | res -> res 
118 end 
119
120 module EqualitySet = Set.Make(OrderedEquality);;
121
122 exception Empty_list;;
123
124 let passive_is_empty = function
125   | ([], _), _ -> true
126   | _ -> false
127 ;;
128
129
130 let size_of_passive ((passive_list, ps), _) = List.length passive_list
131 (* EqualitySet.cardinal ps *)
132 ;;
133
134
135 let size_of_active (active_list, _) = List.length active_list
136 ;;
137
138 let age_factor = 0.01;;
139
140 (**
141    selects one equality from passive. The selection strategy is a combination
142    of weight, age and goal-similarity
143 *)
144
145 let rec select env (goals,_) passive =
146   processed_clauses := !processed_clauses + 1;
147   let goal =
148     match (List.rev goals) with goal::_ -> goal | _ -> assert false
149   in
150   let (pos_list, pos_set), passive_table = passive in
151   let remove eq l = List.filter (fun e -> Equality.compare e eq <> 0) l in
152   if !weight_age_ratio > 0 then
153     weight_age_counter := !weight_age_counter - 1;
154   match !weight_age_counter with
155   | 0 -> (
156       weight_age_counter := !weight_age_ratio;
157       let rec skip_giant pos_list pos_set passive_table =
158         match pos_list with
159           | (hd:EqualitySet.elt)::tl ->
160               let w,_,_,_,_ = Equality.open_equality hd in
161               let passive_table =
162                 Indexing.remove_index passive_table hd
163               in 
164               let pos_set = EqualitySet.remove hd pos_set in
165                 if w < 500 then
166                   hd, ((tl, pos_set), passive_table)
167                 else
168                   (prerr_endline ("\n\n\nGIANT SKIPPED: "^string_of_int w^"\n\n\n");
169                   skip_giant tl pos_set passive_table)
170           | _ -> assert false
171       in
172         skip_giant pos_list pos_set passive_table)
173   | _ when (!symbols_counter > 0) -> 
174      (symbols_counter := !symbols_counter - 1;
175       let cardinality map =
176         TermMap.fold (fun k v res -> res + v) map 0
177       in
178       let symbols =
179         let _, _, term = goal in
180         symbols_of_term term
181       in
182       let card = cardinality symbols in
183       let foldfun k v (r1, r2) = 
184         if TermMap.mem k symbols then
185           let c = TermMap.find k symbols in
186           let c1 = abs (c - v) in
187           let c2 = v - c1 in
188           r1 + c2, r2 + c1
189         else
190           r1, r2 + v
191       in
192       let f equality (i, e) =
193         let common, others =
194           TermMap.fold foldfun (symbols_of_equality equality) (0, 0)
195         in
196         let c = others + (abs (common - card)) in
197         if c < i then (c, equality)
198         else (i, e)
199       in
200       let e1 = EqualitySet.min_elt pos_set in
201       let initial =
202         let common, others = 
203           TermMap.fold foldfun (symbols_of_equality e1) (0, 0)
204         in
205         (others + (abs (common - card))), e1
206       in
207       let _, current = EqualitySet.fold f pos_set initial in
208       let passive_table =
209         Indexing.remove_index passive_table current
210       in
211         current,
212       ((remove current pos_list, EqualitySet.remove current pos_set),
213        passive_table))
214   | _ ->
215       symbols_counter := !symbols_ratio;
216       let my_min e1 e2 =
217         let w1,_,_,_,_ = Equality.open_equality e1 in
218         let w2,_,_,_,_ = Equality.open_equality e2 in
219         if w1 < w2 then e1 else e2
220       in
221       let rec my_min_elt min = function
222         | [] -> min
223         | hd::tl -> my_min_elt (my_min hd min) tl
224       in
225       (* let current = EqualitySet.min_elt pos_set in *)
226       let current = my_min_elt (List.hd pos_list) (List.tl pos_list) in
227       let passive_table =
228         Indexing.remove_index passive_table current
229       in
230         current, 
231       ((remove current pos_list, EqualitySet.remove current pos_set),
232       passive_table)
233 ;;
234
235 let filter_dependent passive id =
236   prerr_endline ("+++++++++++++++passives "^
237                    ( string_of_int (size_of_passive passive)));
238   let (pos_list, pos_set), passive_table = passive in
239   let passive =
240     List.fold_right
241       (fun eq ((list,set),table) ->
242          if Equality.depend eq id then
243            (let _,_,_,_,id_eq = Equality.open_equality eq in
244               if id_eq = 9228 then 
245                 prerr_endline ("\n\n--------filtering "^(string_of_int id_eq));
246            ((list, 
247              EqualitySet.remove eq set),
248             Indexing.remove_index table eq))
249          else 
250               ((eq::list, set),table))
251       pos_list (([],pos_set),passive_table) in
252   prerr_endline ("+++++++++++++++passives "^
253                    ( string_of_int (size_of_passive passive)));  
254   passive
255 ;;
256
257
258 (* initializes the passive set of equalities *)
259 let make_passive pos =
260   let set_of equalities =
261     List.fold_left (fun s e -> EqualitySet.add e s) EqualitySet.empty equalities
262   in
263   let table =
264       List.fold_left (fun tbl e -> Indexing.index tbl e) Indexing.empty pos
265   in
266   (pos, set_of pos),
267   table
268 ;;
269
270
271 let make_active () =
272   [], Indexing.empty
273 ;;
274
275
276 (* adds to passive a list of equalities new_pos *)
277 let add_to_passive passive new_pos =
278   let (pos_list, pos_set), table = passive in
279   let ok set equality = not (EqualitySet.mem equality set) in
280   let pos = List.filter (ok pos_set) new_pos in
281   let table = 
282      List.fold_left (fun tbl e -> Indexing.index tbl e) table pos 
283   in
284   let add set equalities =
285     List.fold_left (fun s e -> EqualitySet.add e s) set equalities
286   in
287   (pos_list @ pos, add pos_set pos),
288   table
289 ;;
290
291 (* TODO *)
292 (* removes from passive equalities that are estimated impossible to activate
293    within the current time limit *)
294 let prune_passive howmany (active, _) passive =
295   let (pl, ps), tbl = passive in
296   let howmany = float_of_int howmany
297   and ratio = float_of_int !weight_age_ratio in
298   let round v =
299     let t = ceil v in 
300     int_of_float (if t -. v < 0.5 then t else v)
301   in
302   let in_weight = round (howmany *. ratio /. (ratio +. 1.))
303   and in_age = round (howmany /. (ratio +. 1.)) in 
304   debug_print
305     (lazy (Printf.sprintf "in_weight: %d, in_age: %d\n" in_weight in_age));
306   let counter = ref !symbols_ratio in
307   let rec pickw w ps =
308     if w > 0 then
309       if !counter > 0 then
310         let _ =
311           counter := !counter - 1;
312           if !counter = 0 then counter := !symbols_ratio in
313         let e = EqualitySet.min_elt ps in
314         let ps' = pickw (w-1) (EqualitySet.remove e ps) in
315           EqualitySet.add e ps'
316       else
317         let e = EqualitySet.min_elt ps in
318         let ps' = pickw (w-1) (EqualitySet.remove e ps) in
319         EqualitySet.add e ps'        
320     else
321       EqualitySet.empty
322   in
323   let ps = pickw in_weight ps in
324   let rec picka w s l =
325     if w > 0 then
326       match l with
327       | [] -> w, s, []
328       | hd::tl when not (EqualitySet.mem hd s) ->
329           let w, s, l = picka (w-1) s tl in
330           w, EqualitySet.add hd s, hd::l
331       | hd::tl ->
332           let w, s, l = picka w s tl in
333           w, s, hd::l
334     else
335       0, s, l
336   in
337   let _, ps, pl = picka in_age ps pl in
338   if not (EqualitySet.is_empty ps) then
339     maximal_retained_equality := Some (EqualitySet.max_elt ps); 
340   let tbl =
341     EqualitySet.fold
342       (fun e tbl -> Indexing.index tbl e) ps Indexing.empty
343   in
344   (pl, ps), tbl  
345 ;;
346
347
348 (** inference of new equalities between current and some in active *)
349 let infer eq_uri env current (active_list, active_table) =
350   let (_,c,_) = env in 
351   if Utils.debug_metas then
352     (ignore(Indexing.check_target c current "infer1");
353      ignore(List.map (function current -> Indexing.check_target c current "infer2") active_list)); 
354   let new_pos = 
355       let maxm, copy_of_current = Equality.fix_metas !maxmeta current in
356         maxmeta := maxm;
357       let active_table =  Indexing.index active_table copy_of_current in
358       let _ = <:start<current contro active>> in
359       let maxm, res =
360         Indexing.superposition_right eq_uri !maxmeta env active_table current 
361       in
362       let _ = <:stop<current contro active>> in
363       if Utils.debug_metas then
364         ignore(List.map 
365                  (function current -> 
366                     Indexing.check_target c current "sup0") res);
367       maxmeta := maxm;
368       let rec infer_positive table = function
369         | [] -> []
370         | equality::tl ->
371             let maxm, res =
372               Indexing.superposition_right 
373                 ~subterms_only:true eq_uri !maxmeta env table equality 
374             in
375               maxmeta := maxm;
376               if Utils.debug_metas then
377                 ignore
378                   (List.map 
379                      (function current -> 
380                         Indexing.check_target c current "sup2") res);
381               let pos = infer_positive table tl in
382               res @ pos
383       in
384 (*
385       let maxm, copy_of_current = Equality.fix_metas !maxmeta current in
386         maxmeta := maxm;
387 *)
388       let curr_table = Indexing.index Indexing.empty current in
389       let _ = <:start<active contro current>> in
390       let pos = infer_positive curr_table ((*copy_of_current::*)active_list) in
391       let _ = <:stop<active contro current>> in
392       if Utils.debug_metas then 
393         ignore(List.map 
394                  (function current -> 
395                     Indexing.check_target c current "sup3") pos);
396       res @ pos
397   in
398   derived_clauses := !derived_clauses + (List.length new_pos);
399   match !maximal_retained_equality with
400     | None -> new_pos
401     | Some eq ->
402       ignore(assert false);
403       (* if we have a maximal_retained_equality, we can discard all equalities
404          "greater" than it, as they will never be reached...  An equality is
405          greater than maximal_retained_equality if it is bigger
406          wrt. OrderedEquality.compare and it is less similar than
407          maximal_retained_equality to the current goal *)
408         List.filter (fun e -> OrderedEquality.compare e eq <= 0) new_pos
409 ;;
410
411 let check_for_deep_subsumption env active_table eq =
412   let _,_,(eq_ty, left, right, order),metas,id = Equality.open_equality eq in
413   let check_subsumed deep l r = 
414     let eqtmp = 
415       Equality.mk_tmp_equality(0,(eq_ty,l,r,Utils.Incomparable),metas)in
416     match Indexing.subsumption env active_table eqtmp with
417     | None -> false
418     | Some _ -> true        
419   in 
420   let rec aux b (ok_so_far, subsumption_used) t1 t2  = 
421     match t1,t2 with
422       | t1, t2 when not ok_so_far -> ok_so_far, subsumption_used
423       | t1, t2 when subsumption_used -> t1 = t2, subsumption_used
424       | Cic.Appl (h1::l),Cic.Appl (h2::l') ->
425           let rc = check_subsumed b t1 t2 in 
426             if rc then 
427               true, true
428             else if h1 = h2 then
429               (try 
430                  List.fold_left2 
431                    (fun (ok_so_far, subsumption_used) t t' -> 
432                       aux true (ok_so_far, subsumption_used) t t')
433                    (ok_so_far, subsumption_used) l l'
434                with Invalid_argument _ -> false,subsumption_used)
435             else
436               false, subsumption_used
437     | _ -> false, subsumption_used 
438   in
439   fst (aux false (true,false) left right)
440 ;;
441
442 (* buttare via sign *)
443
444 (** simplifies current using active and passive *)
445 let forward_simplify 
446   eq_uri env (sign,current) ?passive (active_list, active_table) 
447 =
448   let _, context, _ = env in
449   let passive_table =
450     match passive with
451     | None -> None
452     | Some ((_, _), pt) -> Some pt
453   in
454   let demodulate table current = 
455     let newmeta, newcurrent =
456       Indexing.demodulation_equality eq_uri !maxmeta env table sign current in
457     maxmeta := newmeta;
458     if Equality.is_identity env newcurrent then
459       None
460     else
461       Some newcurrent
462   in
463   let rec demod current =
464     if Utils.debug_metas then
465       ignore (Indexing.check_target context current "demod0");
466     let res = demodulate active_table current in
467       if Utils.debug_metas then
468         ignore ((function None -> () | Some x -> 
469                    ignore (Indexing.check_target context x "demod1");()) res);
470     match res with
471     | None -> None
472     | Some newcurrent ->
473         match passive_table with
474         | None -> res
475         | Some passive_table -> 
476             match demodulate passive_table newcurrent with
477               | None -> None
478               | Some newnewcurrent -> 
479                   if Equality.compare newcurrent newnewcurrent <> 0 then 
480                     demod newnewcurrent
481                   else Some newnewcurrent
482   in 
483   let res = demod current in
484   match res with
485   | None -> None
486   | Some c ->
487       if Indexing.in_index active_table c then
488         None
489       else
490         match passive_table with
491         | None -> 
492             if check_for_deep_subsumption env active_table c then
493               None
494             else 
495               res
496 (*
497             if Indexing.subsumption env active_table c = None then
498               res
499             else
500               None
501 *)
502         | Some passive_table ->
503             if Indexing.in_index passive_table c then None
504             else 
505               if check_for_deep_subsumption env active_table c then
506                 None
507               else 
508 (*              if Indexing.subsumption env active_table c = None then*)
509                 (match Indexing.subsumption env passive_table c with
510                 | None -> res
511                 | Some (_,c',_) -> 
512                     None
513                     (*prerr_endline "\n\nPESCO DALLE PASSIVE LA PIU' GENERALE\n\n";
514                     Some c'*))
515 (*
516               else
517                 None
518 *)
519 ;;
520
521 (** simplifies new using active and passive *)
522 let forward_simplify_new eq_uri env new_pos ?passive active =
523   if Utils.debug_metas then
524     begin
525       let m,c,u = env in
526         ignore(List.map 
527         (fun current -> Indexing.check_target c current "forward new pos") 
528       new_pos;)
529     end;
530   let active_list, active_table = active in
531   let passive_table =
532     match passive with
533     | None -> None
534     | Some ((_, _), pt) -> Some pt
535   in
536   let demodulate sign table target =
537     let newmeta, newtarget =
538       Indexing.demodulation_equality eq_uri !maxmeta env table sign target 
539     in
540     maxmeta := newmeta;
541     newtarget
542   in
543   (* we could also demodulate using passive. Currently we don't *)
544   let new_pos =
545     List.map (demodulate Positive active_table) new_pos 
546   in
547   let new_pos_set =
548     List.fold_left
549       (fun s e ->
550          if not (Equality.is_identity env e) then
551            EqualitySet.add e s
552          else s)
553       EqualitySet.empty new_pos
554   in
555   let new_pos = EqualitySet.elements new_pos_set in
556
557   let subs =
558     match passive_table with
559     | None ->
560         (fun e -> (Indexing.subsumption env active_table e = None))
561     | Some passive_table ->
562         (fun e -> ((Indexing.subsumption env active_table e = None) &&
563                          (Indexing.subsumption env passive_table e = None)))
564   in
565   let is_duplicate =
566     match passive_table with
567     | None ->
568         (fun e -> not (Indexing.in_index active_table e))
569     | Some passive_table ->
570         (fun e ->
571            not ((Indexing.in_index active_table e) ||
572                   (Indexing.in_index passive_table e)))
573   in
574     List.filter subs (List.filter is_duplicate new_pos)
575 ;;
576
577
578 (** simplifies a goal with equalities in active and passive *)  
579 let rec simplify_goal env goal ?passive (active_list, active_table) =
580   let passive_table =
581     match passive with
582     | None -> None
583     | Some ((_, _), pt) -> Some pt
584   in
585   let demodulate table goal = Indexing.demodulation_goal env table goal in
586   let changed, goal =
587     match passive_table with
588     | None -> demodulate active_table goal
589     | Some passive_table ->
590         let changed, goal = demodulate active_table goal in
591 (*        let changed', goal = demodulate passive_table goal in*)
592         (changed (*|| changed'*)), goal
593   in
594   changed,
595   if not changed then 
596     goal 
597   else 
598     snd (simplify_goal env goal ?passive (active_list, active_table)) 
599 ;;
600
601
602 let simplify_goals env goals ?passive active =
603   let a_goals, p_goals = goals in
604   let p_goals = 
605     List.map
606       (fun g -> snd (simplify_goal env g ?passive active))
607       p_goals
608   in
609   let a_goals = 
610     List.map
611       (fun g -> snd (simplify_goal env g ?passive active))
612       a_goals
613   in
614   a_goals, p_goals
615 ;;
616
617
618 (** simplifies active usign new *)
619 let backward_simplify_active eq_uri env new_pos new_table min_weight active =
620   let active_list, active_table = active in
621   let active_list, newa, pruned = 
622     List.fold_right
623       (fun equality (res, newn,pruned) ->
624          let ew, _, _, _,id = Equality.open_equality equality in
625          if ew < min_weight then
626            equality::res, newn,pruned
627          else
628            match 
629              forward_simplify 
630                eq_uri env (Utils.Positive, equality) (new_pos, new_table) 
631            with
632            | None -> res, newn, id::pruned
633            | Some e ->
634                if Equality.compare equality e = 0 then
635                  e::res, newn, pruned
636                else 
637                  res, e::newn, pruned)
638       active_list ([], [],[])
639   in
640   let find eq1 where =
641     List.exists (Equality.meta_convertibility_eq eq1) where
642   in
643   let id_of_eq eq = 
644     let _, _, _, _,id = Equality.open_equality eq in id
645   in
646   let ((active1,pruned),tbl), newa =
647     List.fold_right
648       (fun eq ((res,pruned), tbl) ->
649          if List.mem eq res then
650            (res, (id_of_eq eq)::pruned),tbl 
651          else if (Equality.is_identity env eq) || (find eq res) then (
652            (res, (id_of_eq eq)::pruned),tbl
653          ) 
654          else
655            (eq::res,pruned), Indexing.index tbl eq)
656       active_list (([],pruned), Indexing.empty),
657     List.fold_right
658       (fun eq p ->
659          if (Equality.is_identity env eq) then p
660          else eq::p)
661       newa []
662   in
663   match newa with
664   | [] -> (active1,tbl), None, pruned 
665   | _ -> (active1,tbl), Some newa, pruned
666 ;;
667
668
669 (** simplifies passive using new *)
670 let backward_simplify_passive eq_uri env new_pos new_table min_weight passive =
671   let (pl, ps), passive_table = passive in
672   let f sign equality (resl, ress, newn) =
673     let ew, _, _, _ , _ = Equality.open_equality equality in
674     if ew < min_weight then
675       equality::resl, ress, newn
676     else
677       match 
678         forward_simplify eq_uri env (sign, equality) (new_pos, new_table) 
679       with
680       | None -> resl, EqualitySet.remove equality ress, newn
681       | Some e ->
682           if equality = e then
683             equality::resl, ress, newn
684           else
685             let ress = EqualitySet.remove equality ress in
686               resl, ress, e::newn
687   in
688   let pl, ps, newp = List.fold_right (f Positive) pl ([], ps, []) in
689   let passive_table =
690     List.fold_left
691       (fun tbl e -> Indexing.index tbl e) Indexing.empty pl
692   in
693   match newp with
694   | [] -> ((pl, ps), passive_table), None
695   |  _ -> ((pl, ps), passive_table), Some (newp)
696 ;;
697
698 let build_table equations =
699     List.fold_left
700       (fun (l, t, w) e ->
701          let ew, _, _, _ , _ = Equality.open_equality e in
702          e::l, Indexing.index t e, min ew w)
703       ([], Indexing.empty, 1000000) equations
704 ;;
705   
706
707 let backward_simplify eq_uri env new' ?passive active =
708   let new_pos, new_table, min_weight = build_table new' in
709 (*
710     List.fold_left
711       (fun (l, t, w) e ->
712          let ew, _, _, _ , _ = Equality.open_equality e in
713          e::l, Indexing.index t e, min ew w)
714       ([], Indexing.empty, 1000000) new'
715   in
716 *)
717   let active, newa, pruned =
718     backward_simplify_active eq_uri env new_pos new_table min_weight active 
719   in
720   match passive with
721   | None ->
722       active, (make_passive []), newa, None, pruned
723   | Some passive ->
724      active, passive, newa, None, pruned
725 (* prova
726       let passive, newp =
727         backward_simplify_passive env new_pos new_table min_weight passive in
728       active, passive, newa, newp *)
729 ;;
730
731 let close eq_uri env new' given =
732   let new_pos, new_table, min_weight =
733     List.fold_left
734       (fun (l, t, w) e ->
735          let ew, _, _, _ , _ = Equality.open_equality e in
736          e::l, Indexing.index t e, min ew w)
737       ([], Indexing.empty, 1000000) (snd new')
738   in
739   List.fold_left
740     (fun p c ->
741        let pos = infer eq_uri env c (new_pos,new_table) in
742          pos@p)
743     [] given 
744 ;;
745
746 let is_commutative_law eq =
747   let w, proof, (eq_ty, left, right, order), metas , _ = 
748     Equality.open_equality eq 
749   in
750     match left,right with
751         Cic.Appl[f1;Cic.Meta _ as a1;Cic.Meta _ as b1], 
752         Cic.Appl[f2;Cic.Meta _ as a2;Cic.Meta _ as b2] ->
753           f1 = f2 && a1 = b2 && a2 = b1
754       | _ -> false
755 ;;
756
757 let prova eq_uri env new' active = 
758   let given = List.filter is_commutative_law (fst active) in
759   let _ =
760     debug_print
761       (lazy
762          (Printf.sprintf "symmetric:\n%s\n"
763             (String.concat "\n"
764                (List.map
765                   (fun e -> Equality.string_of_equality ~env e)
766                    given)))) in
767     close eq_uri env new' given
768 ;;
769
770 (* returns an estimation of how many equalities in passive can be activated
771    within the current time limit *)
772 let get_selection_estimate () =
773   elapsed_time := (Unix.gettimeofday ()) -. !start_time;
774   (*   !processed_clauses * (int_of_float (!time_limit /. !elapsed_time)) *)
775   int_of_float (
776     ceil ((float_of_int !processed_clauses) *.
777             ((!time_limit (* *. 2. *)) /. !elapsed_time -. 1.)))
778 ;;
779
780
781 (** initializes the set of goals *)
782 let make_goals goal =
783   let active = []
784   and passive = [0, [goal]] in
785   active, passive
786 ;;
787
788 let make_goal_set goal = 
789   ([],[goal]) 
790 ;;
791
792 (** initializes the set of theorems *)
793 let make_theorems theorems =
794   theorems, []
795 ;;
796
797
798 let activate_goal (active, passive) =
799   if active = [] then
800     match passive with
801     | goal_conj::tl -> true, (goal_conj::active, tl)
802     | [] -> false, (active, passive)
803   else  
804     true, (active,passive)
805 ;;
806
807
808 let activate_theorem (active, passive) =
809   match passive with
810   | theorem::tl -> true, (theorem::active, tl)
811   | [] -> false, (active, passive)
812 ;;
813
814
815
816 let simplify_theorems env theorems ?passive (active_list, active_table) =
817   let pl, passive_table =
818     match passive with
819     | None -> [], None
820     | Some ((pn, _), (pp, _), pt) ->
821         let pn = List.map (fun e -> (Negative, e)) pn
822         and pp = List.map (fun e -> (Positive, e)) pp in
823         pn @ pp, Some pt
824   in
825   let a_theorems, p_theorems = theorems in
826   let demodulate table theorem =
827     let newmeta, newthm =
828       Indexing.demodulation_theorem !maxmeta env table theorem in
829     maxmeta := newmeta;
830     theorem != newthm, newthm
831   in
832   let foldfun table (a, p) theorem =
833     let changed, theorem = demodulate table theorem in
834     if changed then (a, theorem::p) else (theorem::a, p)
835   in
836   let mapfun table theorem = snd (demodulate table theorem) in
837   match passive_table with
838   | None ->
839       let p_theorems = List.map (mapfun active_table) p_theorems in
840       List.fold_left (foldfun active_table) ([], p_theorems) a_theorems
841   | Some passive_table ->
842       let p_theorems = List.map (mapfun active_table) p_theorems in
843       let p_theorems, a_theorems =
844         List.fold_left (foldfun active_table) ([], p_theorems) a_theorems in
845       let p_theorems = List.map (mapfun passive_table) p_theorems in
846       List.fold_left (foldfun passive_table) ([], p_theorems) a_theorems
847 ;;
848
849
850 let rec simpl eq_uri env e others others_simpl =
851   let active = others @ others_simpl in
852   let tbl =
853     List.fold_left
854       (fun t e -> Indexing.index t e)
855       Indexing.empty active
856   in
857   let res = forward_simplify eq_uri env (Positive,e) (active, tbl) in
858     match others with
859       | hd::tl -> (
860           match res with
861             | None -> simpl eq_uri env hd tl others_simpl
862             | Some e -> simpl eq_uri env hd tl (e::others_simpl)
863         )
864       | [] -> (
865           match res with
866             | None -> others_simpl
867             | Some e -> e::others_simpl
868         )
869 ;;
870
871 let simplify_equalities eq_uri env equalities =
872   debug_print
873     (lazy 
874        (Printf.sprintf "equalities:\n%s\n"
875           (String.concat "\n"
876              (List.map Equality.string_of_equality equalities))));
877   debug_print (lazy "SIMPLYFYING EQUALITIES...");
878   match equalities with
879     | [] -> []
880     | hd::tl ->
881         let res =
882           List.rev (simpl eq_uri env hd tl [])
883         in
884           debug_print
885             (lazy
886                (Printf.sprintf "equalities AFTER:\n%s\n"
887                   (String.concat "\n"
888                      (List.map Equality.string_of_equality res))));
889           res
890 ;;
891
892 let print_goals goals = 
893   (String.concat "\n"
894      (List.map
895         (fun (d, gl) ->
896            let gl' =
897              List.map
898                (fun (p, _, t) ->
899                   (* (string_of_proof p) ^ ", " ^ *) (CicPp.ppterm t)) gl
900            in
901            Printf.sprintf "%d: %s" d (String.concat "; " gl')) goals))
902 ;;
903               
904 let check_if_goal_is_subsumed ((_,ctx,_) as env) table (goalproof,menv,ty) =
905 (*
906   let names = names_of_context ctx in
907   Printf.eprintf "check_goal_subsumed: %s\n" (CicPp.pp ty names);
908 *)
909   match ty with
910   | Cic.Appl[Cic.MutInd(uri,_,_);eq_ty;left;right] 
911     when LibraryObjects.is_eq_URI uri ->
912       (let goal_equation = 
913          Equality.mk_equality
914            (0,Equality.Exact (Cic.Implicit None),(eq_ty,left,right,Eq),menv) 
915       in
916 (*      match Indexing.subsumption env table goal_equation with*)
917        match Indexing.unification env table goal_equation with 
918         | Some (subst, equality, swapped ) ->
919             prerr_endline 
920               ("GOAL SUBSUMED BY: " ^ Equality.string_of_equality equality);
921             prerr_endline ("SUBST:" ^ Subst.ppsubst subst);
922             let (_,p,(ty,l,r,_),m,id) = Equality.open_equality equality in
923             let cicmenv = Subst.apply_subst_metasenv subst (m @ menv) in
924             let p =
925               if swapped then
926                 Equality.symmetric eq_ty l id uri m
927               else
928                 p
929             in
930             Some (goalproof, p, id, subst, cicmenv)
931         | None -> None)
932   | _ -> None
933 ;;
934
935 let check_if_goal_is_identity env = function
936   | (goalproof,m,Cic.Appl[Cic.MutInd(uri,_,ens);eq_ty;left;right]) 
937     when left = right && LibraryObjects.is_eq_URI uri ->
938       let reflproof = Equality.Exact (Equality.refl_proof uri eq_ty left) in
939       Some (goalproof, reflproof, 0, Subst.empty_subst,m)
940   | (goalproof,m,Cic.Appl[Cic.MutInd(uri,_,ens);eq_ty;left;right]) 
941     when LibraryObjects.is_eq_URI uri ->
942     (let _,context,_ = env in
943     try 
944      let s,m,_ = 
945        Inference.unification m m context left right CicUniv.empty_ugraph 
946      in
947       let reflproof = Equality.Exact (Equality.refl_proof uri eq_ty left) in
948       let m = Subst.apply_subst_metasenv s m in
949       Some (goalproof, reflproof, 0, s,m)
950     with _ -> None)
951   | _ -> None
952 ;;                              
953     
954 let rec check goal = function
955   | [] -> None
956   | f::tl ->
957       match f goal with
958       | None -> check goal tl
959       | (Some p) as ok  -> ok
960 ;;
961   
962 let simplify_goal_set env goals passive active = 
963   let active_goals, passive_goals = goals in 
964   let find (_,_,g) where =
965     List.exists (fun (_,_,g1) -> Equality.meta_convertibility g g1) where
966   in
967   let simplified =
968     List.fold_left
969       (fun acc goal -> 
970         match simplify_goal env goal ~passive active with 
971         | changed, g -> 
972             if changed then prerr_endline "???????????????cambiato ancora";
973             if find g acc then acc else g::acc)
974       (* active_goals active_goals *)
975       [] active_goals
976   in
977   if List.length active_goals <>  List.length simplified then
978     prerr_endline "SEMPLIFICANDO HO SCARTATO...";
979   (simplified,passive_goals)
980         (*
981   HExtlib.list_uniq ~eq:(fun (_,_,t1) (_,_,t2) -> t1 = t2)
982     (List.sort (fun (_,_,t1) (_,_,t2) -> compare t1 t1)
983       ((*goals @*) simplified))
984       *)
985 ;;
986
987 let check_if_goals_set_is_solved env active goals =
988   let active_goals, passive_goals = goals in
989   List.fold_left 
990     (fun proof goal ->
991       match proof with
992       | Some p -> proof
993       | None -> 
994           check goal [
995             check_if_goal_is_identity env;
996             check_if_goal_is_subsumed env (snd active)])
997     None active_goals
998 ;;
999
1000 let infer_goal_set env active goals = 
1001   let active_goals, passive_goals = goals in
1002   let rec aux = function
1003     | [] -> goals
1004     | hd::tl ->
1005         let changed,selected = simplify_goal env hd active in
1006         if changed then
1007           prerr_endline ("--------------- goal semplificato");
1008         let (_,_,t1) = selected in
1009         if (List.exists 
1010              (fun (_,_,t) -> 
1011                  Equality.meta_convertibility t t1) 
1012               active_goals) then aux tl
1013         else
1014         let passive_goals = tl in
1015         let new_passive_goals =
1016           if Utils.metas_of_term t1 = [] then passive_goals
1017           else 
1018             let new' = 
1019                Indexing.superposition_left env (snd active) selected in
1020             passive_goals @ new'
1021         in
1022         selected::active_goals, new_passive_goals
1023   in 
1024   aux passive_goals
1025 ;;
1026
1027 (* old
1028 let infer_goal_set env active goals = 
1029   let active_goals, passive_goals = goals in
1030   let rec aux = function
1031     | [] -> goals
1032     | ((_,_,t1) as hd)::tl when 
1033         not (List.exists 
1034               (fun (_,_,t) -> 
1035                   Equality.meta_convertibility t t1) 
1036               active_goals)
1037        -> 
1038         let selected = hd in
1039         let passive_goals = tl in
1040         let new_passive_goals =
1041           if CicUtil.is_meta_closed t1 then 
1042             passive_goals
1043           else 
1044             let new' = Indexing.superposition_left env (snd active) selected in
1045             passive_goals @ new'
1046         in
1047         selected::active_goals, new_passive_goals
1048     | _::tl -> aux tl
1049   in 
1050   aux passive_goals
1051 ;;
1052 *)
1053
1054 let infer_goal_set_with_current env current goals = 
1055   let active_goals, passive_goals = goals in
1056   let _,table,_ = build_table [current] in
1057   active_goals,
1058   List.fold_left 
1059     (fun acc g ->
1060       let new' = Indexing.superposition_left env table g in
1061       acc @ new')
1062     passive_goals active_goals
1063 ;;
1064
1065 let ids_of_goal g = 
1066   let p,_,_ = g in
1067   let ids = List.map (fun _,_,i,_,_ -> i) p in
1068   ids
1069 ;;
1070
1071 let ids_of_goal_set (ga,gp) =
1072   List.flatten (List.map ids_of_goal ga) @
1073   List.flatten (List.map ids_of_goal gp)
1074 ;;
1075
1076 let size_of_goal_set_a (l,_) = List.length l;;
1077 let size_of_goal_set_p (_,l) = List.length l;;
1078
1079 (** given-clause algorithm with full reduction strategy: NEW implementation *)
1080 (* here goals is a set of goals in OR *)
1081 let given_clause 
1082   eq_uri ((_,context,_) as env) goals theorems passive active max_iterations max_time
1083
1084   let names = names_of_context context in
1085   let initial_time = Unix.gettimeofday () in
1086   let iterations_left iterno = 
1087     let now = Unix.gettimeofday () in
1088     let time_left = max_time -. now in
1089     let time_spent_until_now = now -. initial_time in
1090     let iteration_medium_cost = 
1091       time_spent_until_now /. (float_of_int iterno)
1092     in
1093     let iterations_left = time_left /. iteration_medium_cost in
1094     int_of_float iterations_left 
1095   in
1096   let rec step goals theorems passive active iterno =
1097     if iterno > max_iterations then
1098       (ParamodulationFailure "No more iterations to spend")
1099     else if Unix.gettimeofday () > max_time then
1100       (ParamodulationFailure "No more time to spend")
1101     else
1102 (*
1103       let _ = prerr_endline "simpl goal with active" in
1104       let _ = <:start<simplify goal set active>> in
1105       let goals = simplify_goal_set env goals passive active in 
1106       let _ = <:stop<simplify goal set active>> in
1107 *)
1108       let _ = 
1109         prerr_endline 
1110          (Printf.sprintf "%d #ACTIVES: %d #PASSIVES: %d #GOALSET: %d(%d)\n"
1111            iterno (size_of_active active) (size_of_passive passive)
1112            (size_of_goal_set_a goals) (size_of_goal_set_p goals)) 
1113       in
1114       (* PRUNING OF PASSIVE THAT WILL NEVER BE PROCESSED *) 
1115       let passive =
1116         let selection_estimate = iterations_left iterno in
1117         let kept = size_of_passive passive in
1118         if kept > selection_estimate then 
1119           begin
1120             (*Printf.eprintf "Too many passive equalities: pruning...";
1121             prune_passive selection_estimate active*) passive
1122           end
1123         else
1124           passive
1125       in
1126       kept_clauses := (size_of_passive passive) + (size_of_active active);
1127       let goals = infer_goal_set env active goals in
1128       match check_if_goals_set_is_solved env active goals with
1129       | Some p -> 
1130           prerr_endline 
1131             (Printf.sprintf "Found a proof in: %f\n" 
1132               (Unix.gettimeofday() -. initial_time));
1133           ParamodulationSuccess p
1134       | None -> 
1135           (* SELECTION *)
1136           if passive_is_empty passive then
1137             ParamodulationFailure "No more passive"(*maybe this is a success! *)
1138           else
1139             begin
1140               (* COLLECTION OF GARBAGED EQUALITIES *)
1141               if iterno mod 40 = 0 then
1142                 begin
1143                   let active = List.map Equality.id_of (fst active) in
1144                   let passive = List.map Equality.id_of (fst (fst passive)) in
1145                   let goal = ids_of_goal_set goals in
1146                   Equality.collect active passive goal
1147                 end;
1148               let current, passive = select env goals passive in
1149               let _ = 
1150                 List.iter                 
1151                  (fun _,_,g -> 
1152                    prerr_endline (Printf.sprintf  "Current goal = %s\n"
1153                     (CicPp.pp g names))) 
1154                  (fst goals);
1155                 prerr_endline (Printf.sprintf  "Selected = %s\n"
1156                   (Equality.string_of_equality ~env current))
1157               in
1158               (* SIMPLIFICATION OF CURRENT *)
1159               let res = 
1160                 forward_simplify eq_uri env (Positive, current) active 
1161               in
1162               match res with
1163               | None -> step goals theorems passive active (iterno+1)
1164               | Some current ->
1165                   (* GENERATION OF NEW EQUATIONS *)
1166                   prerr_endline "infer";
1167                   let new' = infer eq_uri env current active in
1168                   prerr_endline "infer goal";
1169                   let goals = infer_goal_set_with_current env current goals in
1170                   let active = 
1171                       let al, tbl = active in
1172                       al @ [current], Indexing.index tbl current
1173                   in
1174                   (* FORWARD AND BACKWARD SIMPLIFICATION *)
1175                   prerr_endline "fwd/back simpl";
1176                   let rec simplify new' active passive =
1177                     let new' = 
1178                       forward_simplify_new eq_uri env new' ~passive active 
1179                     in
1180                     let active, passive, newa, retained, pruned =
1181                       backward_simplify eq_uri env new' ~passive  active 
1182                     in
1183                     let passive = 
1184                       List.fold_left filter_dependent passive pruned 
1185                     in
1186                     match newa, retained with
1187                     | None, None -> active, passive, new'
1188                     | Some p, None 
1189                     | None, Some p -> simplify (new' @ p) active passive
1190                     | Some p, Some rp -> simplify (new' @ p @ rp) active passive
1191                   in
1192                   let active, passive, new' = simplify new' active passive in
1193                   prerr_endline "simpl goal with new";
1194                   let goals = 
1195                     let a,b,_ = build_table new' in
1196                     let _ = <:start<simplify_goal_set new>> in
1197                     let rc = simplify_goal_set env goals passive (a,b) in
1198                     let _ = <:stop<simplify_goal_set new>> in
1199                     rc
1200                   in
1201                   let passive = add_to_passive passive new' in
1202                   step goals theorems passive active (iterno+1)
1203             end
1204   in
1205     step goals theorems passive active 1
1206 ;;
1207
1208 let rec saturate_equations eq_uri env goal accept_fun passive active =
1209   elapsed_time := Unix.gettimeofday () -. !start_time;
1210   if !elapsed_time > !time_limit then
1211     (active, passive)
1212   else
1213     let current, passive = select env ([goal],[]) passive in
1214     let res = forward_simplify eq_uri env (Positive, current) ~passive active in
1215     match res with
1216     | None ->
1217         saturate_equations eq_uri env goal accept_fun passive active
1218     | Some current ->
1219         debug_print (lazy (Printf.sprintf "selected: %s"
1220                              (Equality.string_of_equality ~env current)));
1221         let new' = infer eq_uri env current active in
1222         let active =
1223           if Equality.is_identity env current then active
1224           else
1225             let al, tbl = active in
1226             al @ [current], Indexing.index tbl current
1227         in
1228         let rec simplify new' active passive =
1229           let new' = forward_simplify_new eq_uri env new' ~passive active in
1230           let active, passive, newa, retained, pruned =
1231             backward_simplify eq_uri env new' ~passive active in
1232           let passive = 
1233             List.fold_left filter_dependent passive pruned in
1234           match newa, retained with
1235           | None, None -> active, passive, new'
1236           | Some p, None
1237           | None, Some p -> simplify (new' @ p) active passive
1238           | Some p, Some rp -> simplify (new' @ p @ rp) active passive
1239         in
1240         let active, passive, new' = simplify new' active passive in
1241         let _ =
1242           debug_print
1243             (lazy
1244                (Printf.sprintf "active:\n%s\n"
1245                   (String.concat "\n"
1246                      (List.map
1247                          (fun e -> Equality.string_of_equality ~env e)
1248                          (fst active)))))
1249         in
1250         let _ =
1251           debug_print
1252             (lazy
1253                (Printf.sprintf "new':\n%s\n"
1254                   (String.concat "\n"
1255                      (List.map
1256                          (fun e -> "Negative " ^
1257                             (Equality.string_of_equality ~env e)) new'))))
1258         in
1259         let new' = List.filter accept_fun new' in
1260         let passive = add_to_passive passive new' in
1261         saturate_equations eq_uri env goal accept_fun passive active
1262 ;;
1263   
1264 let main dbd full term metasenv ugraph = ()
1265 (*
1266 let main dbd full term metasenv ugraph =
1267   let module C = Cic in
1268   let module T = CicTypeChecker in
1269   let module PET = ProofEngineTypes in
1270   let module PP = CicPp in
1271   let proof = None, (1, [], term)::metasenv, C.Meta (1, []), term in
1272   let status = PET.apply_tactic (PrimitiveTactics.intros_tac ()) (proof, 1) in
1273   let proof, goals = status in
1274   let goal' = List.nth goals 0 in
1275   let _, metasenv, meta_proof, _ = proof in
1276   let _, context, goal = CicUtil.lookup_meta goal' metasenv in
1277   let eq_indexes, equalities, maxm = find_equalities context proof in
1278   let lib_eq_uris, library_equalities, maxm =
1279
1280     find_library_equalities dbd context (proof, goal') (maxm+2)
1281   in
1282   let library_equalities = List.map snd library_equalities in
1283   maxmeta := maxm+2; (* TODO ugly!! *)
1284   let irl = CicMkImplicit.identity_relocation_list_for_metavariable context in
1285   let new_meta_goal, metasenv, type_of_goal =
1286     let _, context, ty = CicUtil.lookup_meta goal' metasenv in
1287     debug_print
1288       (lazy
1289          (Printf.sprintf "\n\nTIPO DEL GOAL: %s\n\n" (CicPp.ppterm ty)));
1290     Cic.Meta (maxm+1, irl),
1291     (maxm+1, context, ty)::metasenv,
1292     ty
1293   in
1294   let env = (metasenv, context, ugraph) in
1295   let t1 = Unix.gettimeofday () in
1296   let theorems =
1297     if full then
1298       let theorems = find_library_theorems dbd env (proof, goal') lib_eq_uris in
1299       let context_hyp = find_context_hypotheses env eq_indexes in
1300       context_hyp @ theorems, []
1301     else
1302       let refl_equal =
1303         let us = UriManager.string_of_uri (LibraryObjects.eq_URI ()) in
1304         UriManager.uri_of_string (us ^ "#xpointer(1/1/1)")
1305       in
1306       let t = CicUtil.term_of_uri refl_equal in
1307       let ty, _ = CicTypeChecker.type_of_aux' [] [] t CicUniv.empty_ugraph in
1308       [(t, ty, [])], []
1309   in
1310   let t2 = Unix.gettimeofday () in
1311   debug_print
1312     (lazy
1313        (Printf.sprintf "Time to retrieve theorems: %.9f\n" (t2 -. t1)));
1314   let _ =
1315     debug_print
1316       (lazy
1317          (Printf.sprintf
1318             "Theorems:\n-------------------------------------\n%s\n"
1319             (String.concat "\n"
1320                (List.map
1321                   (fun (t, ty, _) ->
1322                      Printf.sprintf
1323                        "Term: %s, type: %s" (CicPp.ppterm t) (CicPp.ppterm ty))
1324                   (fst theorems)))))
1325   in
1326   (*try*)
1327     let goal = 
1328       ([],Equality.BasicProof (Equality.empty_subst ,new_meta_goal)), [], goal 
1329     in
1330     let equalities = simplify_equalities env 
1331       (equalities@library_equalities) in 
1332     let active = make_active () in
1333     let passive = make_passive equalities in
1334     Printf.printf "\ncurrent goal: %s\n"
1335       (let _, _, g = goal in CicPp.ppterm g);
1336     Printf.printf "\ncontext:\n%s\n" (PP.ppcontext context);
1337     Printf.printf "\nmetasenv:\n%s\n" (print_metasenv metasenv);
1338     Printf.printf "\nequalities:\n%s\n"
1339       (String.concat "\n"
1340          (List.map
1341             (Equality.string_of_equality ~env) equalities));
1342 (*             (equalities @ library_equalities))); *)
1343       print_endline "--------------------------------------------------";
1344       let start = Unix.gettimeofday () in
1345       print_endline "GO!";
1346       start_time := Unix.gettimeofday ();
1347       let res =
1348         let goals = make_goals goal in
1349         (if !use_fullred then given_clause_fullred else given_clause_fullred)
1350           dbd env goals theorems passive active
1351       in
1352       let finish = Unix.gettimeofday () in
1353       let _ =
1354         match res with
1355         | ParamodulationFailure ->
1356             Printf.printf "NO proof found! :-(\n\n"
1357         | ParamodulationSuccess (Some ((cicproof,cicmenv),(proof, env))) ->
1358             Printf.printf "OK, found a proof!\n";
1359             let oldproof = Equation.build_proof_term proof in
1360             let newproof,_,newenv,_ = 
1361                 CicRefine.type_of_aux' 
1362                   cicmenv context cicproof CicUniv.empty_ugraph
1363             in
1364             (* REMEMBER: we have to instantiate meta_proof, we should use
1365                apply  the "apply" tactic to proof and status 
1366             *)
1367             let names = names_of_context context in
1368             prerr_endline "OLD PROOF";
1369             print_endline (PP.pp proof names);
1370             prerr_endline "NEW PROOF";
1371             print_endline (PP.pp newproof names);
1372             let newmetasenv =
1373               List.fold_left
1374                 (fun m eq -> 
1375                   let (_, _, _, menv,_) = Equality.open_equality eq in 
1376                   m @ menv) 
1377               metasenv equalities
1378             in
1379             let _ =
1380               (*try*)
1381                 let ty, ug =
1382                   CicTypeChecker.type_of_aux' newmetasenv context proof ugraph
1383                 in
1384                 print_endline (string_of_float (finish -. start));
1385                 Printf.printf
1386                   "\nGOAL was: %s\nPROOF has type: %s\nconvertible?: %s\n\n"
1387                   (CicPp.pp type_of_goal names) (CicPp.pp ty names)
1388                   (string_of_bool
1389                      (fst (CicReduction.are_convertible
1390                              context type_of_goal ty ug)));
1391               (*with e ->
1392                 Printf.printf "\nEXCEPTION!!! %s\n" (Printexc.to_string e);
1393                 Printf.printf "MAXMETA USED: %d\n" !maxmeta;
1394                 print_endline (string_of_float (finish -. start));*)
1395             in
1396             ()
1397               
1398         | ParamodulationSuccess None ->
1399             Printf.printf "Success, but no proof?!?\n\n"
1400       in
1401         if Utils.time then
1402           begin
1403             prerr_endline 
1404               ((Printf.sprintf ("infer_time: %.9f\nforward_simpl_time: %.9f\n" ^^
1405                        "forward_simpl_new_time: %.9f\n" ^^
1406                        "backward_simpl_time: %.9f\n")
1407               !infer_time !forward_simpl_time !forward_simpl_new_time
1408               !backward_simpl_time) ^
1409               (Printf.sprintf "passive_maintainance_time: %.9f\n"
1410                  !passive_maintainance_time) ^
1411               (Printf.sprintf "    successful unification/matching time: %.9f\n"
1412                  !Indexing.match_unif_time_ok) ^
1413               (Printf.sprintf "    failed unification/matching time: %.9f\n"
1414                  !Indexing.match_unif_time_no) ^
1415               (Printf.sprintf "    indexing retrieval time: %.9f\n"
1416                  !Indexing.indexing_retrieval_time) ^
1417               (Printf.sprintf "    demodulate_term.build_newtarget_time: %.9f\n"
1418                  !Indexing.build_newtarget_time) ^
1419               (Printf.sprintf "derived %d clauses, kept %d clauses.\n"
1420                  !derived_clauses !kept_clauses)) 
1421             end
1422 (*
1423   with exc ->
1424     print_endline ("EXCEPTION: " ^ (Printexc.to_string exc));
1425     raise exc
1426 *)
1427 ;;
1428 *)
1429
1430 let default_depth = !maxdepth
1431 and default_width = !maxwidth;;
1432
1433 let reset_refs () =
1434   maxmeta := 0;
1435   symbols_counter := 0;
1436   weight_age_counter := !weight_age_ratio;
1437   processed_clauses := 0;
1438   start_time := 0.;
1439   elapsed_time := 0.;
1440   maximal_retained_equality := None;
1441   infer_time := 0.;
1442   forward_simpl_time := 0.;
1443   forward_simpl_new_time := 0.;
1444   backward_simpl_time := 0.;
1445   passive_maintainance_time := 0.;
1446   derived_clauses := 0;
1447   kept_clauses := 0;
1448   Equality.reset ();
1449 ;;
1450
1451 let eq_of_goal = function
1452   | Cic.Appl [Cic.MutInd(uri,0,_);_;_;_] when LibraryObjects.is_eq_URI uri ->
1453       uri
1454   | _ -> raise (ProofEngineTypes.Fail (lazy ("The goal is not an equality ")))
1455 ;;
1456
1457 let eq_and_ty_of_goal = function
1458   | Cic.Appl [Cic.MutInd(uri,0,_);t;_;_] when LibraryObjects.is_eq_URI uri ->
1459       uri,t
1460   | _ -> raise (ProofEngineTypes.Fail (lazy ("The goal is not an equality ")))
1461 ;;
1462
1463 let saturate 
1464     dbd ?(full=false) ?(depth=default_depth) ?(width=default_width) status = 
1465   let module C = Cic in
1466   reset_refs ();
1467   Indexing.init_index ();
1468   maxdepth := depth;
1469   maxwidth := width;
1470 (*  CicUnification.unif_ty := false;*)
1471   let proof, goalno = status in
1472   let uri, metasenv, meta_proof, term_to_prove = proof in
1473   let _, context, type_of_goal = CicUtil.lookup_meta goalno metasenv in
1474   let eq_uri = eq_of_goal type_of_goal in 
1475   let names = names_of_context context in
1476   let eq_indexes, equalities, maxm = find_equalities context proof in
1477   let ugraph = CicUniv.empty_ugraph in
1478   let env = (metasenv, context, ugraph) in 
1479   let cleaned_goal = Utils.remove_local_context type_of_goal in
1480   let goal = [], List.filter (fun (i,_,_)->i<>goalno) metasenv, cleaned_goal in
1481   let res, time =
1482     let t1 = Unix.gettimeofday () in
1483     let lib_eq_uris, library_equalities, maxm =
1484       find_library_equalities dbd context (proof, goalno) (maxm+2)
1485     in
1486     let library_equalities = List.map snd library_equalities in
1487     let t2 = Unix.gettimeofday () in
1488     maxmeta := maxm+2;
1489     let equalities = 
1490       simplify_equalities eq_uri env (equalities@library_equalities) 
1491     in 
1492     debug_print
1493       (lazy
1494          (Printf.sprintf "Time to retrieve equalities: %.9f\n" (t2 -. t1)));
1495     let t1 = Unix.gettimeofday () in
1496     let theorems =
1497       if full then
1498         let thms = find_library_theorems dbd env (proof, goalno) lib_eq_uris in
1499         let context_hyp = find_context_hypotheses env eq_indexes in
1500         context_hyp @ thms, []
1501       else
1502         let refl_equal = LibraryObjects.eq_refl_URI ~eq:eq_uri in
1503         let t = CicUtil.term_of_uri refl_equal in
1504         let ty, _ = CicTypeChecker.type_of_aux' [] [] t CicUniv.empty_ugraph in
1505         [(t, ty, [])], []
1506     in
1507     let t2 = Unix.gettimeofday () in
1508     let _ =
1509       debug_print
1510         (lazy
1511            (Printf.sprintf
1512               "Theorems:\n-------------------------------------\n%s\n"
1513               (String.concat "\n"
1514                  (List.map
1515                     (fun (t, ty, _) ->
1516                        Printf.sprintf
1517                          "Term: %s, type: %s"
1518                          (CicPp.ppterm t) (CicPp.ppterm ty))
1519                     (fst theorems)))));
1520       debug_print
1521         (lazy
1522            (Printf.sprintf "Time to retrieve theorems: %.9f\n" (t2 -. t1)));
1523     in
1524     let active = make_active () in
1525     let passive = make_passive equalities in
1526     let start = Unix.gettimeofday () in
1527     let res =
1528 (*
1529       let goals = make_goals goal in
1530       given_clause_fullred dbd env goals theorems passive active
1531 *)
1532       let goals = make_goal_set goal in
1533       let max_iterations = 10000 in
1534       let max_time = Unix.gettimeofday () +.  600. (* minutes *) in
1535       given_clause 
1536         eq_uri env goals theorems passive active max_iterations max_time 
1537     in
1538     let finish = Unix.gettimeofday () in
1539     (res, finish -. start)
1540   in
1541   match res with
1542   | ParamodulationFailure s ->
1543       raise (ProofEngineTypes.Fail (lazy ("NO proof found: " ^ s)))
1544   | ParamodulationSuccess 
1545     (goalproof,newproof,subsumption_id,subsumption_subst, proof_menv) ->
1546       prerr_endline "OK, found a proof!";
1547       prerr_endline 
1548         (Equality.pp_proof names goalproof newproof subsumption_subst
1549           subsumption_id type_of_goal);
1550       prerr_endline (CicMetaSubst.ppmetasenv [] proof_menv);
1551       prerr_endline "ENDOFPROOFS";
1552       (* generation of the CIC proof *)
1553       let side_effects = 
1554         List.filter (fun i -> i <> goalno)
1555           (ProofEngineHelpers.compare_metasenvs 
1556             ~newmetasenv:metasenv ~oldmetasenv:proof_menv)
1557       in
1558       let goal_proof, side_effects_t = 
1559         let initial = Equality.add_subst subsumption_subst newproof in
1560         Equality.build_goal_proof 
1561           eq_uri goalproof initial type_of_goal side_effects
1562       in
1563       let goal_proof = Subst.apply_subst subsumption_subst goal_proof in
1564       let metas_still_open_in_proof = Utils.metas_of_term goal_proof in
1565 (*prerr_endline (CicPp.pp goal_proof names);*)
1566       (* ?? *)
1567       let goal_proof = (* Subst.apply_subst subsumption_subst *) goal_proof in
1568       let side_effects_t = 
1569         List.map (Subst.apply_subst subsumption_subst) side_effects_t
1570       in
1571       (* replacing fake mets with real ones *)
1572       prerr_endline "replacing metas...";
1573       let irl=CicMkImplicit.identity_relocation_list_for_metavariable context in
1574       let goal_proof_menv, what, with_what,free_meta = 
1575         List.fold_left 
1576           (fun (acc1,acc2,acc3,uniq) (i,_,ty) -> 
1577              match uniq with
1578                | Some m -> 
1579                    acc1, (Cic.Meta(i,[]))::acc2, m::acc3, uniq
1580                | None ->
1581                    [i,context,ty], (Cic.Meta(i,[]))::acc2, 
1582                    (Cic.Meta(i,irl)) ::acc3,Some (Cic.Meta(i,irl))) 
1583           ([],[],[],None) 
1584           (List.filter 
1585            (fun (i,_,_) -> List.mem i metas_still_open_in_proof) 
1586            proof_menv)
1587       in
1588       let replace where = 
1589         (* we need this fake equality since the metas of the hypothesis may be
1590          * with a real local context *)
1591         ProofEngineReduction.replace_lifting 
1592           ~equality:(fun x y -> 
1593             match x,y with Cic.Meta(i,_),Cic.Meta(j,_) -> i=j | _-> false)
1594           ~what ~with_what ~where
1595       in
1596       let goal_proof = replace goal_proof in
1597         (* ok per le meta libere... ma per quelle che c'erano e sono rimaste? 
1598          * what mi pare buono, sostituisce solo le meta farlocche *)
1599       let side_effects_t = List.map replace side_effects_t in
1600       let free_metas = 
1601         List.filter (fun i -> i <> goalno)
1602           (ProofEngineHelpers.compare_metasenvs 
1603             ~oldmetasenv:metasenv ~newmetasenv:goal_proof_menv)
1604       in
1605 prerr_endline ("freemetas: " ^ String.concat "," (List.map string_of_int free_metas) );
1606       (* check/refine/... build the new proof *)
1607       let replaced_goal = 
1608         ProofEngineReduction.replace
1609           ~what:side_effects ~with_what:side_effects_t
1610           ~equality:(fun i t -> match t with Cic.Meta(j,_)->j=i|_->false)
1611           ~where:type_of_goal
1612       in
1613       let subst_side_effects,real_menv,_ = 
1614         let fail t s = raise (ProofEngineTypes.Fail (lazy (t^Lazy.force s))) in
1615         let free_metas_menv = 
1616           List.map (fun i -> CicUtil.lookup_meta i goal_proof_menv) free_metas
1617         in
1618         try
1619           CicUnification.fo_unif_subst [] context (metasenv @ free_metas_menv)
1620            replaced_goal type_of_goal CicUniv.empty_ugraph
1621         with
1622         | CicUnification.UnificationFailure s
1623         | CicUnification.Uncertain s 
1624         | CicUnification.AssertFailure s -> 
1625             fail "Maybe the local context of metas in the goal was not an IRL" s
1626       in
1627       let final_subst = 
1628         (goalno,(context,goal_proof,type_of_goal))::subst_side_effects
1629       in
1630 prerr_endline ("MENVreal_menv: " ^ CicMetaSubst.ppmetasenv [] real_menv);
1631       let _ = 
1632         try
1633           CicTypeChecker.type_of_aux' real_menv context goal_proof
1634             CicUniv.empty_ugraph
1635         with 
1636         | CicUtil.Meta_not_found _ 
1637         | CicTypeChecker.TypeCheckerFailure _ 
1638         | CicTypeChecker.AssertFailure _ 
1639         | Invalid_argument "list_fold_left2" as exn ->
1640             prerr_endline "THE PROOF DOES NOT TYPECHECK!";
1641             prerr_endline (CicPp.pp goal_proof names); 
1642             prerr_endline "THE PROOF DOES NOT TYPECHECK!";
1643             raise exn
1644       in
1645       let proof, real_metasenv = 
1646         ProofEngineHelpers.subst_meta_and_metasenv_in_proof
1647           proof goalno (CicMetaSubst.apply_subst final_subst) real_menv
1648       in
1649       let open_goals = 
1650         match free_meta with Some(Cic.Meta(m,_)) when m<>goalno ->[m] | _ ->[] 
1651       in
1652       Printf.eprintf 
1653         "GOALS APERTI: %s\nMETASENV PRIMA:\n%s\nMETASENV DOPO:\n%s\n" 
1654           (String.concat ", " (List.map string_of_int open_goals))
1655           (CicMetaSubst.ppmetasenv [] metasenv)
1656           (CicMetaSubst.ppmetasenv [] real_metasenv);
1657       prerr_endline (Printf.sprintf "\nTIME NEEDED: %8.2f" time);
1658       proof, open_goals
1659 ;;
1660
1661 let retrieve_and_print dbd term metasenv ugraph = 
1662   let module C = Cic in
1663   let module T = CicTypeChecker in
1664   let module PET = ProofEngineTypes in
1665   let module PP = CicPp in
1666   let proof = None, (1, [], term)::metasenv, C.Meta (1, []), term in
1667   let status = PET.apply_tactic (PrimitiveTactics.intros_tac ()) (proof, 1) in
1668   let proof, goals = status in
1669   let goal' = List.nth goals 0 in
1670   let uri, metasenv, meta_proof, term_to_prove = proof in
1671   let _, context, type_of_goal = CicUtil.lookup_meta goal' metasenv in
1672   let eq_uri = eq_of_goal type_of_goal in 
1673   let eq_indexes, equalities, maxm = find_equalities context proof in
1674   let ugraph = CicUniv.empty_ugraph in
1675   let env = (metasenv, context, ugraph) in
1676   let t1 = Unix.gettimeofday () in
1677   let lib_eq_uris, library_equalities, maxm =
1678     find_library_equalities dbd context (proof, goal') (maxm+2) in
1679   let t2 = Unix.gettimeofday () in
1680   maxmeta := maxm+2;
1681   let equalities = (* equalities @ *) library_equalities in
1682   debug_print
1683      (lazy
1684         (Printf.sprintf "\n\nequalities:\n%s\n"
1685            (String.concat "\n"
1686               (List.map 
1687           (fun (u, e) ->
1688 (*                  Printf.sprintf "%s: %s" *)
1689                    (UriManager.string_of_uri u)
1690 (*                    (string_of_equality e) *)
1691                      )
1692           equalities))));
1693   debug_print (lazy "RETR: SIMPLYFYING EQUALITIES...");
1694   let rec simpl e others others_simpl =
1695     let (u, e) = e in
1696     let active = List.map (fun (u, e) -> (Positive, e))
1697       (others @ others_simpl) in
1698     let tbl =
1699       List.fold_left
1700         (fun t (_, e) -> Indexing.index t e)
1701         Indexing.empty active
1702     in
1703     let res = forward_simplify eq_uri env (Positive, e) (active, tbl) in
1704     match others with
1705         | hd::tl -> (
1706             match res with
1707               | None -> simpl hd tl others_simpl
1708               | Some e -> simpl hd tl ((u, e)::others_simpl)
1709           )
1710         | [] -> (
1711             match res with
1712               | None -> others_simpl
1713               | Some e -> (u, e)::others_simpl
1714           ) 
1715   in
1716   let _equalities =
1717     match equalities with
1718       | [] -> []
1719       | hd::tl ->
1720           let others = tl in (* List.map (fun e -> (Positive, e)) tl in *)
1721           let res =
1722             List.rev (simpl (*(Positive,*) hd others [])
1723           in
1724             debug_print
1725               (lazy
1726                  (Printf.sprintf "\nequalities AFTER:\n%s\n"
1727                     (String.concat "\n"
1728                        (List.map
1729                           (fun (u, e) ->
1730                              Printf.sprintf "%s: %s"
1731                                (UriManager.string_of_uri u)
1732                                (Equality.string_of_equality e)
1733                           )
1734                           res))));
1735             res in
1736     debug_print
1737       (lazy
1738          (Printf.sprintf "Time to retrieve equalities: %.9f\n" (t2 -. t1)))
1739 ;;
1740
1741
1742 let main_demod_equalities dbd term metasenv ugraph =
1743   let module C = Cic in
1744   let module T = CicTypeChecker in
1745   let module PET = ProofEngineTypes in
1746   let module PP = CicPp in
1747   let proof = None, (1, [], term)::metasenv, C.Meta (1, []), term in
1748   let status = PET.apply_tactic (PrimitiveTactics.intros_tac ()) (proof, 1) in
1749   let proof, goals = status in
1750   let goal' = List.nth goals 0 in
1751   let _, metasenv, meta_proof, _ = proof in
1752   let _, context, goal = CicUtil.lookup_meta goal' metasenv in
1753   let eq_uri = eq_of_goal goal in 
1754   let eq_indexes, equalities, maxm = find_equalities context proof in
1755   let lib_eq_uris, library_equalities, maxm =
1756     find_library_equalities dbd context (proof, goal') (maxm+2)
1757   in
1758   let library_equalities = List.map snd library_equalities in
1759   maxmeta := maxm+2; (* TODO ugly!! *)
1760   let irl = CicMkImplicit.identity_relocation_list_for_metavariable context in
1761   let new_meta_goal, metasenv, type_of_goal =
1762     let _, context, ty = CicUtil.lookup_meta goal' metasenv in
1763     debug_print
1764       (lazy
1765          (Printf.sprintf "\n\nTRYING TO INFER EQUALITIES MATCHING: %s\n\n"
1766             (CicPp.ppterm ty)));
1767     Cic.Meta (maxm+1, irl),
1768     (maxm+1, context, ty)::metasenv,
1769     ty
1770   in
1771   let env = (metasenv, context, ugraph) in
1772   (*try*)
1773     let goal = [], [], goal 
1774     in
1775     let equalities = 
1776       simplify_equalities eq_uri env (equalities@library_equalities) 
1777     in
1778     let active = make_active () in
1779     let passive = make_passive equalities in
1780     Printf.printf "\ncontext:\n%s\n" (PP.ppcontext context);
1781     Printf.printf "\nmetasenv:\n%s\n" (print_metasenv metasenv);
1782     Printf.printf "\nequalities:\n%s\n"
1783       (String.concat "\n"
1784          (List.map
1785             (Equality.string_of_equality ~env) equalities));
1786     print_endline "--------------------------------------------------";
1787     print_endline "GO!";
1788     start_time := Unix.gettimeofday ();
1789     if !time_limit < 1. then time_limit := 60.;    
1790     let ra, rp =
1791       saturate_equations eq_uri env goal (fun e -> true) passive active
1792     in
1793
1794     let initial =
1795       List.fold_left (fun s e -> EqualitySet.add e s)
1796         EqualitySet.empty equalities
1797     in
1798     let addfun s e = 
1799       if not (EqualitySet.mem e initial) then EqualitySet.add e s else s
1800     in
1801
1802     let passive =
1803       match rp with
1804       | (p, _), _ ->
1805           EqualitySet.elements (List.fold_left addfun EqualitySet.empty p)
1806     in
1807     let active =
1808       let l = fst ra in
1809       EqualitySet.elements (List.fold_left addfun EqualitySet.empty l)
1810     in
1811     Printf.printf "\n\nRESULTS:\nActive:\n%s\n\nPassive:\n%s\n"
1812        (String.concat "\n" (List.map (Equality.string_of_equality ~env) active)) 
1813      (*  (String.concat "\n"
1814          (List.map (fun e -> CicPp.ppterm (term_of_equality e)) active)) *)
1815 (*       (String.concat "\n" (List.map (string_of_equality ~env) passive)); *)
1816       (String.concat "\n"
1817          (List.map 
1818            (fun e -> CicPp.ppterm (Equality.term_of_equality eq_uri e)) 
1819           passive));
1820     print_newline ();
1821 (*
1822   with e ->
1823     debug_print (lazy ("EXCEPTION: " ^ (Printexc.to_string e)))
1824 *)
1825 ;;
1826
1827 let demodulate_tac ~dbd ~pattern ((proof,goal)(*s initialstatus*)) = 
1828   let curi,metasenv,pbo,pty = proof in
1829   let metano,context,ty = CicUtil.lookup_meta goal metasenv in
1830   let eq_uri = eq_of_goal ty in 
1831   let eq_indexes, equalities, maxm = 
1832     Inference.find_equalities context proof 
1833   in
1834   let lib_eq_uris, library_equalities, maxm =
1835     Inference.find_library_equalities dbd context (proof, goal) (maxm+2) in
1836   if library_equalities = [] then prerr_endline "VUOTA!!!";
1837   let irl = CicMkImplicit.identity_relocation_list_for_metavariable context in
1838   let library_equalities = List.map snd library_equalities in
1839   let initgoal = [], [], ty in
1840   let env = (metasenv, context, CicUniv.empty_ugraph) in
1841   let equalities = 
1842     simplify_equalities eq_uri env (equalities@library_equalities) 
1843   in   
1844   let table = 
1845     List.fold_left 
1846       (fun tbl eq -> Indexing.index tbl eq) 
1847       Indexing.empty equalities 
1848   in
1849   let changed,(newproof,newmetasenv, newty) = 
1850     Indexing.demodulation_goal 
1851       (metasenv,context,CicUniv.empty_ugraph) table initgoal 
1852   in
1853   if changed then
1854     begin
1855       let opengoal = Equality.Exact (Cic.Meta(maxm,irl)) in
1856       let proofterm,_ = 
1857         Equality.build_goal_proof eq_uri newproof opengoal ty [] 
1858       in
1859         let extended_metasenv = (maxm,context,newty)::metasenv in
1860         let extended_status = 
1861           (curi,extended_metasenv,pbo,pty),goal in
1862         let (status,newgoals) = 
1863           ProofEngineTypes.apply_tactic 
1864             (PrimitiveTactics.apply_tac ~term:proofterm)
1865             extended_status in
1866         (status,maxm::newgoals)
1867     end
1868   else (* if newty = ty then *)
1869     raise (ProofEngineTypes.Fail (lazy "no progress"))
1870   (*else ProofEngineTypes.apply_tactic 
1871     (ReductionTactics.simpl_tac ~pattern) 
1872     initialstatus*)
1873 ;;
1874
1875 let demodulate_tac ~dbd ~pattern = 
1876   ProofEngineTypes.mk_tactic (demodulate_tac ~dbd ~pattern)
1877 ;;
1878
1879 let rec find_in_ctx i name = function
1880   | [] -> raise (ProofEngineTypes.Fail (lazy ("Hypothesis not found: " ^ name)))
1881   | Some (Cic.Name name', _)::tl when name = name' -> i
1882   | _::tl -> find_in_ctx (i+1) name tl
1883 ;;
1884
1885 let rec position_of i x = function
1886   | [] -> assert false
1887   | j::tl when j <> x -> position_of (i+1) x tl
1888   | _ -> i
1889 ;;
1890
1891 let superposition_tac ~what ~other ~subterms_only ~demodulate status = 
1892   reset_refs();
1893   let proof,goalno = status in 
1894   let curi,metasenv,pbo,pty = proof in
1895   let metano,context,ty = CicUtil.lookup_meta goalno metasenv in
1896   let eq_uri,tty = eq_and_ty_of_goal ty in
1897   let env = (metasenv, context, CicUniv.empty_ugraph) in
1898   let names = names_of_context context in
1899   let eq_index, equalities, maxm = find_equalities context proof in
1900   let what = find_in_ctx 1 what context in
1901   let other = find_in_ctx 1 other context in
1902   let eq_what = List.nth equalities (position_of 0 what eq_index) in
1903   let eq_other = List.nth equalities (position_of 0 other eq_index) in
1904   let index = Indexing.index Indexing.empty eq_other in
1905   let maxm, eql = 
1906     Indexing.superposition_right 
1907       ~subterms_only eq_uri maxm env index eq_what
1908   in
1909   prerr_endline ("Superposition right:");
1910   prerr_endline ("\n eq: " ^ Equality.string_of_equality eq_what ~env);
1911   prerr_endline ("\n table: " ^ Equality.string_of_equality eq_other ~env);
1912   prerr_endline ("\n result: ");
1913   List.iter (fun e -> prerr_endline (Equality.string_of_equality e ~env)) eql;
1914   prerr_endline ("\n result (cut&paste): ");
1915   List.iter 
1916     (fun e -> 
1917       let t = Equality.term_of_equality eq_uri e in
1918       prerr_endline (CicPp.pp t names)) 
1919   eql;
1920   if demodulate then
1921     begin
1922       let table = List.fold_left Indexing.index Indexing.empty equalities in
1923       let maxm,eql = 
1924         List.fold_left 
1925           (fun (maxm,acc) e -> 
1926             let maxm,eq = 
1927               Indexing.demodulation_equality 
1928                 eq_uri maxm env table Utils.Positive e
1929             in
1930             maxm,eq::acc) 
1931           (maxm,[]) eql
1932       in
1933       let eql = List.rev eql in
1934       prerr_endline ("\n result [demod]: ");
1935       List.iter 
1936         (fun e -> prerr_endline (Equality.string_of_equality e ~env)) eql;
1937       prerr_endline ("\n result [demod] (cut&paste): ");
1938       List.iter 
1939         (fun e -> 
1940           let t = Equality.term_of_equality eq_uri e in
1941           prerr_endline (CicPp.pp t names)) 
1942       eql;
1943     end;
1944   proof,[goalno]
1945 ;;
1946
1947 let get_stats () = 
1948   <:show<Saturation.>> ^ Indexing.get_stats () ^ Inference.get_stats () ^
1949   Equality.get_stats ();;
1950