]> matita.cs.unibo.it Git - helm.git/blob - components/tactics/paramodulation/equality.ml
- code cleanup, especialli in Indexing where all the goal related functions have
[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 type rule = SuperpositionRight | SuperpositionLeft | Demodulation
29 type uncomparable = int -> int 
30 type equality =
31     uncomparable *       (* trick to break structural equality *)
32     int  *               (* weight *)
33     proof * 
34     (Cic.term *          (* type *)
35      Cic.term *          (* left side *)
36      Cic.term *          (* right side *)
37      Utils.comparison) * (* ordering *)  
38     Cic.metasenv  *      (* environment for metas *)
39     int                  (* id *)
40 and proof = 
41   | Exact of Cic.term
42   | Step of Subst.substitution * (rule * int*(Utils.pos*int)* Cic.term) 
43             (* subst, (rule,eq1, eq2,predicate) *)  
44 and goal_proof = (Utils.pos * int * Subst.substitution * Cic.term) list
45 ;;
46
47 (* globals *)
48 let maxid = ref 0;;
49 let id_to_eq = Hashtbl.create 1024;;
50
51 let freshid () =
52   incr maxid; !maxid
53 ;;
54
55 let reset () = 
56   maxid := 0;
57   Hashtbl.clear  id_to_eq
58 ;;
59
60 let uncomparable = fun _ -> 0
61
62 let mk_equality (weight,p,(ty,l,r,o),m) =
63   let id = freshid () in
64   let eq = (uncomparable,weight,p,(ty,l,r,o),m,id) in
65   Hashtbl.add id_to_eq id eq;
66   eq
67 ;;
68
69 let mk_tmp_equality (weight,(ty,l,r,o),m) =
70   let id = -1 in
71   uncomparable,weight,Exact (Cic.Implicit None),(ty,l,r,o),m,id
72 ;;
73
74
75 let open_equality (_,weight,proof,(ty,l,r,o),m,id) = 
76   (weight,proof,(ty,l,r,o),m,id)
77
78 let string_of_equality ?env eq =
79   match env with
80   | None ->
81       let w, _, (ty, left, right, o), _ , id = open_equality eq in
82       Printf.sprintf "Id: %d, Weight: %d, {%s}: %s =(%s) %s" 
83               id w (CicPp.ppterm ty)
84               (CicPp.ppterm left) 
85               (Utils.string_of_comparison o) (CicPp.ppterm right)
86   | Some (_, context, _) -> 
87       let names = Utils.names_of_context context in
88       let w, _, (ty, left, right, o), _ , id = open_equality eq in
89       Printf.sprintf "Id: %d, Weight: %d, {%s}: %s =(%s) %s" 
90               id w (CicPp.pp ty names)
91               (CicPp.pp left names) (Utils.string_of_comparison o)
92               (CicPp.pp right names)
93 ;;
94
95 let compare (_,_,_,s1,_,_) (_,_,_,s2,_,_) =
96   Pervasives.compare s1 s2
97 ;;
98
99 let proof_of_id id =
100   try
101     let (_,p,(_,l,r,_),_,_) = open_equality (Hashtbl.find id_to_eq id) in
102       p,l,r
103   with
104       Not_found -> assert false
105
106
107 let string_of_proof ?(names=[]) p gp = 
108   let str_of_rule = function
109     | SuperpositionRight -> "SupR"
110     | SuperpositionLeft -> "SupL"
111     | Demodulation -> "Demod"
112   in
113   let str_of_pos = function
114     | Utils.Left -> "left"
115     | Utils.Right -> "right"
116   in
117   let fst3 (x,_,_) = x in
118   let rec aux margin name = 
119     let prefix = String.make margin ' ' ^ name ^ ": " in function 
120     | Exact t -> 
121         Printf.sprintf "%sExact (%s)\n" 
122           prefix (CicPp.pp t names)
123     | Step (subst,(rule,eq1,(pos,eq2),pred)) -> 
124         Printf.sprintf "%s%s(%s|%d with %d dir %s pred %s))\n"
125           prefix (str_of_rule rule) (Subst.ppsubst ~names subst) eq1 eq2 (str_of_pos pos) 
126           (CicPp.pp pred names)^ 
127         aux (margin+1) (Printf.sprintf "%d" eq1) (fst3 (proof_of_id eq1)) ^ 
128         aux (margin+1) (Printf.sprintf "%d" eq2) (fst3 (proof_of_id eq2)) 
129   in
130   aux 0 "" p ^ 
131   String.concat "\n" 
132     (List.map 
133       (fun (pos,i,s,t) -> 
134         (Printf.sprintf 
135           "GOAL: %s %d %s %s\n" 
136             (str_of_pos pos) i (Subst.ppsubst ~names s) (CicPp.pp t names)) ^ 
137         aux 1 (Printf.sprintf "%d " i) (fst3 (proof_of_id i)))
138       gp)
139 ;;
140
141 let rec depend eq id =
142   let (_,p,(_,_,_,_),_,ideq) = open_equality eq in
143   if id = ideq then true else  
144   match p with
145       Exact _ -> false
146     | Step (_,(_,id1,(_,id2),_)) ->
147         let eq1 = Hashtbl.find id_to_eq id1 in
148         let eq2 = Hashtbl.find id_to_eq id2 in  
149         depend eq1 id || depend eq2 id
150 ;;
151
152 let ppsubst = Subst.ppsubst ~names:[];;
153
154 (* returns an explicit named subst and a list of arguments for sym_eq_URI *)
155 let build_ens uri termlist =
156   let obj, _ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
157   match obj with
158   | Cic.Constant (_, _, _, uris, _) ->
159       assert (List.length uris <= List.length termlist);
160       let rec aux = function
161         | [], tl -> [], tl
162         | (uri::uris), (term::tl) ->
163             let ens, args = aux (uris, tl) in
164             (uri, term)::ens, args
165         | _, _ -> assert false
166       in
167       aux (uris, termlist)
168   | _ -> assert false
169 ;;
170
171 let mk_sym uri ty t1 t2 p =
172   let ens, args =  build_ens uri [ty;t1;t2;p] in
173     Cic.Appl (Cic.Const(uri, ens) :: args)
174 ;;
175
176 let mk_trans uri ty t1 t2 t3 p12 p23 =
177   let ens, args = build_ens uri [ty;t1;t2;t3;p12;p23] in
178     Cic.Appl (Cic.Const (uri, ens) :: args)
179 ;;
180
181 let mk_eq_ind uri ty what pred p1 other p2 =
182  Cic.Appl [Cic.Const (uri, []); ty; what; pred; p1; other; p2]
183 ;;
184
185 let p_of_sym ens tl =
186   let args = List.map snd ens @ tl in
187   match args with 
188     | [_;_;_;p] -> p 
189     | _ -> assert false 
190 ;;
191
192 let open_trans ens tl =
193   let args = List.map snd ens @ tl in
194   match args with 
195     | [ty;l;m;r;p1;p2] -> ty,l,m,r,p1,p2
196     | _ -> assert false   
197 ;;
198
199 let open_eq_ind args =
200   match args with 
201   | [ty;l;pred;pl;r;pleqr] -> ty,l,pred,pl,r,pleqr
202   | _ -> assert false   
203 ;;
204
205 let open_pred pred =
206   match pred with 
207   | Cic.Lambda (_,ty,(Cic.Appl [Cic.MutInd (uri, 0,_);_;l;r])) 
208      when LibraryObjects.is_eq_URI uri -> ty,uri,l,r
209   | _ -> prerr_endline (CicPp.ppterm pred); assert false   
210 ;;
211
212 let is_not_fixed t =
213    CicSubstitution.subst (Cic.Implicit None) t <>
214    CicSubstitution.subst (Cic.Rel 1) t
215 ;;
216
217
218 let canonical t = 
219   let rec remove_refl t =
220     match t with
221     | Cic.Appl (((Cic.Const(uri_trans,ens))::tl) as args)
222           when LibraryObjects.is_trans_eq_URI uri_trans ->
223           let ty,l,m,r,p1,p2 = open_trans ens tl in
224             (match p1,p2 with
225               | Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_],p2 -> 
226                   remove_refl p2
227               | p1,Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_] -> 
228                   remove_refl p1
229               | _ -> Cic.Appl (List.map remove_refl args))
230     | Cic.Appl l -> Cic.Appl (List.map remove_refl l)
231     | Cic.LetIn (name,bo,rest) ->
232         Cic.LetIn (name,remove_refl bo,remove_refl rest)
233     | _ -> t
234   in
235   let rec canonical t =
236     match t with
237       | Cic.LetIn(name,bo,rest) -> Cic.LetIn(name,canonical bo,canonical rest)
238       | Cic.Appl (((Cic.Const(uri_sym,ens))::tl) as args)
239           when LibraryObjects.is_sym_eq_URI uri_sym ->
240           (match p_of_sym ens tl with
241              | Cic.Appl ((Cic.Const(uri,ens))::tl)
242                  when LibraryObjects.is_sym_eq_URI uri -> 
243                    canonical (p_of_sym ens tl)
244              | Cic.Appl ((Cic.Const(uri_trans,ens))::tl)
245                  when LibraryObjects.is_trans_eq_URI uri_trans ->
246                  let ty,l,m,r,p1,p2 = open_trans ens tl in
247                    mk_trans uri_trans ty r m l 
248                      (canonical (mk_sym uri_sym ty m r p2)) 
249                      (canonical (mk_sym uri_sym ty l m p1))
250              | Cic.Appl (((Cic.Const(uri_ind,ens)) as he)::tl) 
251                  when LibraryObjects.is_eq_ind_URI uri_ind || 
252                       LibraryObjects.is_eq_ind_r_URI uri_ind ->
253                  let ty, what, pred, p1, other, p2 =
254                    match tl with
255                    | [ty;what;pred;p1;other;p2] -> ty, what, pred, p1, other, p2
256                    | _ -> assert false
257                  in
258                  let pred,l,r = 
259                    match pred with
260                    | Cic.Lambda (name,s,Cic.Appl [Cic.MutInd(uri,0,ens);ty;l;r])
261                        when LibraryObjects.is_eq_URI uri ->
262                          Cic.Lambda 
263                            (name,s,Cic.Appl [Cic.MutInd(uri,0,ens);ty;r;l]),l,r
264                    | _ -> 
265                        prerr_endline (CicPp.ppterm pred);
266                        assert false
267                  in
268                  let l = CicSubstitution.subst what l in
269                  let r = CicSubstitution.subst what r in
270                  Cic.Appl 
271                    [he;ty;what;pred;
272                     canonical (mk_sym uri_sym ty l r p1);other;canonical p2]
273              | Cic.Appl [Cic.MutConstruct (uri, 0, 1,_);_;_] as t
274                  when LibraryObjects.is_eq_URI uri -> t
275              | _ -> Cic.Appl (List.map canonical args))
276       | Cic.Appl l -> Cic.Appl (List.map canonical l)
277       | _ -> t
278   in
279   remove_refl (canonical t)
280 ;;
281   
282 let ty_of_lambda = function
283   | Cic.Lambda (_,ty,_) -> ty
284   | _ -> assert false 
285 ;;
286
287 let compose_contexts ctx1 ctx2 = 
288   ProofEngineReduction.replace_lifting 
289     ~equality:(=) ~what:[Cic.Rel 1] ~with_what:[ctx2] ~where:ctx1
290 ;;
291
292 let put_in_ctx ctx t = 
293   ProofEngineReduction.replace_lifting
294     ~equality:(=) ~what:[Cic.Rel 1] ~with_what:[t] ~where:ctx
295 ;;
296
297 let mk_eq uri ty l r =
298   Cic.Appl [Cic.MutInd(uri,0,[]);ty;l;r]
299 ;;
300
301 let mk_refl uri ty t = 
302   Cic.Appl [Cic.MutConstruct(uri,0,1,[]);ty;t]
303 ;;
304
305 let open_eq = function 
306   | Cic.Appl [Cic.MutInd(uri,0,[]);ty;l;r] when LibraryObjects.is_eq_URI uri ->
307       uri, ty, l ,r
308   | _ -> assert false
309 ;;
310
311 let contextualize uri ty left right t = 
312   (* aux [uri] [ty] [left] [right] [ctx] [t] 
313    * 
314    * the parameters validate this invariant  
315    *   t: eq(uri) ty left right
316    * that is used only by the base case
317    *
318    * ctx is a term with an open (Rel 1). (Rel 1) is the empty context
319    *)
320     let rec aux uri ty left right ctx_d = function
321       | Cic.LetIn (name,body,rest) ->
322           (* we should go in body *)
323           Cic.LetIn (name,body,aux uri ty left right ctx_d rest)
324       | Cic.Appl ((Cic.Const(uri_ind,ens))::tl)
325         when LibraryObjects.is_eq_ind_URI uri_ind || 
326              LibraryObjects.is_eq_ind_r_URI uri_ind ->
327           let ty1,what,pred,p1,other,p2 = open_eq_ind tl in
328           let ty2,eq,lp,rp = open_pred pred in 
329           let uri_trans = LibraryObjects.trans_eq_URI ~eq:uri in
330           let uri_sym = LibraryObjects.sym_eq_URI ~eq:uri in
331           let is_not_fixed_lp = is_not_fixed lp in
332           let avoid_eq_ind = LibraryObjects.is_eq_ind_URI uri_ind in
333           (* extract the context and the fixed term from the predicate *)
334           let m, ctx_c = 
335             let m, ctx_c = if is_not_fixed_lp then rp,lp else lp,rp in
336             (* they were under a lambda *)
337             let m =  CicSubstitution.subst (Cic.Implicit None) m in
338             let ctx_c = CicSubstitution.subst (Cic.Rel 1) ctx_c in
339             m, ctx_c          
340           in
341           (* create the compound context and put the terms under it *)
342           let ctx_dc = compose_contexts ctx_d ctx_c in
343           let dc_what = put_in_ctx ctx_dc what in
344           let dc_other = put_in_ctx ctx_dc other in
345           (* m is already in ctx_c so it is put in ctx_d only *)
346           let d_m = put_in_ctx ctx_d m in
347           (* we also need what in ctx_c *)
348           let c_what = put_in_ctx ctx_c what in
349           (* now put the proofs in the compound context *)
350           let p1 = (* p1: dc_what = d_m *)
351             if is_not_fixed_lp then 
352               aux uri ty1 c_what m ctx_d p1 
353             else
354               mk_sym uri_sym ty d_m dc_what
355                 (aux uri ty1 m c_what ctx_d p1)
356           in
357           let p2 = (* p2: dc_other = dc_what *)
358             if avoid_eq_ind then
359               mk_sym uri_sym ty dc_what dc_other
360                 (aux uri ty1 what other ctx_dc p2)
361             else
362               aux uri ty1 other what ctx_dc p2
363           in
364           (* if pred = \x.C[x]=m --> t : C[other]=m --> trans other what m
365              if pred = \x.m=C[x] --> t : m=C[other] --> trans m what other *)
366           let a,b,c,paeqb,pbeqc =
367             if is_not_fixed_lp then
368               dc_other,dc_what,d_m,p2,p1
369             else
370               d_m,dc_what,dc_other,
371                 (mk_sym uri_sym ty dc_what d_m p1),
372                 (mk_sym uri_sym ty dc_other dc_what p2)
373           in
374           mk_trans uri_trans ty a b c paeqb pbeqc
375     | t -> 
376         let uri_sym = LibraryObjects.sym_eq_URI ~eq:uri in
377         let uri_ind = LibraryObjects.eq_ind_URI ~eq:uri in
378         let pred = 
379           (* ctx_d will go under a lambda, but put_in_ctx substitutes Rel 1 *)
380           let ctx_d = CicSubstitution.lift_from 2 1 ctx_d in (* bleah *)
381           let r = put_in_ctx ctx_d (CicSubstitution.lift 1 left) in
382           let l = ctx_d in
383           let lty = CicSubstitution.lift 1 ty in 
384           Cic.Lambda (Cic.Name "foo",ty,(mk_eq uri lty l r))
385         in
386         let d_left = put_in_ctx ctx_d left in
387         let d_right = put_in_ctx ctx_d right in
388         let refl_eq = mk_refl uri ty d_left in
389         mk_sym uri_sym ty d_right d_left
390           (mk_eq_ind uri_ind ty left pred refl_eq right t)
391   in
392   let empty_context = Cic.Rel 1 in
393   aux uri ty left right empty_context t
394 ;;
395
396 let contextualize_rewrites t ty = 
397   let eq,ty,l,r = open_eq ty in
398   contextualize eq ty l r t
399 ;;
400   
401 let build_proof_step lift subst p1 p2 pos l r pred =
402   let p1 = Subst.apply_subst_lift lift subst p1 in
403   let p2 = Subst.apply_subst_lift lift subst p2 in
404   let l  = CicSubstitution.lift lift l in
405   let l = Subst.apply_subst_lift lift subst l in
406   let r  = CicSubstitution.lift lift r in
407   let r = Subst.apply_subst_lift lift subst r in
408   let pred = CicSubstitution.lift lift pred in
409   let pred = Subst.apply_subst_lift lift subst pred in
410   let ty,body = 
411     match pred with
412       | Cic.Lambda (_,ty,body) -> ty,body 
413       | _ -> assert false
414   in
415   let what, other = 
416     if pos = Utils.Left then l,r else r,l
417   in
418     match pos with
419       | Utils.Left ->
420         mk_eq_ind (Utils.eq_ind_URI ()) ty what pred p1 other p2
421       | Utils.Right ->
422         mk_eq_ind (Utils.eq_ind_r_URI ()) ty what pred p1 other p2
423 ;;
424
425 let parametrize_proof p ty = 
426   let parameters = CicUtil.metas_of_term p in (* ?if they are under a lambda? *)
427   let parameters = 
428     HExtlib.list_uniq (List.sort Pervasives.compare parameters) 
429   in
430   let what = List.map (fun (i,l) -> Cic.Meta (i,l)) parameters in 
431   let with_what, lift_no = 
432     List.fold_right (fun _ (acc,n) -> ((Cic.Rel n)::acc),n+1) what ([],1) 
433   in
434   let p = CicSubstitution.lift (lift_no-1) p in
435   let p = 
436     ProofEngineReduction.replace_lifting
437     ~equality:(=) ~what ~with_what ~where:p
438   in
439   let ty_of_m _ = ty (*function 
440     | Cic.Meta (i,_) -> List.assoc i menv 
441     | _ -> assert false *)
442   in
443   let args, proof,_ = 
444     List.fold_left 
445       (fun (instance,p,n) m -> 
446         (instance@[m],
447         Cic.Lambda 
448           (Cic.Name ("x"^string_of_int n),
449           CicSubstitution.lift (lift_no - n - 1) (ty_of_m m),
450           p),
451         n+1)) 
452       ([Cic.Rel 1],p,1) 
453       what
454   in
455   let instance = match args with | [x] -> x | _ -> Cic.Appl args in
456   proof, instance
457 ;;
458
459 let wfo goalproof proof =
460   let rec aux acc id =
461     let p,_,_ = proof_of_id id in
462     match p with
463     | Exact _ -> if (List.mem id acc) then acc else id :: acc
464     | Step (_,(_,id1, (_,id2), _)) -> 
465         let acc = if not (List.mem id1 acc) then aux acc id1 else acc in
466         let acc = if not (List.mem id2 acc) then aux acc id2 else acc in
467         id :: acc
468   in
469   let acc = 
470     match proof with
471       | Exact _ -> []
472       | Step (_,(_,id1, (_,id2), _)) -> aux (aux [] id1) id2
473   in 
474   List.fold_left (fun acc (_,id,_,_) -> aux acc id) acc goalproof
475 ;;
476
477 let string_of_id names id = 
478   try
479     let (_,p,(_,l,r,_),_,_) = open_equality (Hashtbl.find id_to_eq id) in
480     match p with
481     | Exact t -> 
482         Printf.sprintf "%d = %s: %s = %s" id
483           (CicPp.pp t names) (CicPp.pp l names) (CicPp.pp r names)
484     | Step (_,(step,id1, (_,id2), _) ) ->
485         Printf.sprintf "%6d: %s %6d %6d   %s = %s" id
486           (if step = SuperpositionRight then "SupR" else "Demo") 
487           id1 id2 (CicPp.pp l names) (CicPp.pp r names)
488   with
489       Not_found -> assert false
490
491 let pp_proof names goalproof proof =
492   String.concat "\n" (List.map (string_of_id names) (wfo goalproof proof)) ^ 
493   "\ngoal is demodulated with " ^ 
494     (String.concat " " 
495       ((List.map (fun (_,i,_,_) -> string_of_int i) goalproof)))
496 ;;
497
498 (* returns the list of ids that should be factorized *)
499 let get_duplicate_step_in_wfo l p =
500   let ol = List.rev l in
501   let h = Hashtbl.create 13 in
502   let add i n = 
503     let p,_,_ = proof_of_id i in 
504     match p with 
505     | Exact _ -> ()
506     | _ -> 
507         try let (pos,no) = Hashtbl.find h i in Hashtbl.replace h i (pos,no+1)
508         with Not_found -> Hashtbl.add h i (n,1)
509   in
510   let rec aux n = function
511     | Exact _ -> n
512     | Step (_,(_,i1,(_,i2),_)) -> 
513         add i1 n;add i2 n;
514         max (aux (n+1) (let p,_,_ = proof_of_id i1 in p))
515           (aux (n+1) (let p,_,_ = proof_of_id i2 in p))
516   in
517   let i = aux 0 p in 
518   let _ = 
519     List.fold_left 
520       (fun acc (_,id,_,_) -> aux acc (let p,_,_ = proof_of_id id in p))
521       i ol
522   in
523   (* now h is complete *)
524   let proofs = Hashtbl.fold (fun k (pos,count) acc->(k,pos,count)::acc) h [] in
525   let proofs = List.filter (fun (_,_,c) -> c > 1) proofs in
526   let proofs = 
527     List.sort (fun (_,c1,_) (_,c2,_) -> Pervasives.compare c2 c1) proofs 
528   in
529   List.map (fun (i,_,_) -> i) proofs
530 ;;
531
532 let build_proof_term h lift proof =
533   let proof_of_id aux id =
534     let p,l,r = proof_of_id id in
535     try List.assoc id h,l,r with Not_found -> aux p, l, r
536   in
537   let rec aux = function
538      | Exact term -> CicSubstitution.lift lift term
539      | Step (subst,(_, id1, (pos,id2), pred)) ->
540          if Subst.is_in_subst 9 subst then
541            prerr_endline (Printf.sprintf "ID %d-%d has: %s\n" id1 id2 (Subst.ppsubst
542            subst));
543          let p1,_,_ = proof_of_id aux id1 in
544          let p2,l,r = proof_of_id aux id2 in
545            build_proof_step lift subst p1 p2 pos l r pred
546   in
547    aux proof
548 ;;
549
550 let build_goal_proof l initial ty se =
551   let se = List.map (fun i -> Cic.Meta (i,[])) se in 
552   let lets = get_duplicate_step_in_wfo l initial in
553   let letsno = List.length lets in
554   let _,mty,_,_ = open_eq ty in
555   let lift_list l = List.map (fun (i,t) -> i,CicSubstitution.lift 1 t) l 
556   in
557   let lets,_,h = 
558     List.fold_left
559       (fun (acc,n,h) id -> 
560         let p,_,_ = proof_of_id id in
561         let cic = build_proof_term h n p in
562         let real_cic,instance = 
563           parametrize_proof cic (CicSubstitution.lift n mty)
564         in
565         let h = (id, instance)::lift_list h in
566         acc@[id,real_cic],n+1,h) 
567       ([],0,[]) lets
568   in
569   let proof,se = 
570     let rec aux se current_proof = function
571       | [] -> current_proof,se
572       | (pos,id,subst,pred)::tl ->
573            let p,l,r = proof_of_id id in
574            let p = build_proof_term h letsno p in
575            let pos = if pos = Utils.Left then Utils.Right else Utils.Left in
576            let proof = 
577              build_proof_step letsno subst current_proof p pos l r pred 
578            in
579            let proof,se = aux se proof tl in
580            Subst.apply_subst_lift letsno subst proof,
581            List.map (fun x -> Subst.apply_subst_lift letsno subst x) se
582     in
583     aux se (build_proof_term h letsno initial) l
584   in
585   let n,proof = 
586     let initial = proof in
587     List.fold_right
588       (fun (id,cic) (n,p) -> 
589         n-1,
590         Cic.LetIn (
591           Cic.Name ("H"^string_of_int id),
592           cic, p))
593     lets (letsno-1,initial)
594   in
595   canonical (contextualize_rewrites proof (CicSubstitution.lift letsno ty)), se
596 ;;
597
598 let refl_proof ty term = 
599   Cic.Appl 
600     [Cic.MutConstruct 
601        (LibraryObjects.eq_URI (), 0, 1, []);
602        ty; term]
603 ;;
604
605 let metas_of_proof p =
606   let p = build_proof_term [] 0 p in
607   Utils.metas_of_term p
608 ;;
609
610 let relocate newmeta menv =
611   let subst, metasenv, newmeta = 
612     List.fold_right 
613       (fun (i, context, ty) (subst, menv, maxmeta) ->         
614         let irl = [] (*
615          CicMkImplicit.identity_relocation_list_for_metavariable context *)
616         in
617         let newsubst = Subst.buildsubst i context (Cic.Meta(maxmeta,irl)) ty subst in
618         let newmeta = maxmeta, context, ty in
619         newsubst, newmeta::menv, maxmeta+1) 
620       menv (Subst.empty_subst, [], newmeta+1)
621   in
622   let metasenv = Subst.apply_subst_metasenv subst metasenv in
623   let subst = Subst.flatten_subst subst in
624   subst, metasenv, newmeta
625
626
627 let fix_metas newmeta eq = 
628   let w, p, (ty, left, right, o), menv,_ = open_equality eq in
629   let subst, metasenv, newmeta = relocate newmeta menv in
630   let ty = Subst.apply_subst subst ty in
631   let left = Subst.apply_subst subst left in
632   let right = Subst.apply_subst subst right in
633   let fix_proof = function
634     | Exact p -> Exact (Subst.apply_subst subst p)
635     | Step (s,(r,id1,(pos,id2),pred)) -> 
636         Step (Subst.concat s subst,(r,id1,(pos,id2), pred))
637   in
638   let p = fix_proof p in
639   let eq = mk_equality (w, p, (ty, left, right, o), metasenv) in
640   newmeta+1, eq  
641
642 exception NotMetaConvertible;;
643
644 let meta_convertibility_aux table t1 t2 =
645   let module C = Cic in
646   let rec aux ((table_l, table_r) as table) t1 t2 =
647     match t1, t2 with
648     | C.Meta (m1, tl1), C.Meta (m2, tl2) ->
649         let m1_binding, table_l =
650           try List.assoc m1 table_l, table_l
651           with Not_found -> m2, (m1, m2)::table_l
652         and m2_binding, table_r =
653           try List.assoc m2 table_r, table_r
654           with Not_found -> m1, (m2, m1)::table_r
655         in
656         if (m1_binding <> m2) || (m2_binding <> m1) then
657           raise NotMetaConvertible
658         else (
659           try
660             List.fold_left2
661               (fun res t1 t2 ->
662                  match t1, t2 with
663                  | None, Some _ | Some _, None -> raise NotMetaConvertible
664                  | None, None -> res
665                  | Some t1, Some t2 -> (aux res t1 t2))
666               (table_l, table_r) tl1 tl2
667           with Invalid_argument _ ->
668             raise NotMetaConvertible
669         )
670     | C.Var (u1, ens1), C.Var (u2, ens2)
671     | C.Const (u1, ens1), C.Const (u2, ens2) when (UriManager.eq u1 u2) ->
672         aux_ens table ens1 ens2
673     | C.Cast (s1, t1), C.Cast (s2, t2)
674     | C.Prod (_, s1, t1), C.Prod (_, s2, t2)
675     | C.Lambda (_, s1, t1), C.Lambda (_, s2, t2)
676     | C.LetIn (_, s1, t1), C.LetIn (_, s2, t2) ->
677         let table = aux table s1 s2 in
678         aux table t1 t2
679     | C.Appl l1, C.Appl l2 -> (
680         try List.fold_left2 (fun res t1 t2 -> (aux res t1 t2)) table l1 l2
681         with Invalid_argument _ -> raise NotMetaConvertible
682       )
683     | C.MutInd (u1, i1, ens1), C.MutInd (u2, i2, ens2)
684         when (UriManager.eq u1 u2) && i1 = i2 -> aux_ens table ens1 ens2
685     | C.MutConstruct (u1, i1, j1, ens1), C.MutConstruct (u2, i2, j2, ens2)
686         when (UriManager.eq u1 u2) && i1 = i2 && j1 = j2 ->
687         aux_ens table ens1 ens2
688     | C.MutCase (u1, i1, s1, t1, l1), C.MutCase (u2, i2, s2, t2, l2)
689         when (UriManager.eq u1 u2) && i1 = i2 ->
690         let table = aux table s1 s2 in
691         let table = aux table t1 t2 in (
692           try List.fold_left2 (fun res t1 t2 -> (aux res t1 t2)) table l1 l2
693           with Invalid_argument _ -> raise NotMetaConvertible
694         )
695     | C.Fix (i1, il1), C.Fix (i2, il2) when i1 = i2 -> (
696         try
697           List.fold_left2
698             (fun res (n1, i1, s1, t1) (n2, i2, s2, t2) ->
699                if i1 <> i2 then raise NotMetaConvertible
700                else
701                  let res = (aux res s1 s2) in aux res t1 t2)
702             table il1 il2
703         with Invalid_argument _ -> raise NotMetaConvertible
704       )
705     | C.CoFix (i1, il1), C.CoFix (i2, il2) when i1 = i2 -> (
706         try
707           List.fold_left2
708             (fun res (n1, s1, t1) (n2, s2, t2) ->
709                let res = aux res s1 s2 in aux res t1 t2)
710             table il1 il2
711         with Invalid_argument _ -> raise NotMetaConvertible
712       )
713     | t1, t2 when t1 = t2 -> table
714     | _, _ -> raise NotMetaConvertible
715         
716   and aux_ens table ens1 ens2 =
717     let cmp (u1, t1) (u2, t2) =
718       Pervasives.compare (UriManager.string_of_uri u1) (UriManager.string_of_uri u2)
719     in
720     let ens1 = List.sort cmp ens1
721     and ens2 = List.sort cmp ens2 in
722     try
723       List.fold_left2
724         (fun res (u1, t1) (u2, t2) ->
725            if not (UriManager.eq u1 u2) then raise NotMetaConvertible
726            else aux res t1 t2)
727         table ens1 ens2
728     with Invalid_argument _ -> raise NotMetaConvertible
729   in
730   aux table t1 t2
731 ;;
732
733
734 let meta_convertibility_eq eq1 eq2 =
735   let _, _, (ty, left, right, _), _,_ = open_equality eq1 in
736   let _, _, (ty', left', right', _), _,_ = open_equality eq2 in
737   if ty <> ty' then
738     false
739   else if (left = left') && (right = right') then
740     true
741   else if (left = right') && (right = left') then
742     true
743   else
744     try
745       let table = meta_convertibility_aux ([], []) left left' in
746       let _ = meta_convertibility_aux table right right' in
747       true
748     with NotMetaConvertible ->
749       try
750         let table = meta_convertibility_aux ([], []) left right' in
751         let _ = meta_convertibility_aux table right left' in
752         true
753       with NotMetaConvertible ->
754         false
755 ;;
756
757
758 let meta_convertibility t1 t2 =
759   if t1 = t2 then
760     true
761   else
762     try
763       ignore(meta_convertibility_aux ([], []) t1 t2);
764       true
765     with NotMetaConvertible ->
766       false
767 ;;
768
769 exception TermIsNotAnEquality;;
770
771 let term_is_equality term =
772   let iseq uri = UriManager.eq uri (LibraryObjects.eq_URI ()) in
773   match term with
774   | Cic.Appl [Cic.MutInd (uri, _, _); _; _; _] when iseq uri -> true
775   | _ -> false
776 ;;
777
778 let equality_of_term proof term =
779   let eq_uri = LibraryObjects.eq_URI () in
780   let iseq uri = UriManager.eq uri eq_uri in
781   match term with
782   | Cic.Appl [Cic.MutInd (uri, _, _); ty; t1; t2] when iseq uri ->
783       let o = !Utils.compare_terms t1 t2 in
784       let stat = (ty,t1,t2,o) in
785       let w = Utils.compute_equality_weight stat in
786       let e = mk_equality (w, Exact proof, stat,[]) in
787       e
788   | _ ->
789       raise TermIsNotAnEquality
790 ;;
791
792 let is_weak_identity eq = 
793   let _,_,(_,left, right,_),_,_ = open_equality eq in
794   left = right || meta_convertibility left right 
795 ;;
796
797 let is_identity (_, context, ugraph) eq = 
798   let _,_,(ty,left,right,_),menv,_ = open_equality eq in
799   left = right ||
800   (* (meta_convertibility left right)) *)
801   fst (CicReduction.are_convertible ~metasenv:menv context left right ugraph)
802 ;;
803
804
805 let term_of_equality equality =
806   let _, _, (ty, left, right, _), menv, _= open_equality equality in
807   let eq i = function Cic.Meta (j, _) -> i = j | _ -> false in
808   let argsno = List.length menv in
809   let t =
810     CicSubstitution.lift argsno
811       (Cic.Appl [Cic.MutInd (LibraryObjects.eq_URI (), 0, []); ty; left; right])
812   in
813   snd (
814     List.fold_right
815       (fun (i,_,ty) (n, t) ->
816          let name = Cic.Name ("X" ^ (string_of_int n)) in
817          let ty = CicSubstitution.lift (n-1) ty in
818          let t = 
819            ProofEngineReduction.replace
820              ~equality:eq ~what:[i]
821              ~with_what:[Cic.Rel (argsno - (n - 1))] ~where:t
822          in
823            (n-1, Cic.Prod (name, ty, t)))
824       menv (argsno, t))
825 ;;
826