]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/paramodulation/indexing.ml
fixed bug in proof generation, new weight function to sort equalities, which
[helm.git] / helm / ocaml / paramodulation / indexing.ml
1
2 type retrieval_mode = Matching | Unification;;
3
4
5 let print_candidates mode term res =
6   let _ =
7     match mode with
8     | Matching ->
9         Printf.printf "| candidates Matching %s\n" (CicPp.ppterm term)
10     | Unification ->
11         Printf.printf "| candidates Unification %s\n" (CicPp.ppterm term)
12   in
13   print_endline
14     (String.concat "\n"
15        (List.map
16           (fun (p, e) ->
17              Printf.sprintf "| (%s, %s)" (Utils.string_of_pos p)
18                (Inference.string_of_equality e))
19           res));
20   print_endline "|";
21 ;;
22
23
24 let indexing_retrieval_time = ref 0.;;
25
26
27 (* let my_apply_subst subst term = *)
28 (*   let module C = Cic in *)
29 (*   let lookup lift_amount meta = *)
30 (*     match meta with *)
31 (*     | C.Meta (i, _) -> ( *)
32 (*         try *)
33 (*           let _, (_, t, _) = List.find (fun (m, _) -> m = i) subst in *)
34 (*           (\* CicSubstitution.lift lift_amount  *\)t *)
35 (*         with Not_found -> meta *)
36 (*       ) *)
37 (*     | _ -> assert false *)
38 (*   in *)
39 (*   let rec apply_aux lift_amount =  function *)
40 (*     | C.Meta (i, l) as t -> lookup lift_amount t *)
41 (*     | C.Appl l -> C.Appl (List.map (apply_aux lift_amount) l) *)
42 (*     | C.Prod (nn, s, t) -> *)
43 (*         C.Prod (nn, apply_aux lift_amount s, apply_aux (lift_amount+1) t) *)
44 (*     | C.Lambda (nn, s, t) -> *)
45 (*         C.Lambda (nn, apply_aux lift_amount s, apply_aux (lift_amount+1) t) *)
46 (*     | t -> t *)
47 (*   in *)
48 (*   apply_aux 0 term *)
49 (* ;; *)
50
51
52 (* let apply_subst subst term = *)
53 (*   Printf.printf "| apply_subst:\n| subst: %s\n| term: %s\n" *)
54 (*     (Utils.print_subst ~prefix:" ; " subst) (CicPp.ppterm term); *)
55 (*   let res = my_apply_subst subst term in *)
56 (* (\*   let res = CicMetaSubst.apply_subst subst term in *\) *)
57 (*   Printf.printf "| res: %s\n" (CicPp.ppterm res); *)
58 (*   print_endline "|"; *)
59 (*   res *)
60 (* ;; *)
61
62 (* let apply_subst = my_apply_subst *)
63 let apply_subst = CicMetaSubst.apply_subst
64
65
66 let apply_subst =
67   let profile = CicUtil.profile "apply_subst" in
68   (fun s a -> profile (apply_subst s) a)
69 ;;
70
71
72 (*
73 let empty_table () =
74   Path_indexing.PSTrie.empty
75 ;;
76
77 let index = Path_indexing.index
78 and remove_index = Path_indexing.remove_index
79 and in_index = Path_indexing.in_index;;
80   
81 let get_candidates mode trie term =
82   let t1 = Unix.gettimeofday () in
83   let res = 
84     let s = 
85       match mode with
86       | Matching -> Path_indexing.retrieve_generalizations trie term
87       | Unification -> Path_indexing.retrieve_unifiables trie term
88 (*       Path_indexing.retrieve_all trie term *)
89     in
90     Path_indexing.PosEqSet.elements s
91   in
92 (*   print_candidates mode term res; *)
93   let t2 = Unix.gettimeofday () in
94   indexing_retrieval_time := !indexing_retrieval_time +. (t2 -. t1);
95   res
96 ;;
97 *)
98
99
100 let empty_table () =
101   Discrimination_tree.DiscriminationTree.empty
102 ;;
103
104 let index = Discrimination_tree.index
105 and remove_index = Discrimination_tree.remove_index
106 and in_index = Discrimination_tree.in_index;;
107
108 let get_candidates mode tree term =
109   let t1 = Unix.gettimeofday () in
110   let res =
111     let s = 
112       match mode with
113       | Matching -> Discrimination_tree.retrieve_generalizations tree term
114       | Unification -> Discrimination_tree.retrieve_unifiables tree term
115     in
116     Discrimination_tree.PosEqSet.elements s
117   in
118 (*   print_candidates mode term res; *)
119   let t2 = Unix.gettimeofday () in
120   indexing_retrieval_time := !indexing_retrieval_time +. (t2 -. t1);
121   res
122 ;;
123
124
125 (* let get_candidates = *)
126 (*   let profile = CicUtil.profile "Indexing.get_candidates" in *)
127 (*   (fun mode tree term -> profile (get_candidates mode tree) term) *)
128 (* ;; *)
129
130
131 let match_unif_time_ok = ref 0.;;
132 let match_unif_time_no = ref 0.;;
133
134
135 let rec find_matches metasenv context ugraph lift_amount term =
136   let module C = Cic in
137   let module U = Utils in
138   let module S = CicSubstitution in
139   let module M = CicMetaSubst in
140   let module HL = HelmLibraryObjects in
141   let cmp = !Utils.compare_terms in
142   let names = Utils.names_of_context context in
143   function
144     | [] -> None
145     | candidate::tl ->
146         let pos, (_, proof, (ty, left, right, o), metas, args) = candidate in
147         let do_match c other eq_URI =
148           let subst', metasenv', ugraph' =
149             let t1 = Unix.gettimeofday () in
150             try
151               let r = 
152                 Inference.matching (metasenv @ metas) context
153                   term (S.lift lift_amount c) ugraph in
154               let t2 = Unix.gettimeofday () in
155               match_unif_time_ok := !match_unif_time_ok +. (t2 -. t1);
156               r
157             with e ->
158               let t2 = Unix.gettimeofday () in
159               match_unif_time_no := !match_unif_time_no +. (t2 -. t1);
160               raise e
161           in
162             Some (C.Rel (1 + lift_amount), subst', metasenv', ugraph',
163                   (candidate, eq_URI))
164         in
165         let c, other, eq_URI =
166           if pos = Utils.Left then left, right, HL.Logic.eq_ind_URI
167           else right, left, HL.Logic.eq_ind_r_URI
168         in
169         if o <> U.Incomparable then
170           try
171             do_match c other eq_URI
172           with e ->
173             find_matches metasenv context ugraph lift_amount term tl
174         else
175           let res = try do_match c other eq_URI with e -> None in
176           match res with
177           | Some (_, s, _, _, _) ->
178               let c' = (* M. *)apply_subst s c
179               and other' = (* M. *)apply_subst s other in
180               let order = cmp c' other' in
181               let names = U.names_of_context context in
182               if order = U.Gt then
183                 res
184               else
185                 find_matches metasenv context ugraph lift_amount term tl
186           | None ->
187               find_matches metasenv context ugraph lift_amount term tl
188 ;;
189
190
191 let rec find_all_matches ?(unif_fun=Inference.unification)
192     metasenv context ugraph lift_amount term =
193   let module C = Cic in
194   let module U = Utils in
195   let module S = CicSubstitution in
196   let module M = CicMetaSubst in
197   let module HL = HelmLibraryObjects in
198   let cmp = !Utils.compare_terms in
199   let names = Utils.names_of_context context in
200   function
201     | [] -> []
202     | candidate::tl ->
203         let pos, (_, _, (ty, left, right, o), metas, args) = candidate in
204         let do_match c other eq_URI =
205           let subst', metasenv', ugraph' =
206             let t1 = Unix.gettimeofday () in
207             try
208               let r = 
209                 unif_fun (metasenv @ metas) context
210                   term (S.lift lift_amount c) ugraph in
211               let t2 = Unix.gettimeofday () in
212               match_unif_time_ok := !match_unif_time_ok +. (t2 -. t1);
213               r
214             with e ->
215               let t2 = Unix.gettimeofday () in
216               match_unif_time_no := !match_unif_time_no +. (t2 -. t1);
217               raise e
218           in
219           (C.Rel (1 + lift_amount), subst', metasenv', ugraph',
220            (candidate, eq_URI))
221         in
222         let c, other, eq_URI =
223           if pos = Utils.Left then left, right, HL.Logic.eq_ind_URI
224           else right, left, HL.Logic.eq_ind_r_URI
225         in
226         if o <> U.Incomparable then
227           try
228             let res = do_match c other eq_URI in
229             res::(find_all_matches ~unif_fun metasenv context ugraph
230                     lift_amount term tl)
231           with e ->
232             find_all_matches ~unif_fun metasenv context ugraph
233               lift_amount term tl
234         else
235           try
236             let res = do_match c other eq_URI in
237             match res with
238             | _, s, _, _, _ ->
239                 let c' = (* M. *)apply_subst s c
240                 and other' = (* M. *)apply_subst s other in
241                 let order = cmp c' other' in
242                 let names = U.names_of_context context in
243                 if order <> U.Lt && order <> U.Le then
244                   res::(find_all_matches ~unif_fun metasenv context ugraph
245                           lift_amount term tl)
246                 else
247                   find_all_matches ~unif_fun metasenv context ugraph
248                     lift_amount term tl
249           with e ->
250             find_all_matches ~unif_fun metasenv context ugraph
251               lift_amount term tl
252 ;;
253
254
255 let subsumption env table target =
256   let _, (ty, left, right, _), tmetas, _ = target in
257   let metasenv, context, ugraph = env in
258   let metasenv = metasenv @ tmetas in
259   let samesubst subst subst' =
260     let tbl = Hashtbl.create (List.length subst) in
261     List.iter (fun (m, (c, t1, t2)) -> Hashtbl.add tbl m (c, t1, t2)) subst;
262     List.for_all
263       (fun (m, (c, t1, t2)) ->
264          try
265            let c', t1', t2' = Hashtbl.find tbl m in
266            if (c = c') && (t1 = t1') && (t2 = t2') then true
267            else false
268          with Not_found ->
269            true)
270       subst'
271   in
272   let leftr =
273     match left with
274     | Cic.Meta _ -> []
275     | _ ->
276         let leftc = get_candidates Matching table left in
277         find_all_matches ~unif_fun:Inference.matching
278           metasenv context ugraph 0 left leftc
279   in
280   let ok what (_, subst, menv, ug, ((pos, (_, _, (_, l, r, o), _, _)), _)) =
281     try
282       let other = if pos = Utils.Left then r else l in
283       let subst', menv', ug' =
284         let t1 = Unix.gettimeofday () in
285         try
286           let r = 
287             Inference.matching metasenv context what other ugraph in
288           let t2 = Unix.gettimeofday () in
289           match_unif_time_ok := !match_unif_time_ok +. (t2 -. t1);
290           r
291         with e ->
292           let t2 = Unix.gettimeofday () in
293           match_unif_time_no := !match_unif_time_no +. (t2 -. t1);
294           raise e
295       in
296       samesubst subst subst'
297     with e ->
298       false
299   in
300   let r = List.exists (ok right) leftr in
301   if r then
302     true
303   else
304     let rightr =
305       match right with
306       | Cic.Meta _ -> []
307       | _ ->
308           let rightc = get_candidates Matching table right in
309           find_all_matches ~unif_fun:Inference.matching
310             metasenv context ugraph 0 right rightc
311     in
312     List.exists (ok left) rightr
313 ;;
314
315
316 let rec demodulate_term metasenv context ugraph table lift_amount term =
317   let module C = Cic in
318   let module S = CicSubstitution in
319   let module M = CicMetaSubst in
320   let module HL = HelmLibraryObjects in
321   let candidates = get_candidates Matching table term in
322   match term with
323   | C.Meta _ -> None
324   | term ->
325       let res =
326         find_matches metasenv context ugraph lift_amount term candidates
327       in
328       if res <> None then
329         res
330       else
331         match term with
332         | C.Appl l ->
333             let res, ll = 
334               List.fold_left
335                 (fun (res, tl) t ->
336                    if res <> None then
337                      (res, tl @ [S.lift 1 t])
338                    else 
339                      let r =
340                        demodulate_term metasenv context ugraph table
341                          lift_amount t
342                      in
343                      match r with
344                      | None -> (None, tl @ [S.lift 1 t])
345                      | Some (rel, _, _, _, _) -> (r, tl @ [rel]))
346                 (None, []) l
347             in (
348               match res with
349               | None -> None
350               | Some (_, subst, menv, ug, eq_found) ->
351                   Some (C.Appl ll, subst, menv, ug, eq_found)
352             )
353         | C.Prod (nn, s, t) ->
354             let r1 =
355               demodulate_term metasenv context ugraph table lift_amount s in (
356               match r1 with
357               | None ->
358                   let r2 =
359                     demodulate_term metasenv
360                       ((Some (nn, C.Decl s))::context) ugraph
361                       table (lift_amount+1) t
362                   in (
363                     match r2 with
364                     | None -> None
365                     | Some (t', subst, menv, ug, eq_found) ->
366                         Some (C.Prod (nn, (S.lift 1 s), t'),
367                               subst, menv, ug, eq_found)
368                   )
369               | Some (s', subst, menv, ug, eq_found) ->
370                   Some (C.Prod (nn, s', (S.lift 1 t)),
371                         subst, menv, ug, eq_found)
372             )
373         | t ->
374             None
375 ;;
376
377
378 let build_newtarget_time = ref 0.;;
379
380
381 let demod_counter = ref 1;;
382
383 let rec demodulation newmeta env table target =
384   let module C = Cic in
385   let module S = CicSubstitution in
386   let module M = CicMetaSubst in
387   let module HL = HelmLibraryObjects in
388   let metasenv, context, ugraph = env in
389   let _, proof, (eq_ty, left, right, order), metas, args = target in
390   let metasenv' = metasenv @ metas in
391   let build_newtarget is_left (t, subst, menv, ug, (eq_found, eq_URI)) =
392     let time1 = Unix.gettimeofday () in
393     
394     let pos, (_, proof', (ty, what, other, _), menv', args') = eq_found in
395     let what, other = if pos = Utils.Left then what, other else other, what in
396     let newterm, newproof =
397       let bo = (* M. *)apply_subst subst (S.subst other t) in
398       let t' =
399         let name = C.Name ("x_Demod_" ^ (string_of_int !demod_counter)) in
400         incr demod_counter;
401         let l, r = if is_left then bo, right else left, bo in
402         (name, ty, eq_ty, l, r)
403       in
404 (*       let bo'' = *)
405 (*         C.Appl ([C.MutInd (HL.Logic.eq_URI, 0, []); *)
406 (*                  S.lift 1 eq_ty] @ *)
407 (*                  if is_left then [S.lift 1 bo; S.lift 1 right] *)
408 (*                  else [S.lift 1 left; S.lift 1 bo]) *)
409 (*       in *)
410 (*       let t' = *)
411 (*         let name = C.Name ("x_Demod_" ^ (string_of_int !demod_counter)) in *)
412 (*         incr demod_counter; *)
413 (*         C.Lambda (name, ty, bo'') *)
414 (*       in *)
415       bo,
416       Inference.ProofBlock (subst, eq_URI, t', eq_found, target)
417 (*       (\* M. *\)apply_subst subst (C.Appl [C.Const (eq_URI, []); ty; what; t'; *)
418 (*                                    proof; other; proof']) *)
419     in
420     let left, right = if is_left then newterm, right else left, newterm in
421     let m =
422       (Inference.metas_of_term left) @ (Inference.metas_of_term right)
423     in
424     let newmetasenv = List.filter (fun (i, _, _) -> List.mem i m) metas
425     and newargs =
426       List.filter
427         (function C.Meta (i, _) -> List.mem i m | _ -> assert false)
428         args
429     in
430     let ordering = !Utils.compare_terms left right in
431
432     let time2 = Unix.gettimeofday () in
433     build_newtarget_time := !build_newtarget_time +. (time2 -. time1);
434
435     let res =
436       let w = Utils.compute_equality_weight eq_ty left right in
437       (w, newproof, (eq_ty, left, right, ordering), newmetasenv, newargs)
438     in
439     newmeta, res
440   in
441 (*   let build_newtarget = *)
442 (*     let profile = CicUtil.profile "Indexing.demodulation.build_newtarget" in *)
443 (*     (fun a b -> profile (build_newtarget a) b) *)
444 (*   in *)
445   let res = demodulate_term metasenv' context ugraph table 0 left in
446 (*   let build_identity (w, p, (t, l, r, o), m, a) = *)
447 (*     match o with *)
448 (*     | Utils.Gt -> (w, p, (t, r, r, Utils.Eq), m, a) *)
449 (*     | _ -> (w, p, (t, l, l, Utils.Eq), m, a) *)
450 (*   in *)
451   match res with
452   | Some t ->
453       let newmeta, newtarget = build_newtarget true t in
454       if (Inference.is_identity (metasenv', context, ugraph) newtarget) ||
455         (Inference.meta_convertibility_eq target newtarget) then
456           newmeta, newtarget
457       else
458 (*         if subsumption env table newtarget then *)
459 (*           newmeta, build_identity newtarget *)
460 (*         else *)
461           demodulation newmeta env table newtarget
462   | None ->
463       let res = demodulate_term metasenv' context ugraph table 0 right in
464       match res with
465       | Some t ->
466           let newmeta, newtarget = build_newtarget false t in
467           if (Inference.is_identity (metasenv', context, ugraph) newtarget) ||
468             (Inference.meta_convertibility_eq target newtarget) then
469               newmeta, newtarget
470           else
471 (*             if subsumption env table newtarget then *)
472 (*               newmeta, build_identity newtarget *)
473 (*             else *)
474               demodulation newmeta env table newtarget
475       | None ->
476           newmeta, target
477 ;;
478
479
480 let rec betaexpand_term metasenv context ugraph table lift_amount term =
481   let module C = Cic in
482   let module S = CicSubstitution in
483   let module M = CicMetaSubst in
484   let module HL = HelmLibraryObjects in
485   let candidates = get_candidates Unification table term in
486   let res, lifted_term = 
487     match term with
488     | C.Meta (i, l) ->
489         let l', lifted_l = 
490           List.fold_right
491             (fun arg (res, lifted_tl) ->
492                match arg with
493                | Some arg ->
494                    let arg_res, lifted_arg =
495                      betaexpand_term metasenv context ugraph table
496                        lift_amount arg in
497                    let l1 =
498                      List.map
499                        (fun (t, s, m, ug, eq_found) ->
500                           (Some t)::lifted_tl, s, m, ug, eq_found)
501                        arg_res
502                    in
503                    (l1 @
504                       (List.map
505                          (fun (l, s, m, ug, eq_found) ->
506                             (Some lifted_arg)::l, s, m, ug, eq_found)
507                          res),
508                     (Some lifted_arg)::lifted_tl)
509                | None ->
510                    (List.map
511                       (fun (r, s, m, ug, eq_found) ->
512                          None::r, s, m, ug, eq_found) res, 
513                     None::lifted_tl)
514             ) l ([], [])
515         in
516         let e = 
517           List.map
518             (fun (l, s, m, ug, eq_found) ->
519                (C.Meta (i, l), s, m, ug, eq_found)) l'
520         in
521         e, C.Meta (i, lifted_l)
522           
523     | C.Rel m ->
524         [], if m <= lift_amount then C.Rel m else C.Rel (m+1)
525           
526     | C.Prod (nn, s, t) ->
527         let l1, lifted_s =
528           betaexpand_term metasenv context ugraph table lift_amount s in
529         let l2, lifted_t =
530           betaexpand_term metasenv ((Some (nn, C.Decl s))::context) ugraph
531             table (lift_amount+1) t in
532         let l1' =
533           List.map
534             (fun (t, s, m, ug, eq_found) ->
535                C.Prod (nn, t, lifted_t), s, m, ug, eq_found) l1
536         and l2' =
537           List.map
538             (fun (t, s, m, ug, eq_found) ->
539                C.Prod (nn, lifted_s, t), s, m, ug, eq_found) l2 in
540         l1' @ l2', C.Prod (nn, lifted_s, lifted_t)
541           
542     | C.Appl l ->
543         let l', lifted_l =
544           List.fold_right
545             (fun arg (res, lifted_tl) ->
546                let arg_res, lifted_arg =
547                  betaexpand_term metasenv context ugraph table lift_amount arg
548                in
549                let l1 =
550                  List.map
551                    (fun (a, s, m, ug, eq_found) ->
552                       a::lifted_tl, s, m, ug, eq_found)
553                    arg_res
554                in
555                (l1 @
556                   (List.map
557                      (fun (r, s, m, ug, eq_found) ->
558                         lifted_arg::r, s, m, ug, eq_found)
559                      res),
560                 lifted_arg::lifted_tl)
561             ) l ([], [])
562         in
563         (List.map
564            (fun (l, s, m, ug, eq_found) -> (C.Appl l, s, m, ug, eq_found)) l',
565          C.Appl lifted_l)
566
567     | t -> [], (S.lift lift_amount t)
568   in
569   match term with
570   | C.Meta _ -> res, lifted_term
571   | term ->
572       let r = 
573         find_all_matches metasenv context ugraph lift_amount term candidates
574       in
575       r @ res, lifted_term
576 ;;
577
578
579 let sup_l_counter = ref 1;;
580
581 let superposition_left (metasenv, context, ugraph) table target =
582   let module C = Cic in
583   let module S = CicSubstitution in
584   let module M = CicMetaSubst in
585   let module HL = HelmLibraryObjects in
586   let module CR = CicReduction in
587   let module U = Utils in
588   let _, proof, (eq_ty, left, right, ordering), _, _ = target in
589   let expansions, _ =
590     let term = if ordering = U.Gt then left else right in
591     betaexpand_term metasenv context ugraph table 0 term
592   in
593   let build_new (bo, s, m, ug, (eq_found, eq_URI)) =
594     let time1 = Unix.gettimeofday () in
595     
596     let pos, (_, proof', (ty, what, other, _), menv', args') = eq_found in
597     let what, other = if pos = Utils.Left then what, other else other, what in
598     let newgoal, newproof =
599       let bo' = (* M. *)apply_subst s (S.subst other bo) in
600       let t' =
601         let name = C.Name ("x_SupL_" ^ (string_of_int !sup_l_counter)) in
602         incr sup_l_counter;
603         let l, r = if ordering = U.Gt then bo', right else left, bo' in
604         (name, ty, eq_ty, l, r)
605       in
606 (*       let bo'' = *)
607 (*         C.Appl ( *)
608 (*           [C.MutInd (HL.Logic.eq_URI, 0, []); *)
609 (*            S.lift 1 eq_ty] @ *)
610 (*             if ordering = U.Gt then [S.lift 1 bo'; S.lift 1 right] *)
611 (*             else [S.lift 1 left; S.lift 1 bo']) *)
612 (*       in *)
613 (*       let t' = *)
614 (*         let name = C.Name ("x_SupL_" ^ (string_of_int !sup_l_counter)) in *)
615 (*         incr sup_l_counter; *)
616 (*         C.Lambda (name, ty, bo'') *)
617 (*       in *)
618       bo',
619       Inference.ProofBlock (s, eq_URI, t', eq_found, target)
620 (*       (\* M. *\)apply_subst s *)
621 (*         (C.Appl [C.Const (eq_URI, []); ty; what; t'; *)
622 (*                  proof; other; proof']) *)
623     in
624     let left, right =
625       if ordering = U.Gt then newgoal, right else left, newgoal in
626     let neworder = !Utils.compare_terms left right in
627
628     let time2 = Unix.gettimeofday () in
629     build_newtarget_time := !build_newtarget_time +. (time2 -. time1);
630
631     let res =
632       let w = Utils.compute_equality_weight eq_ty left right in
633       (w, newproof, (eq_ty, left, right, neworder), [], [])
634     in
635     res
636   in
637 (*   let build_new = *)
638 (*     let profile = CicUtil.profile "Inference.superposition_left.build_new" in *)
639 (*     (fun e -> profile build_new e) *)
640 (*   in *)
641   List.map build_new expansions
642 ;;
643
644
645 let sup_r_counter = ref 1;;
646
647 let superposition_right newmeta (metasenv, context, ugraph) table target =
648   let module C = Cic in
649   let module S = CicSubstitution in
650   let module M = CicMetaSubst in
651   let module HL = HelmLibraryObjects in
652   let module CR = CicReduction in
653   let module U = Utils in
654   let _, eqproof, (eq_ty, left, right, ordering), newmetas, args = target in
655   let metasenv' = metasenv @ newmetas in
656   let maxmeta = ref newmeta in
657   let res1, res2 =
658     match ordering with
659     | U.Gt -> fst (betaexpand_term metasenv' context ugraph table 0 left), []
660     | U.Lt -> [], fst (betaexpand_term metasenv' context ugraph table 0 right)
661     | _ ->
662         let res l r =
663           List.filter
664             (fun (_, subst, _, _, _) ->
665                let subst = (* M. *)apply_subst subst in
666                let o = !Utils.compare_terms (subst l) (subst r) in
667                o <> U.Lt && o <> U.Le)
668             (fst (betaexpand_term metasenv' context ugraph table 0 l))
669         in
670         (res left right), (res right left)
671   in
672   let build_new ordering (bo, s, m, ug, (eq_found, eq_URI)) =
673
674     let time1 = Unix.gettimeofday () in
675     
676     let pos, (_, proof', (ty, what, other, _), menv', args') = eq_found in
677     let what, other = if pos = Utils.Left then what, other else other, what in
678     let newgoal, newproof =
679       let bo' = (* M. *)apply_subst s (S.subst other bo) in
680       let t' =
681         let name = C.Name ("x_SupR_" ^ (string_of_int !sup_r_counter)) in
682         incr sup_r_counter;
683         let l, r = if ordering = U.Gt then bo', right else left, bo' in
684         (name, ty, eq_ty, l, r)
685       in
686 (*       let bo'' = *)
687 (*         C.Appl ( *)
688 (*           [C.MutInd (HL.Logic.eq_URI, 0, []); S.lift 1 eq_ty] @ *)
689 (*             if ordering = U.Gt then [S.lift 1 bo'; S.lift 1 right] *)
690 (*             else [S.lift 1 left; S.lift 1 bo']) *)
691 (*       in *)
692 (*       let t' = *)
693 (*         let name = C.Name ("x_SupR_" ^ (string_of_int !sup_r_counter)) in *)
694 (*         incr sup_r_counter; *)
695 (*         C.Lambda (name, ty, bo'') *)
696 (*       in *)
697       bo',
698       Inference.ProofBlock (s, eq_URI, t', eq_found, target)
699 (*       (\* M. *\)apply_subst s *)
700 (*         (C.Appl [C.Const (eq_URI, []); ty; what; t'; *)
701 (*                  eqproof; other; proof']) *)
702     in
703     let newmeta, newequality = 
704       let left, right =
705         if ordering = U.Gt then newgoal, (* M. *)apply_subst s right
706         else (* M. *)apply_subst s left, newgoal in
707       let neworder = !Utils.compare_terms left right 
708       and newmenv = newmetas @ menv'
709       and newargs = args @ args' in
710       let eq' =
711         let w = Utils.compute_equality_weight eq_ty left right in
712         (w, newproof, (eq_ty, left, right, neworder), newmenv, newargs)
713       and env = (metasenv, context, ugraph) in
714       let newm, eq' = Inference.fix_metas !maxmeta eq' in
715       newm, eq'
716     in
717     maxmeta := newmeta;
718
719     let time2 = Unix.gettimeofday () in
720     build_newtarget_time := !build_newtarget_time +. (time2 -. time1);
721
722     newequality
723   in
724
725 (*   let build_new = *)
726 (*     let profile = CicUtil.profile "Indexing.superposition_right.build_new" in *)
727 (*     (fun o e -> profile (build_new o) e) *)
728 (*   in *)
729   
730   let new1 = List.map (build_new U.Gt) res1
731   and new2 = List.map (build_new U.Lt) res2 in
732   let ok = function
733     | _, _, (_, left, right, _), _, _ ->
734         not (fst (CR.are_convertible context left right ugraph))
735   in
736   (!maxmeta,
737    (List.filter ok (new1 @ new2)))
738 ;;