]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/paramodulation/equality.ml
c4aaa1ca485979031e2b7ad434e8c5783eb4d3f6
[helm.git] / components / tactics / paramodulation / equality.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 (* $Id: inference.ml 6245 2006-04-05 12:07:51Z tassi $ *)
27
28
29 (******* CIC substitution ***************************************************)
30
31 type cic_substitution = Cic.substitution
32 let cic_apply_subst = CicMetaSubst.apply_subst
33 let cic_apply_subst_metasenv = CicMetaSubst.apply_subst_metasenv
34 let cic_ppsubst = CicMetaSubst.ppsubst
35 let cic_buildsubst n context t ty tail = (n,(context,t,ty)) :: tail
36 let cic_flatten_subst subst =
37     List.map
38       (fun (i, (context, term, ty)) ->
39          let context = (* cic_apply_subst_context subst*) context in
40          let term = cic_apply_subst subst term in
41          let ty = cic_apply_subst subst ty in  
42          (i, (context, term, ty))) subst
43 let rec cic_lookup_subst meta subst =
44   match meta with
45   | Cic.Meta (i, _) -> (
46       try let _, (_, t, _) = List.find (fun (m, _) -> m = i) subst 
47       in cic_lookup_subst t subst 
48       with Not_found -> meta
49     )
50   | _ -> meta
51 ;;
52
53 let cic_merge_subst_if_possible s1 s2 =
54   let already_in = Hashtbl.create 13 in
55   let rec aux acc = function
56     | ((i,_,x) as s)::tl ->
57         (try 
58           let x' = Hashtbl.find already_in i in
59           if x = x' then aux acc tl else None
60         with
61         | Not_found -> 
62             Hashtbl.add already_in i x;
63             aux (s::acc) tl)
64     | [] -> Some acc 
65   in  
66     aux [] (s1@s2)
67 ;;
68
69 (******** NAIF substitution **************************************************)
70 (* 
71  * naif version of apply subst; the local context of metas is ignored;
72  * we assume the substituted term must be lifted according to the nesting
73  * depth of the meta. 
74  * Alternatively, we could used implicit instead of metas 
75  *)
76
77 type naif_substitution = (int * Cic.term) list 
78
79 let naif_apply_subst subst term =
80  let rec aux k t =
81    match t with
82        Cic.Rel _ -> t
83      | Cic.Var (uri,exp_named_subst) -> 
84          let exp_named_subst' =
85            List.map (fun (uri, t) -> (uri, aux k t)) exp_named_subst
86          in
87            Cic.Var (uri, exp_named_subst')
88     | Cic.Meta (i, l) -> 
89         (try
90           aux k (CicSubstitution.lift k (List.assoc i subst)) 
91          with Not_found -> t)
92     | Cic.Sort _
93     | Cic.Implicit _ -> t
94     | Cic.Cast (te,ty) -> Cic.Cast (aux k te, aux k ty)
95     | Cic.Prod (n,s,t) -> Cic.Prod (n, aux k s, aux (k+1) t)
96     | Cic.Lambda (n,s,t) -> Cic.Lambda (n, aux k s, aux (k+1) t)
97     | Cic.LetIn (n,s,t) -> Cic.LetIn (n, aux k s, aux (k+1) t)
98     | Cic.Appl [] -> assert false
99     | Cic.Appl l -> Cic.Appl (List.map (aux k) l)
100     | Cic.Const (uri,exp_named_subst) ->
101         let exp_named_subst' =
102           List.map (fun (uri, t) -> (uri, aux k t)) exp_named_subst
103         in
104           if exp_named_subst' != exp_named_subst then
105             Cic.Const (uri, exp_named_subst')
106           else
107             t (* TODO: provare a mantenere il piu' possibile sharing *)
108     | Cic.MutInd (uri,typeno,exp_named_subst) ->
109         let exp_named_subst' =
110           List.map (fun (uri, t) -> (uri, aux k t)) exp_named_subst
111         in
112           Cic.MutInd (uri,typeno,exp_named_subst')
113     | Cic.MutConstruct (uri,typeno,consno,exp_named_subst) ->
114         let exp_named_subst' =
115           List.map (fun (uri, t) -> (uri, aux k t)) exp_named_subst
116         in
117           Cic.MutConstruct (uri,typeno,consno,exp_named_subst')
118     | Cic.MutCase (sp,i,outty,t,pl) ->
119         let pl' = List.map (aux k) pl in
120           Cic.MutCase (sp, i, aux k outty, aux k t, pl')
121     | Cic.Fix (i, fl) ->
122         let len = List.length fl in
123         let fl' =
124          List.map 
125            (fun (name, i, ty, bo) -> (name, i, aux k ty, aux (k+len) bo)) fl
126         in
127           Cic.Fix (i, fl')
128     | Cic.CoFix (i, fl) ->
129         let len = List.length fl in
130         let fl' =
131           List.map (fun (name, ty, bo) -> (name, aux k ty, aux (k+len) bo)) fl
132         in
133           Cic.CoFix (i, fl')
134 in
135   aux 0 term
136 ;;
137
138 (* naif version of apply_subst_metasenv: we do not apply the 
139 substitution to the context *)
140
141 let naif_apply_subst_metasenv subst metasenv =
142   List.map
143     (fun (n, context, ty) ->
144       (n, context, naif_apply_subst subst ty))
145     (List.filter
146       (fun (i, _, _) -> not (List.mem_assoc i subst))
147       metasenv)
148
149 let naif_ppsubst names subst =
150   "{" ^ String.concat "; "
151     (List.map
152       (fun (idx, t) ->
153          Printf.sprintf "%d:= %s" idx (CicPp.pp t names))
154     subst) ^ "}"
155 ;;
156
157 let naif_buildsubst n context t ty tail = (n,t) :: tail ;;
158
159 let naif_flatten_subst subst = 
160   List.map (fun (i,t) -> i, naif_apply_subst subst t ) subst
161 ;;
162
163 let rec naif_lookup_subst meta subst =
164   match meta with
165     | Cic.Meta (i, _) ->
166         (try
167           naif_lookup_subst (List.assoc i subst) subst
168         with
169             Not_found -> meta)
170     | _ -> meta
171 ;;
172
173 let naif_merge_subst_if_possible s1 s2 =
174   let already_in = Hashtbl.create 13 in
175   let rec aux acc = function
176     | ((i,x) as s)::tl ->
177         (try 
178           let x' = Hashtbl.find already_in i in
179           if x = x' then aux acc tl else None
180         with
181         | Not_found -> 
182             Hashtbl.add already_in i x;
183             aux (s::acc) tl)
184     | [] -> Some acc 
185   in  
186     aux [] (s1@s2)
187 ;;
188
189 (********** ACTUAL SUBSTITUTION IMPLEMENTATION *******************************)
190
191 type substitution = naif_substitution
192 let apply_subst = naif_apply_subst
193 let apply_subst_metasenv = naif_apply_subst_metasenv
194 let ppsubst ~names l = naif_ppsubst (names:(Cic.name option)list) l
195 let buildsubst = naif_buildsubst
196 let flatten_subst = naif_flatten_subst
197 let lookup_subst = naif_lookup_subst
198
199 (* filter out from metasenv the variables in substs *)
200 let filter subst metasenv =
201   List.filter
202     (fun (m, _, _) ->
203          try let _ = List.find (fun (i, _) -> m = i) subst in false
204          with Not_found -> true)
205     metasenv
206 ;;
207
208 let is_in_subst i subst = List.mem_assoc i subst;;
209   
210 let merge_subst_if_possible = naif_merge_subst_if_possible;;
211
212 let empty_subst = [];;
213
214 (********* EQUALITY **********************************************************)
215
216 type rule = SuperpositionRight | SuperpositionLeft | Demodulation
217 type uncomparable = int -> int 
218 type equality =
219     uncomparable *       (* trick to break structural equality *)
220     int  *               (* weight *)
221     proof * 
222     (Cic.term *          (* type *)
223      Cic.term *          (* left side *)
224      Cic.term *          (* right side *)
225      Utils.comparison) * (* ordering *)  
226     Cic.metasenv  *      (* environment for metas *)
227     int                  (* id *)
228 and proof = new_proof * old_proof 
229
230 and new_proof = 
231   | Exact of Cic.term
232   | Step of substitution * (rule * int*(Utils.pos*int)* Cic.term) (* eq1, eq2,predicate *)  
233 and old_proof =
234   | NoProof (* term is the goal missing a proof *)
235   | BasicProof of substitution * Cic.term
236   | ProofBlock of
237       substitution * UriManager.uri *
238         (Cic.name * Cic.term) * Cic.term * (Utils.pos * equality) * old_proof
239   | ProofGoalBlock of old_proof * old_proof 
240   | ProofSymBlock of Cic.term list * old_proof
241   | SubProof of Cic.term * int * old_proof
242 and goal_proof = (Utils.pos * int * substitution * Cic.term) list
243 ;;
244
245 (* globals *)
246 let maxid = ref 0;;
247 let id_to_eq = Hashtbl.create 1024;;
248
249 let freshid () =
250   incr maxid; !maxid
251 ;;
252
253 let reset () = 
254   maxid := 0;
255   Hashtbl.clear  id_to_eq
256 ;;
257
258 let uncomparable = fun _ -> 0
259
260 let mk_equality (weight,(newp,oldp),(ty,l,r,o),m) =
261   let id = freshid () in
262   let eq = (uncomparable,weight,(newp,oldp),(ty,l,r,o),m,id) in
263   Hashtbl.add id_to_eq id eq;
264   eq
265 ;;
266
267 let mk_tmp_equality (weight,(ty,l,r,o),m) =
268   let id = -1 in
269   uncomparable,weight,(Exact (Cic.Implicit None),NoProof),(ty,l,r,o),m,id
270 ;;
271
272
273 let open_equality (_,weight,proof,(ty,l,r,o),m,id) = 
274   (weight,proof,(ty,l,r,o),m,id)
275
276 let string_of_equality ?env eq =
277   match env with
278   | None ->
279       let w, _, (ty, left, right, o), _ , id = open_equality eq in
280       Printf.sprintf "Id: %d, Weight: %d, {%s}: %s =(%s) %s" 
281               id w (CicPp.ppterm ty)
282               (CicPp.ppterm left) 
283               (Utils.string_of_comparison o) (CicPp.ppterm right)
284   | Some (_, context, _) -> 
285       let names = Utils.names_of_context context in
286       let w, _, (ty, left, right, o), _ , id = open_equality eq in
287       Printf.sprintf "Id: %d, Weight: %d, {%s}: %s =(%s) %s" 
288               id w (CicPp.pp ty names)
289               (CicPp.pp left names) (Utils.string_of_comparison o)
290               (CicPp.pp right names)
291 ;;
292
293 let compare (_,_,_,s1,_,_) (_,_,_,s2,_,_) =
294   Pervasives.compare s1 s2
295 ;;
296
297 let rec string_of_proof_old ?(names=[]) = function
298   | NoProof -> "NoProof " 
299   | BasicProof (s, t) -> "BasicProof(" ^ 
300       ppsubst ~names s ^ ", " ^ (CicPp.pp t names) ^ ")"
301   | SubProof (t, i, p) ->
302       Printf.sprintf "SubProof(%s, %s, %s)"
303         (CicPp.pp t names) (string_of_int i) (string_of_proof_old p)
304   | ProofSymBlock (_,p) -> 
305       Printf.sprintf "ProofSymBlock(%s)" (string_of_proof_old p)
306   | ProofBlock (subst, _, _, _ ,(_,eq),old) -> 
307       let _,(_,p),_,_,_ = open_equality eq in 
308       "ProofBlock(" ^ (ppsubst ~names subst) ^ "," ^ (string_of_proof_old old) ^ "," ^
309       string_of_proof_old p ^ ")"
310   | ProofGoalBlock (p1, p2) ->
311       Printf.sprintf "ProofGoalBlock(%s, %s)"
312         (string_of_proof_old p1) (string_of_proof_old p2)
313 ;;
314
315
316 let proof_of_id id =
317   try
318     let (_,(p,_),(_,l,r,_),_,_) = open_equality (Hashtbl.find id_to_eq id) in
319       p,l,r
320   with
321       Not_found -> assert false
322
323
324 let string_of_proof_new ?(names=[]) p gp = 
325   let str_of_rule = function
326     | SuperpositionRight -> "SupR"
327     | SuperpositionLeft -> "SupL"
328     | Demodulation -> "Demod"
329   in
330   let str_of_pos = function
331     | Utils.Left -> "left"
332     | Utils.Right -> "right"
333   in
334   let fst3 (x,_,_) = x in
335   let rec aux margin name = 
336     let prefix = String.make margin ' ' ^ name ^ ": " in function 
337     | Exact t -> 
338         Printf.sprintf "%sExact (%s)\n" 
339           prefix (CicPp.pp t names)
340     | Step (subst,(rule,eq1,(pos,eq2),pred)) -> 
341         Printf.sprintf "%s%s(%s|%d with %d dir %s pred %s))\n"
342           prefix (str_of_rule rule) (ppsubst ~names subst) eq1 eq2 (str_of_pos pos) 
343           (CicPp.pp pred names)^ 
344         aux (margin+1) (Printf.sprintf "%d" eq1) (fst3 (proof_of_id eq1)) ^ 
345         aux (margin+1) (Printf.sprintf "%d" eq2) (fst3 (proof_of_id eq2)) 
346   in
347   aux 0 "" p ^ 
348   String.concat "\n" 
349     (List.map 
350       (fun (pos,i,s,t) -> 
351         (Printf.sprintf 
352           "GOAL: %s %d %s %s\n" 
353             (str_of_pos pos) i (ppsubst ~names s) (CicPp.pp t names)) ^ 
354         aux 1 (Printf.sprintf "%d " i) (fst3 (proof_of_id i)))
355       gp)
356 ;;
357
358 let ppsubst = ppsubst ~names:[]
359
360 (* returns an explicit named subst and a list of arguments for sym_eq_URI *)
361 let build_ens uri termlist =
362   let obj, _ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
363   match obj with
364   | Cic.Constant (_, _, _, uris, _) ->
365       assert (List.length uris <= List.length termlist);
366       let rec aux = function
367         | [], tl -> [], tl
368         | (uri::uris), (term::tl) ->
369             let ens, args = aux (uris, tl) in
370             (uri, term)::ens, args
371         | _, _ -> assert false
372       in
373       aux (uris, termlist)
374   | _ -> assert false
375 ;;
376
377 let build_proof_term_old ?(noproof=Cic.Implicit None) proof =
378   let rec do_build_proof proof = 
379     match proof with
380     | NoProof ->
381         Printf.fprintf stderr "WARNING: no proof!\n";
382         noproof
383     | BasicProof (s,term) -> apply_subst s term
384     | ProofGoalBlock (proofbit, proof) ->
385         print_endline "found ProofGoalBlock, going up...";
386         do_build_goal_proof proofbit proof
387     | ProofSymBlock (termlist, proof) ->
388         let proof = do_build_proof proof in
389         let ens, args = build_ens (Utils.sym_eq_URI ()) termlist in
390         Cic.Appl ([Cic.Const (Utils.sym_eq_URI (), ens)] @ args @ [proof])
391     | ProofBlock (subst, eq_URI, (name, ty), bo, (pos, eq), eqproof) ->
392         let t' = Cic.Lambda (name, ty, bo) in
393         let _, (_,proof), (ty, what, other, _), menv',_ = open_equality eq in
394         let proof' = do_build_proof proof in
395         let eqproof = do_build_proof eqproof in
396         let what, other =
397           if pos = Utils.Left then what, other else other, what
398         in
399         apply_subst subst
400           (Cic.Appl [Cic.Const (eq_URI, []); ty;
401                      what; t'; eqproof; other; proof'])
402     | SubProof (term, meta_index, proof) ->
403         let proof = do_build_proof proof in
404         let eq i = function
405           | Cic.Meta (j, _) -> i = j
406           | _ -> false
407         in
408         ProofEngineReduction.replace
409           ~equality:eq ~what:[meta_index] ~with_what:[proof] ~where:term
410
411   and do_build_goal_proof proofbit proof =
412     match proof with
413     | ProofGoalBlock (pb, p) ->
414         do_build_proof (ProofGoalBlock (replace_proof proofbit pb, p))
415     | _ -> do_build_proof (replace_proof proofbit proof)
416
417   and replace_proof newproof = function
418     | ProofBlock (subst, eq_URI, namety, bo, poseq, eqproof) ->
419         let eqproof' = replace_proof newproof eqproof in
420         ProofBlock (subst, eq_URI, namety, bo, poseq, eqproof')
421     | ProofGoalBlock (pb, p) ->
422         let pb' = replace_proof newproof pb in
423         ProofGoalBlock (pb', p)
424     | BasicProof _ -> newproof
425     | SubProof (term, meta_index, p) ->
426         SubProof (term, meta_index, replace_proof newproof p)
427     | p -> p
428   in
429   do_build_proof proof 
430 ;;
431
432 let mk_sym uri ty t1 t2 p =
433   let ens, args =  build_ens uri [ty;t1;t2;p] in
434     Cic.Appl (Cic.Const(uri, ens) :: args)
435 ;;
436
437 let mk_trans uri ty t1 t2 t3 p12 p23 =
438   let ens, args = build_ens uri [ty;t1;t2;t3;p12;p23] in
439     Cic.Appl (Cic.Const (uri, ens) :: args)
440 ;;
441
442 let mk_eq_ind uri ty what pred p1 other p2 =
443  Cic.Appl [Cic.Const (uri, []); ty; what; pred; p1; other; p2]
444 ;;
445
446 let p_of_sym ens tl =
447   let args = List.map snd ens @ tl in
448   match args with 
449     | [_;_;_;p] -> p 
450     | _ -> assert false 
451 ;;
452
453 let open_trans ens tl =
454   let args = List.map snd ens @ tl in
455   match args with 
456     | [ty;l;m;r;p1;p2] -> ty,l,m,r,p1,p2
457     | _ -> assert false   
458 ;;
459
460 let canonical t = 
461   let rec remove_refl t =
462     match t with
463     | Cic.Appl (((Cic.Const(uri_trans,ens))::tl) as args)
464           when LibraryObjects.is_trans_eq_URI uri_trans ->
465           let ty,l,m,r,p1,p2 = open_trans ens tl in
466             (match p1,p2 with
467               | Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_],p2 -> 
468                   remove_refl p2
469               | p1,Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_] -> 
470                   remove_refl p1
471               | _ -> Cic.Appl (List.map remove_refl args))
472     | Cic.Appl l -> Cic.Appl (List.map remove_refl l)
473     | _ -> t
474   in
475   let rec canonical t =
476     match t with
477       | Cic.Appl (((Cic.Const(uri_sym,ens))::tl) as args)
478           when LibraryObjects.is_sym_eq_URI uri_sym ->
479           (match p_of_sym ens tl with
480              | Cic.Appl ((Cic.Const(uri,ens))::tl)
481                  when LibraryObjects.is_sym_eq_URI uri -> 
482                    canonical (p_of_sym ens tl)
483              | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
484                  when LibraryObjects.is_trans_eq_URI uri_trans ->
485                  let ty,l,m,r,p1,p2 = open_trans ens tl in
486                    mk_trans uri_trans ty r m l 
487                      (canonical (mk_sym uri_sym ty m r p2)) 
488                      (canonical (mk_sym uri_sym ty l m p1))
489              | Cic.Appl (((Cic.Const(uri_ind,ens)) as he)::tl) 
490                  when LibraryObjects.is_eq_ind_URI uri_ind || 
491                       LibraryObjects.is_eq_ind_r_URI uri_ind ->
492                  let ty, what, pred, p1, other, p2 =
493                    match tl with
494                    | [ty;what;pred;p1;other;p2] -> ty, what, pred, p1, other, p2
495                    | _ -> assert false
496                  in
497                  let pred,l,r = 
498                    match pred with
499                    | Cic.Lambda (name,s,Cic.Appl [Cic.MutInd(uri,0,ens);ty;l;r])
500                        when LibraryObjects.is_eq_URI uri ->
501                          Cic.Lambda 
502                            (name,s,Cic.Appl [Cic.MutInd(uri,0,ens);ty;r;l]),l,r
503                    | _ -> 
504                        prerr_endline (CicPp.ppterm pred);
505                        assert false
506                  in
507                  let l = CicSubstitution.subst what l in
508                  let r = CicSubstitution.subst what r in
509                  Cic.Appl 
510                    [he;ty;what;pred;
511                     canonical (mk_sym uri_sym ty l r p1);other;canonical p2]
512              | Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_] as t
513                  when LibraryObjects.is_eq_URI uri -> t
514              | _ -> Cic.Appl (List.map canonical args))
515       | Cic.Appl l -> Cic.Appl (List.map canonical l)
516       | _ -> t
517   in
518   remove_refl (canonical t)  
519 ;;
520
521 let build_proof_step subst p1 p2 pos l r pred =
522   let p1 = apply_subst subst p1 in
523   let p2 = apply_subst subst p2 in
524   let l = apply_subst subst l in
525   let r = apply_subst subst r in
526   let pred = apply_subst subst pred in
527   let ty,body = (* Cic.Implicit None *) 
528     match pred with
529       | Cic.Lambda (_,ty,body) -> ty,body 
530       | _ -> assert false
531   in
532   let what, other = (* Cic.Implicit None, Cic.Implicit None *)
533     if pos = Utils.Left then l,r else r,l
534   in
535   let is_not_fixed t =
536    CicSubstitution.subst (Cic.Implicit None) t <>
537    CicSubstitution.subst (Cic.Rel 1) t
538   in
539     match body,pos with
540       |Cic.Appl [Cic.MutInd(eq,_,_);_;Cic.Rel 1;third],Utils.Left ->
541          let third = CicSubstitution.subst (Cic.Implicit None) third in
542          let uri_trans = LibraryObjects.trans_eq_URI ~eq in
543          let uri_sym = LibraryObjects.sym_eq_URI ~eq in
544            mk_trans uri_trans ty other what third
545             (mk_sym uri_sym ty what other p2) p1
546       |Cic.Appl [Cic.MutInd(eq,_,_);_;Cic.Rel 1;third],Utils.Right ->
547          let third = CicSubstitution.subst (Cic.Implicit None) third in
548          let uri_trans = LibraryObjects.trans_eq_URI ~eq in
549            mk_trans uri_trans ty other what third p2 p1
550       |Cic.Appl [Cic.MutInd(eq,_,_);_;third;Cic.Rel 1],Utils.Left -> 
551          let third = CicSubstitution.subst (Cic.Implicit None) third in
552          let uri_trans = LibraryObjects.trans_eq_URI ~eq in
553            mk_trans uri_trans ty third what other p1 p2  
554       |Cic.Appl [Cic.MutInd(eq,_,_);_;third;Cic.Rel 1],Utils.Right -> 
555          let third = CicSubstitution.subst (Cic.Implicit None) third in
556          let uri_trans = LibraryObjects.trans_eq_URI ~eq in
557          let uri_sym = LibraryObjects.sym_eq_URI ~eq in
558            mk_trans uri_trans ty third what other p1
559             (mk_sym uri_sym ty other what p2)
560       | Cic.Appl [Cic.MutInd(eq,_,_);_;lhs;rhs],Utils.Left when is_not_fixed lhs
561         ->
562           let rhs = CicSubstitution.subst (Cic.Implicit None) rhs in
563           let uri_trans = LibraryObjects.trans_eq_URI ~eq in
564           let pred_of t = CicSubstitution.subst t lhs in
565           let pred_of_what = pred_of what in
566           let pred_of_other = pred_of other in
567           (*           p2 : what = other
568            * ====================================
569            *  inject p2:  P(what) = P(other)
570            *)
571           let rec inject ty lhs what other p2 =
572            match p2 with
573            | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
574                when LibraryObjects.is_trans_eq_URI uri_trans ->
575                let ty,l,m,r,plm,pmr = open_trans ens tl in
576                mk_trans uri_trans ty (pred_of r) (pred_of m) (pred_of l)
577                  (inject ty lhs m r pmr) (inject ty lhs l m plm)
578            | _ -> 
579            let liftedty = CicSubstitution.lift 1 ty in
580            let lifted_pred_of_other = CicSubstitution.lift 1 (pred_of other) in
581            let refl_eq_part =
582             Cic.Appl [Cic.MutConstruct(eq,0,1,[]);ty;pred_of other]
583            in
584             (mk_eq_ind (Utils.eq_ind_r_URI ()) ty other
585              (Cic.Lambda (Cic.Name "foo",ty,
586                (Cic.Appl
587                [Cic.MutInd(eq,0,[]);liftedty;lifted_pred_of_other;lhs])))
588                 refl_eq_part what p2)
589           in
590            mk_trans uri_trans ty pred_of_other pred_of_what rhs
591              (inject ty lhs what other p2) p1
592       | Cic.Appl[Cic.MutInd(eq,_,_);_;lhs;rhs],Utils.Right when is_not_fixed lhs
593         ->
594           let rhs = CicSubstitution.subst (Cic.Implicit None) rhs in
595           let uri_trans = LibraryObjects.trans_eq_URI ~eq in
596           let pred_of t = CicSubstitution.subst t lhs in
597           let pred_of_what = pred_of what in
598           let pred_of_other = pred_of other in
599           (*           p2 : what = other
600            * ====================================
601            *  inject p2:  P(what) = P(other)
602            *)
603           let rec inject ty lhs what other p2 =
604            match p2 with
605            | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
606                when LibraryObjects.is_trans_eq_URI uri_trans ->
607                let ty,l,m,r,plm,pmr = open_trans ens tl in
608                mk_trans uri_trans ty (pred_of l) (pred_of m) (pred_of r)
609                  (inject ty lhs m l plm)
610                  (inject ty lhs r m pmr)
611            | _ ->
612              let liftedty = CicSubstitution.lift 1 ty in
613              let lifted_pred_of_other = 
614                CicSubstitution.lift 1 (pred_of other) in
615              let refl_eq_part =
616               Cic.Appl [Cic.MutConstruct(eq,0,1,[]);ty;pred_of other]
617              in
618               mk_eq_ind (Utils.eq_ind_URI ()) ty other
619                (Cic.Lambda (Cic.Name "foo",ty,
620                  (Cic.Appl
621                  [Cic.MutInd(eq,0,[]);liftedty;lifted_pred_of_other;lhs])))
622                   refl_eq_part what p2
623           in
624            mk_trans uri_trans ty pred_of_other pred_of_what rhs
625             (inject ty lhs what other p2) p1
626       | Cic.Appl[Cic.MutInd(eq,_,_);_;lhs;rhs],Utils.Right when is_not_fixed rhs
627         ->
628           let lhs = CicSubstitution.subst (Cic.Implicit None) lhs in
629           let uri_trans = LibraryObjects.trans_eq_URI ~eq in
630           let pred_of t = CicSubstitution.subst t rhs in
631           let pred_of_what = pred_of what in
632           let pred_of_other = pred_of other in
633           (*           p2 : what = other
634            * ====================================
635            *  inject p2:  P(what) = P(other)
636            *)
637           let rec inject ty lhs what other p2 =
638            match p2 with
639            | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
640                when LibraryObjects.is_trans_eq_URI uri_trans ->
641                let ty,l,m,r,plm,pmr = open_trans ens tl in
642                  mk_trans uri_trans ty (pred_of r) (pred_of m) (pred_of l)
643                    (inject ty lhs m r pmr)
644                    (inject ty lhs l m plm)
645            | _ ->
646            let liftedty = CicSubstitution.lift 1 ty in
647            let lifted_pred_of_other = CicSubstitution.lift 1 (pred_of other) in
648            let refl_eq_part =
649             Cic.Appl [Cic.MutConstruct(eq,0,1,[]);ty;pred_of other]
650            in
651             (mk_eq_ind (Utils.eq_ind_r_URI ()) ty other
652              (Cic.Lambda (Cic.Name "foo",ty,
653                (Cic.Appl
654                [Cic.MutInd(eq,0,[]);liftedty;lifted_pred_of_other;lhs])))
655                 refl_eq_part what p2)
656           in
657            mk_trans uri_trans ty lhs pred_of_what pred_of_other
658              p1 (inject ty rhs other what p2)
659       | Cic.Appl[Cic.MutInd(eq,_,_);_;lhs;rhs],Utils.Left when is_not_fixed rhs
660         ->
661           let lhs = CicSubstitution.subst (Cic.Implicit None) lhs in
662           let uri_trans = LibraryObjects.trans_eq_URI ~eq in
663           let pred_of t = CicSubstitution.subst t rhs in
664           let pred_of_what = pred_of what in
665           let pred_of_other = pred_of other in
666           (*           p2 : what = other
667            * ====================================
668            *  inject p2:  P(what) = P(other)
669            *)
670           let rec inject ty lhs what other p2 =
671            match p2 with
672            | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
673                when LibraryObjects.is_trans_eq_URI uri_trans ->
674                let ty,l,m,r,plm,pmr = open_trans ens tl in
675                  (mk_trans uri_trans ty (pred_of l) (pred_of m) (pred_of r)
676                    (inject ty lhs m l plm)
677                    (inject ty lhs r m pmr))
678            | _ ->
679            let liftedty = CicSubstitution.lift 1 ty in
680            let lifted_pred_of_other = CicSubstitution.lift 1 (pred_of other) in
681            let refl_eq_part =
682             Cic.Appl [Cic.MutConstruct(eq,0,1,[]);ty;pred_of other]
683            in
684             mk_eq_ind (Utils.eq_ind_URI ()) ty other
685              (Cic.Lambda (Cic.Name "foo",ty,
686                (Cic.Appl
687                [Cic.MutInd(eq,0,[]);liftedty;lifted_pred_of_other;lhs])))
688                 refl_eq_part what p2
689           in
690            mk_trans uri_trans ty lhs pred_of_what pred_of_other 
691              p1 (inject ty rhs other what p2)
692       | _, Utils.Left ->
693         mk_eq_ind (Utils.eq_ind_URI ()) ty what pred p1 other p2
694       | _, Utils.Right ->
695         mk_eq_ind (Utils.eq_ind_r_URI ()) ty what pred p1 other p2
696 ;;
697
698 let build_proof_term_new proof =
699   let rec aux = function
700      | Exact term -> term
701      | Step (subst,(_, id1, (pos,id2), pred)) ->
702          let p,_,_ = proof_of_id id1 in
703          let p1 = aux p in
704          let p,l,r = proof_of_id id2 in
705          let p2 = aux p in
706            build_proof_step subst p1 p2 pos l r pred
707   in
708    aux proof
709 ;;
710
711 let wfo goalproof =
712   let rec aux acc id =
713     let p,_,_ = proof_of_id id in
714     match p with
715     | Exact _ -> if (List.mem id acc) then acc else id :: acc
716     | Step (_,(_,id1, (_,id2), _)) -> 
717         let acc = if not (List.mem id1 acc) then aux acc id1 else acc in
718         let acc = if not (List.mem id2 acc) then aux acc id2 else acc in
719         id :: acc
720   in
721   List.fold_left (fun acc (_,id,_,_) -> aux acc id) [] goalproof
722 ;;
723
724 let string_of_id names id = 
725   try
726     let (_,(p,_),(_,l,r,_),_,_) = open_equality (Hashtbl.find id_to_eq id) in
727     match p with
728     | Exact t -> 
729         Printf.sprintf "%d = %s: %s = %s" id
730           (CicPp.pp t names) (CicPp.pp l names) (CicPp.pp r names)
731     | Step (_,(step,id1, (_,id2), _) ) ->
732         Printf.sprintf "%6d: %s %6d %6d   %s = %s" id
733           (if step = SuperpositionRight then "SupR" else "Demo") 
734           id1 id2 (CicPp.pp l names) (CicPp.pp r names)
735   with
736       Not_found -> assert false
737
738 let pp_proof names goalproof =
739   String.concat "\n" (List.map (string_of_id names) (wfo goalproof)) ^ 
740   "\ngoal is demodulated with " ^ 
741     (String.concat " " 
742       ((List.map (fun (_,i,_,_) -> string_of_int i) goalproof)))
743 ;;
744
745 let build_goal_proof l initial =
746   let proof = 
747    List.fold_left 
748    (fun  current_proof (pos,id,subst,pred) -> 
749       let p,l,r = proof_of_id id in
750       let p = build_proof_term_new p in
751       let pos = if pos = Utils.Left then Utils.Right else Utils.Left in
752         build_proof_step subst current_proof p pos l r pred)
753    initial l
754   in
755   canonical proof
756 ;;
757
758 let refl_proof ty term = 
759   Cic.Appl 
760     [Cic.MutConstruct 
761        (LibraryObjects.eq_URI (), 0, 1, []);
762        ty; term]
763 ;;
764
765 let metas_of_proof p = Utils.metas_of_term (build_proof_term_old (snd p)) ;;
766
767 let relocate newmeta menv =
768   let subst, metasenv, newmeta = 
769     List.fold_right 
770       (fun (i, context, ty) (subst, menv, maxmeta) ->         
771         let irl = [] (*
772          CicMkImplicit.identity_relocation_list_for_metavariable context *)
773         in
774         let newsubst = buildsubst i context (Cic.Meta(maxmeta,irl)) ty subst in
775         let newmeta = maxmeta, context, ty in
776         newsubst, newmeta::menv, maxmeta+1) 
777       menv ([], [], newmeta+1)
778   in
779   let metasenv = apply_subst_metasenv subst metasenv in
780   let subst = flatten_subst subst in
781   subst, metasenv, newmeta
782
783
784 let fix_metas newmeta eq = 
785   let w, (p1,p2), (ty, left, right, o), menv,_ = open_equality eq in
786   (* debug 
787   let _ , eq = 
788     fix_metas_old newmeta (w, p, (ty, left, right, o), menv, args) in
789   prerr_endline (string_of_equality eq); *)
790   let subst, metasenv, newmeta = relocate newmeta menv in
791   let ty = apply_subst subst ty in
792   let left = apply_subst subst left in
793   let right = apply_subst subst right in
794   let fix_proof = function
795     | NoProof -> NoProof 
796     | BasicProof (subst',term) -> BasicProof (subst@subst',term)
797     | ProofBlock (subst', eq_URI, namety, bo, (pos, eq), p) ->
798         (*
799         let newsubst = 
800           List.map
801             (fun (i, (context, term, ty)) ->
802                let context = apply_subst_context subst context in
803                let term = apply_subst subst term in
804                let ty = apply_subst subst ty in  
805                  (i, (context, term, ty))) subst' in *)
806           ProofBlock (subst@subst', eq_URI, namety, bo, (pos, eq), p)
807     | p -> assert false
808   in
809   let fix_new_proof = function
810     | Exact p -> Exact (apply_subst subst p)
811     | Step (s,(r,id1,(pos,id2),pred)) -> 
812         Step (s@subst,(r,id1,(pos,id2),(*apply_subst subst*) pred))
813   in
814   let new_p = fix_new_proof p1 in
815   let old_p = fix_proof p2 in
816   let eq = mk_equality (w, (new_p,old_p), (ty, left, right, o), metasenv) in
817   (* debug prerr_endline (string_of_equality eq); *)
818   newmeta+1, eq  
819
820 exception NotMetaConvertible;;
821
822 let meta_convertibility_aux table t1 t2 =
823   let module C = Cic in
824   let rec aux ((table_l, table_r) as table) t1 t2 =
825     match t1, t2 with
826     | C.Meta (m1, tl1), C.Meta (m2, tl2) ->
827         let m1_binding, table_l =
828           try List.assoc m1 table_l, table_l
829           with Not_found -> m2, (m1, m2)::table_l
830         and m2_binding, table_r =
831           try List.assoc m2 table_r, table_r
832           with Not_found -> m1, (m2, m1)::table_r
833         in
834         if (m1_binding <> m2) || (m2_binding <> m1) then
835           raise NotMetaConvertible
836         else (
837           try
838             List.fold_left2
839               (fun res t1 t2 ->
840                  match t1, t2 with
841                  | None, Some _ | Some _, None -> raise NotMetaConvertible
842                  | None, None -> res
843                  | Some t1, Some t2 -> (aux res t1 t2))
844               (table_l, table_r) tl1 tl2
845           with Invalid_argument _ ->
846             raise NotMetaConvertible
847         )
848     | C.Var (u1, ens1), C.Var (u2, ens2)
849     | C.Const (u1, ens1), C.Const (u2, ens2) when (UriManager.eq u1 u2) ->
850         aux_ens table ens1 ens2
851     | C.Cast (s1, t1), C.Cast (s2, t2)
852     | C.Prod (_, s1, t1), C.Prod (_, s2, t2)
853     | C.Lambda (_, s1, t1), C.Lambda (_, s2, t2)
854     | C.LetIn (_, s1, t1), C.LetIn (_, s2, t2) ->
855         let table = aux table s1 s2 in
856         aux table t1 t2
857     | C.Appl l1, C.Appl l2 -> (
858         try List.fold_left2 (fun res t1 t2 -> (aux res t1 t2)) table l1 l2
859         with Invalid_argument _ -> raise NotMetaConvertible
860       )
861     | C.MutInd (u1, i1, ens1), C.MutInd (u2, i2, ens2)
862         when (UriManager.eq u1 u2) && i1 = i2 -> aux_ens table ens1 ens2
863     | C.MutConstruct (u1, i1, j1, ens1), C.MutConstruct (u2, i2, j2, ens2)
864         when (UriManager.eq u1 u2) && i1 = i2 && j1 = j2 ->
865         aux_ens table ens1 ens2
866     | C.MutCase (u1, i1, s1, t1, l1), C.MutCase (u2, i2, s2, t2, l2)
867         when (UriManager.eq u1 u2) && i1 = i2 ->
868         let table = aux table s1 s2 in
869         let table = aux table t1 t2 in (
870           try List.fold_left2 (fun res t1 t2 -> (aux res t1 t2)) table l1 l2
871           with Invalid_argument _ -> raise NotMetaConvertible
872         )
873     | C.Fix (i1, il1), C.Fix (i2, il2) when i1 = i2 -> (
874         try
875           List.fold_left2
876             (fun res (n1, i1, s1, t1) (n2, i2, s2, t2) ->
877                if i1 <> i2 then raise NotMetaConvertible
878                else
879                  let res = (aux res s1 s2) in aux res t1 t2)
880             table il1 il2
881         with Invalid_argument _ -> raise NotMetaConvertible
882       )
883     | C.CoFix (i1, il1), C.CoFix (i2, il2) when i1 = i2 -> (
884         try
885           List.fold_left2
886             (fun res (n1, s1, t1) (n2, s2, t2) ->
887                let res = aux res s1 s2 in aux res t1 t2)
888             table il1 il2
889         with Invalid_argument _ -> raise NotMetaConvertible
890       )
891     | t1, t2 when t1 = t2 -> table
892     | _, _ -> raise NotMetaConvertible
893         
894   and aux_ens table ens1 ens2 =
895     let cmp (u1, t1) (u2, t2) =
896       Pervasives.compare (UriManager.string_of_uri u1) (UriManager.string_of_uri u2)
897     in
898     let ens1 = List.sort cmp ens1
899     and ens2 = List.sort cmp ens2 in
900     try
901       List.fold_left2
902         (fun res (u1, t1) (u2, t2) ->
903            if not (UriManager.eq u1 u2) then raise NotMetaConvertible
904            else aux res t1 t2)
905         table ens1 ens2
906     with Invalid_argument _ -> raise NotMetaConvertible
907   in
908   aux table t1 t2
909 ;;
910
911
912 let meta_convertibility_eq eq1 eq2 =
913   let _, _, (ty, left, right, _), _,_ = open_equality eq1 in
914   let _, _, (ty', left', right', _), _,_ = open_equality eq2 in
915   if ty <> ty' then
916     false
917   else if (left = left') && (right = right') then
918     true
919   else if (left = right') && (right = left') then
920     true
921   else
922     try
923       let table = meta_convertibility_aux ([], []) left left' in
924       let _ = meta_convertibility_aux table right right' in
925       true
926     with NotMetaConvertible ->
927       try
928         let table = meta_convertibility_aux ([], []) left right' in
929         let _ = meta_convertibility_aux table right left' in
930         true
931       with NotMetaConvertible ->
932         false
933 ;;
934
935
936 let meta_convertibility t1 t2 =
937   if t1 = t2 then
938     true
939   else
940     try
941       ignore(meta_convertibility_aux ([], []) t1 t2);
942       true
943     with NotMetaConvertible ->
944       false
945 ;;
946
947 exception TermIsNotAnEquality;;
948
949 let term_is_equality term =
950   let iseq uri = UriManager.eq uri (LibraryObjects.eq_URI ()) in
951   match term with
952   | Cic.Appl [Cic.MutInd (uri, _, _); _; _; _] when iseq uri -> true
953   | _ -> false
954 ;;
955
956 let equality_of_term proof term =
957   let eq_uri = LibraryObjects.eq_URI () in
958   let iseq uri = UriManager.eq uri eq_uri in
959   match term with
960   | Cic.Appl [Cic.MutInd (uri, _, _); ty; t1; t2] when iseq uri ->
961       let o = !Utils.compare_terms t1 t2 in
962       let stat = (ty,t1,t2,o) in
963       let w = Utils.compute_equality_weight stat in
964       let e = mk_equality (w, (Exact proof, BasicProof ([],proof)),stat,[]) in
965       e
966   | _ ->
967       raise TermIsNotAnEquality
968 ;;
969
970 let is_weak_identity eq = 
971   let _,_,(_,left, right,_),_,_ = open_equality eq in
972   left = right || meta_convertibility left right 
973 ;;
974
975 let is_identity (_, context, ugraph) eq = 
976   let _,_,(ty,left,right,_),menv,_ = open_equality eq in
977   left = right ||
978   (* (meta_convertibility left right)) *)
979   fst (CicReduction.are_convertible ~metasenv:menv context left right ugraph)
980 ;;
981
982
983 let term_of_equality equality =
984   let _, _, (ty, left, right, _), menv, _= open_equality equality in
985   let eq i = function Cic.Meta (j, _) -> i = j | _ -> false in
986   let argsno = List.length menv in
987   let t =
988     CicSubstitution.lift argsno
989       (Cic.Appl [Cic.MutInd (LibraryObjects.eq_URI (), 0, []); ty; left; right])
990   in
991   snd (
992     List.fold_right
993       (fun (i,_,ty) (n, t) ->
994          let name = Cic.Name ("X" ^ (string_of_int n)) in
995          let ty = CicSubstitution.lift (n-1) ty in
996          let t = 
997            ProofEngineReduction.replace
998              ~equality:eq ~what:[i]
999              ~with_what:[Cic.Rel (argsno - (n - 1))] ~where:t
1000          in
1001            (n-1, Cic.Prod (name, ty, t)))
1002       menv (argsno, t))
1003 ;;
1004