1 (* Copyright (C) 2003, HELM Team.
4 * This file is part of HELM, an Hypertextual, Electronic
5 * Library of Mathematics, developed at the Computer Science
6 * Department, University of Bologna, Italy.
8 * HELM is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * HELM is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with HELM; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 * For details, see the HELM World-Wide-Web page,
24 * http://cs.unibo.it/helm/.
33 let deref_counter = ref 0
34 let apply_subst_context_counter = ref 0
35 let apply_subst_metasenv_counter = ref 0
36 let lift_counter = ref 0
37 let subst_counter = ref 0
38 let whd_counter = ref 0
39 let are_convertible_counter = ref 0
40 let metasenv_length = ref 0
41 let context_length = ref 0
42 let reset_counters () =
43 apply_subst_counter := 0;
44 apply_subst_context_counter := 0;
45 apply_subst_metasenv_counter := 0;
49 are_convertible_counter := 0;
52 let print_counters () =
53 debug_print (lazy (Printf.sprintf
55 apply_subst_context: %d
56 apply_subst_metasenv: %d
61 metasenv length: %d (avg = %.2f)
62 context length: %d (avg = %.2f)
64 !apply_subst_counter !apply_subst_context_counter
65 !apply_subst_metasenv_counter !lift_counter !subst_counter !whd_counter
66 !are_convertible_counter !metasenv_length
67 ((float !metasenv_length) /. (float !apply_subst_metasenv_counter))
69 ((float !context_length) /. (float !apply_subst_context_counter))
74 exception MetaSubstFailure of string Lazy.t
75 exception Uncertain of string Lazy.t
76 exception AssertFailure of string Lazy.t
77 exception DeliftingARelWouldCaptureAFreeVariable;;
79 let debug_print = fun _ -> ()
81 type substitution = (int * (Cic.context * Cic.term)) list
85 let third _,_,a = a in
90 (CicSubstitution.subst_meta
91 l (third (CicUtil.lookup_subst n subst)))
93 CicUtil.Subst_not_found _ -> t)
98 let lookup_subst = CicUtil.lookup_subst
101 (* clean_up_meta take a metasenv and a term and make every local context
102 of each occurrence of a metavariable consistent with its canonical context,
103 with respect to the hidden hipothesis *)
106 let clean_up_meta subst metasenv t =
107 let module C = Cic in
112 | C.Implicit _ -> assert false
113 | C.Meta (n,l) as t ->
116 let (cc,_) = lookup_subst n subst in cc
117 with CicUtil.Subst_not_found _ ->
119 let (_,cc,_) = CicUtil.lookup_meta n metasenv in cc
120 with CicUtil.Meta_not_found _ -> assert false) in
129 Invalid_argument _ -> assert false) in
131 | C.Cast (te,ty) -> C.Cast (aux te, aux ty)
132 | C.Prod (name,so,dest) -> C.Prod (name, aux so, aux dest)
133 | C.Lambda (name,so,dest) -> C.Lambda (name, aux so, aux dest)
134 | C.LetIn (name,so,dest) -> C.LetIn (name, aux so, aux dest)
135 | C.Appl l -> C.Appl (List.map aux l)
136 | C.Var (uri,exp_named_subst) ->
137 let exp_named_subst' =
138 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
140 C.Var (uri, exp_named_subst')
141 | C.Const (uri, exp_named_subst) ->
142 let exp_named_subst' =
143 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
145 C.Const (uri, exp_named_subst')
146 | C.MutInd (uri,tyno,exp_named_subst) ->
147 let exp_named_subst' =
148 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
150 C.MutInd (uri, tyno, exp_named_subst')
151 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
152 let exp_named_subst' =
153 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
155 C.MutConstruct (uri, tyno, consno, exp_named_subst')
156 | C.MutCase (uri,tyno,out,te,pl) ->
157 C.MutCase (uri, tyno, aux out, aux te, List.map aux pl)
161 (fun (name,j,ty,bo) -> (name, j, aux ty, aux bo)) fl
167 (fun (name,ty,bo) -> (name, aux ty, aux bo)) fl
173 (*** Functions to apply a substitution ***)
175 let apply_subst_gen ~appl_fun subst term =
177 let module C = Cic in
178 let module S = CicSubstitution in
181 | C.Var (uri,exp_named_subst) ->
182 let exp_named_subst' =
183 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
185 C.Var (uri, exp_named_subst')
188 let (_, t,_) = lookup_subst i subst in
189 um_aux (S.subst_meta l t)
190 with CicUtil.Subst_not_found _ ->
191 (* unconstrained variable, i.e. free in subst*)
193 List.map (function None -> None | Some t -> Some (um_aux t)) l
197 | C.Implicit _ as t -> t
198 | C.Cast (te,ty) -> C.Cast (um_aux te, um_aux ty)
199 | C.Prod (n,s,t) -> C.Prod (n, um_aux s, um_aux t)
200 | C.Lambda (n,s,t) -> C.Lambda (n, um_aux s, um_aux t)
201 | C.LetIn (n,s,ty,t) -> C.LetIn (n, um_aux s, um_aux ty, um_aux t)
202 | C.Appl (hd :: tl) -> appl_fun um_aux hd tl
203 | C.Appl _ -> assert false
204 | C.Const (uri,exp_named_subst) ->
205 let exp_named_subst' =
206 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
208 C.Const (uri, exp_named_subst')
209 | C.MutInd (uri,typeno,exp_named_subst) ->
210 let exp_named_subst' =
211 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
213 C.MutInd (uri,typeno,exp_named_subst')
214 | C.MutConstruct (uri,typeno,consno,exp_named_subst) ->
215 let exp_named_subst' =
216 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
218 C.MutConstruct (uri,typeno,consno,exp_named_subst')
219 | C.MutCase (sp,i,outty,t,pl) ->
220 let pl' = List.map um_aux pl in
221 C.MutCase (sp, i, um_aux outty, um_aux t, pl')
224 List.map (fun (name, i, ty, bo) -> (name, i, um_aux ty, um_aux bo)) fl
229 List.map (fun (name, ty, bo) -> (name, um_aux ty, um_aux bo)) fl
237 let appl_fun um_aux he tl =
238 let tl' = List.map um_aux tl in
241 Cic.Appl l -> Cic.Appl (l@tl')
242 | he' -> Cic.Appl (he'::tl')
246 Cic.Meta (m,_) -> CicReduction.head_beta_reduce t'
251 (* incr apply_subst_counter; *)
254 | _ -> apply_subst_gen ~appl_fun subst t
257 let profiler = HExtlib.profile "U/CicMetaSubst.apply_subst"
258 let apply_subst s t =
259 profiler.HExtlib.profile (apply_subst s) t
262 let apply_subst_context subst context =
267 incr apply_subst_context_counter;
268 context_length := !context_length + List.length context;
273 | Some (n, Cic.Decl t) ->
274 let t' = apply_subst subst t in
275 Some (n, Cic.Decl t') :: context
276 | Some (n, Cic.Def (t, ty)) ->
277 let ty' = apply_subst subst ty in
278 let t' = apply_subst subst t in
279 Some (n, Cic.Def (t', ty')) :: context
280 | None -> None :: context)
283 let apply_subst_metasenv subst metasenv =
285 incr apply_subst_metasenv_counter;
286 metasenv_length := !metasenv_length + List.length metasenv;
292 (fun (n, context, ty) ->
293 (n, apply_subst_context subst context, apply_subst subst ty))
295 (fun (i, _, _) -> not (List.mem_assoc i subst))
298 (***** Pretty printing functions ******)
300 let ppterm ~metasenv subst term =
301 CicPp.ppterm ~metasenv (apply_subst subst term)
303 let ppterm_in_name_context ~metasenv subst term name_context =
304 CicPp.pp ~metasenv (apply_subst subst term) name_context
306 let ppterm_in_context ~metasenv subst term context =
308 List.map (function None -> None | Some (n,_) -> Some n) context
310 ppterm_in_name_context ~metasenv subst term name_context
312 let ppterm_in_context_ref = ref ppterm_in_context
313 let set_ppterm_in_context f =
314 ppterm_in_context_ref := f
315 let use_low_level_ppterm_in_context = ref false
317 let ppterm_in_context ~metasenv subst term context =
318 if !use_low_level_ppterm_in_context then
319 ppterm_in_context ~metasenv subst term context
321 !ppterm_in_context_ref ~metasenv subst term context
323 let ppcontext' ~metasenv ?(sep = "\n") subst context =
324 let separate s = if s = "" then "" else s ^ sep in
326 (fun context_entry (i,name_context) ->
327 match context_entry with
328 Some (n,Cic.Decl t) ->
329 sprintf "%s%s : %s" (separate i) (CicPp.ppname n)
330 (ppterm_in_name_context ~metasenv subst t name_context),
331 (Some n)::name_context
332 | Some (n,Cic.Def (bo,ty)) ->
333 sprintf "%s%s : %s := %s" (separate i) (CicPp.ppname n)
334 (ppterm_in_name_context ~metasenv subst ty name_context)
335 (ppterm_in_name_context ~metasenv subst bo name_context), (Some n)::name_context
337 sprintf "%s_ :? _" (separate i), None::name_context
340 let ppsubst_unfolded ~metasenv subst =
343 (fun (idx, (c, t,ty)) ->
344 let context,name_context = ppcontext' ~metasenv ~sep:"; " subst c in
345 sprintf "%s |- ?%d : %s := %s" context idx
346 (ppterm_in_name_context ~metasenv [] ty name_context)
347 (ppterm_in_name_context ~metasenv subst t name_context))
350 Printf.sprintf "?%d := %s" idx (CicPp.ppterm term))
354 let ppsubst ~metasenv subst =
357 (fun (idx, (c, t, ty)) ->
358 let context,name_context = ppcontext' ~metasenv ~sep:"; " [] c in
359 sprintf "%s |- ?%d : %s := %s" context idx (ppterm_in_name_context ~metasenv [] ty name_context)
360 (ppterm_in_name_context ~metasenv [] t name_context))
364 let ppcontext ~metasenv ?sep subst context =
365 fst (ppcontext' ~metasenv ?sep subst context)
367 let ppmetasenv ?(sep = "\n") subst metasenv =
371 let context,name_context = ppcontext' ~metasenv ~sep:"; " subst c in
372 sprintf "%s |- ?%d: %s" context i
373 (ppterm_in_name_context ~metasenv subst t name_context))
375 (fun (i, _, _) -> not (List.mem_assoc i subst))
378 let tempi_type_of_aux_subst = ref 0.0;;
379 let tempi_subst = ref 0.0;;
380 let tempi_type_of_aux = ref 0.0;;
383 (* the delift function takes in input a metavariable index, an ordered list of
384 * optional terms [t1,...,tn] and a term t, and substitutes every tk = Some
385 * (rel(nk)) with rel(k). Typically, the list of optional terms is the explicit
386 * substitution that is applied to a metavariable occurrence and the result of
387 * the delift function is a term the implicit variable can be substituted with
388 * to make the term [t] unifiable with the metavariable occurrence. In general,
389 * the problem is undecidable if we consider equivalence in place of alpha
390 * convertibility. Our implementation, though, is even weaker than alpha
391 * convertibility, since it replace the term [tk] if and only if [tk] is a Rel
392 * (missing all the other cases). Does this matter in practice?
393 * The metavariable index is the index of the metavariable that must not occur
394 * in the term (for occur check).
397 exception NotInTheList;;
402 [] -> raise NotInTheList
403 | (Some (Cic.Rel m))::_ when m=n -> k
404 | _::tl -> aux (k+1) tl in
410 let rec force_does_not_occur subst to_be_restricted t =
411 let module C = Cic in
412 let more_to_be_restricted = ref [] in
413 let rec aux k = function
414 C.Rel r when List.mem (r - k) to_be_restricted -> raise Occur
417 | C.Implicit _ -> assert false
419 (* we do not retrieve the term associated to ?n in subst since *)
420 (* in this way we can restrict if something goes wrong *)
432 more_to_be_restricted := (n,!i) :: !more_to_be_restricted;
437 | C.Cast (te,ty) -> C.Cast (aux k te, aux k ty)
438 | C.Prod (name,so,dest) -> C.Prod (name, aux k so, aux (k+1) dest)
439 | C.Lambda (name,so,dest) -> C.Lambda (name, aux k so, aux (k+1) dest)
440 | C.LetIn (name,so,ty,dest) ->
441 C.LetIn (name, aux k so, aux k ty, aux (k+1) dest)
442 | C.Appl l -> C.Appl (List.map (aux k) l)
443 | C.Var (uri,exp_named_subst) ->
444 let exp_named_subst' =
445 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
447 C.Var (uri, exp_named_subst')
448 | C.Const (uri, exp_named_subst) ->
449 let exp_named_subst' =
450 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
452 C.Const (uri, exp_named_subst')
453 | C.MutInd (uri,tyno,exp_named_subst) ->
454 let exp_named_subst' =
455 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
457 C.MutInd (uri, tyno, exp_named_subst')
458 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
459 let exp_named_subst' =
460 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
462 C.MutConstruct (uri, tyno, consno, exp_named_subst')
463 | C.MutCase (uri,tyno,out,te,pl) ->
464 C.MutCase (uri, tyno, aux k out, aux k te, List.map (aux k) pl)
466 let len = List.length fl in
467 let k_plus_len = k + len in
470 (fun (name,j,ty,bo) -> (name, j, aux k ty, aux k_plus_len bo)) fl
474 let len = List.length fl in
475 let k_plus_len = k + len in
478 (fun (name,ty,bo) -> (name, aux k ty, aux k_plus_len bo)) fl
483 (!more_to_be_restricted, res)
485 let rec restrict subst to_be_restricted metasenv =
486 match to_be_restricted with
487 | [] -> metasenv, subst
489 let names_of_context_indexes context indexes =
494 match List.nth context (i-1) with
495 | None -> assert false
496 | Some (n, _) -> CicPp.ppname n
498 Failure _ -> assert false
501 let force_does_not_occur_in_context to_be_restricted = function
503 | Some (name, Cic.Decl t) ->
504 let (more_to_be_restricted, t') =
505 force_does_not_occur subst to_be_restricted t
507 more_to_be_restricted, Some (name, Cic.Decl t')
508 | Some (name, Cic.Def (bo, ty)) ->
509 let (more_to_be_restricted, bo') =
510 force_does_not_occur subst to_be_restricted bo
512 let more_to_be_restricted, ty' =
513 let more_to_be_restricted', ty' =
514 force_does_not_occur subst to_be_restricted ty
516 more_to_be_restricted @ more_to_be_restricted',
519 more_to_be_restricted, Some (name, Cic.Def (bo', ty'))
521 let rec erase i to_be_restricted n = function
522 | [] -> [], to_be_restricted, []
524 let more_to_be_restricted,restricted,tl' =
525 erase (i+1) to_be_restricted n tl
527 let restrict_me = List.mem i restricted in
529 more_to_be_restricted, restricted, None:: tl'
532 let more_to_be_restricted', hd' =
533 let delifted_restricted =
537 | j::tl when j > i -> (j - i)::aux tl
542 force_does_not_occur_in_context delifted_restricted hd
544 more_to_be_restricted @ more_to_be_restricted',
545 restricted, hd' :: tl'
547 more_to_be_restricted, (i :: restricted), None :: tl')
549 let (more_to_be_restricted, metasenv) = (* restrict metasenv *)
551 (fun (n, context, t) (more, metasenv) ->
552 let to_be_restricted =
553 List.map snd (List.filter (fun (m, _) -> m = n) to_be_restricted)
555 let (more_to_be_restricted, restricted, context') =
556 (* just an optimization *)
557 if to_be_restricted = [] then
560 erase 1 to_be_restricted n context
563 let more_to_be_restricted', t' =
564 force_does_not_occur subst restricted t
566 let metasenv' = (n, context', t') :: metasenv in
567 (more @ more_to_be_restricted @ more_to_be_restricted',
570 raise (MetaSubstFailure (lazy (sprintf
571 "Cannot restrict the context of the metavariable ?%d over the hypotheses %s since metavariable's type depends on at least one of them"
572 n (names_of_context_indexes context to_be_restricted)))))
575 let (more_to_be_restricted', subst) = (* restrict subst *)
577 (* TODO: cambiare dopo l'aggiunta del ty *)
578 (fun (n, (context, term,ty)) (more, subst') ->
579 let to_be_restricted =
580 List.map snd (List.filter (fun (m, _) -> m = n) to_be_restricted)
583 let (more_to_be_restricted, restricted, context') =
584 (* just an optimization *)
585 if to_be_restricted = [] then
588 erase 1 to_be_restricted n context
590 let more_to_be_restricted', term' =
591 force_does_not_occur subst restricted term
593 let more_to_be_restricted'', ty' =
594 force_does_not_occur subst restricted ty in
595 let subst' = (n, (context', term',ty')) :: subst' in
597 more @ more_to_be_restricted
598 @ more_to_be_restricted'@more_to_be_restricted'' in
601 let error_msg = lazy (sprintf
602 "Cannot restrict the context of the metavariable ?%d over the hypotheses %s since ?%d is already instantiated with %s and at least one of the hypotheses occurs in the substituted term"
603 n (names_of_context_indexes context to_be_restricted) n
604 (ppterm ~metasenv subst term))
607 debug_print (lazy error_msg);
608 debug_print (lazy ("metasenv = \n" ^ (ppmetasenv metasenv subst)));
609 debug_print (lazy ("subst = \n" ^ (ppsubst subst)));
610 debug_print (lazy ("context = \n" ^ (ppcontext subst context))); *)
611 raise (MetaSubstFailure error_msg)))
614 restrict subst (more_to_be_restricted @ more_to_be_restricted') metasenv
617 (*CSC: maybe we should rename delift in abstract, as I did in my dissertation *)(*Andrea: maybe not*)
619 let delift n subst context metasenv l t =
620 (* INVARIANT: we suppose that t is not another occurrence of Meta(n,_),
621 otherwise the occur check does not make sense *)
624 debug_print (lazy ("sto deliftando il termine " ^ (CicPp.ppterm t) ^ " rispetto
625 al contesto locale " ^ (CicPp.ppterm (Cic.Meta(0,l)))));
628 let module S = CicSubstitution in
630 let (_, canonical_context, _) = CicUtil.lookup_meta n metasenv in
631 List.map2 (fun ct lt ->
637 let to_be_restricted = ref [] in
638 let rec deliftaux k =
639 let module C = Cic in
646 match List.nth context (m-k-1) with
647 Some (_,C.Def (t,_)) ->
649 C.Rel ((position (m-k) l) + k)
652 (*CSC: Hmmm. This bit of reduction is not in the spirit of *)
653 (*CSC: first order unification. Does it help or does it harm? *)
654 (*CSC: ANSWER: it hurts performances since it is possible to *)
655 (*CSC: have an exponential explosion of the size of the proof.*)
656 (*CSC: However, without this bit of reduction some "apply" in *)
657 (*CSC: the library fail (e.g. nat/nth_prime.ma). *)
658 deliftaux k (S.lift m t))
659 | Some (_,C.Decl t) ->
660 C.Rel ((position (m-k) l) + k)
661 | None -> raise (MetaSubstFailure (lazy "RelToHiddenHypothesis"))
664 raise (MetaSubstFailure (lazy "Unbound variable found in deliftaux"))
666 | C.Var (uri,exp_named_subst) ->
667 let exp_named_subst' =
668 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
670 C.Var (uri,exp_named_subst')
671 | C.Meta (i, l1) as t ->
673 let (_,t,_) = CicUtil.lookup_subst i subst in
674 deliftaux k (CicSubstitution.subst_meta l1 t)
675 with CicUtil.Subst_not_found _ ->
676 (* see the top level invariant *)
678 raise (MetaSubstFailure (lazy (sprintf
679 "Cannot unify the metavariable ?%d with a term that has as subterm %s in which the same metavariable occurs (occur check)"
680 i (ppterm ~metasenv subst t))))
683 (* I do not consider the term associated to ?i in subst since *)
684 (* in this way I can restrict if something goes wrong. *)
688 | None::tl -> None::(deliftl (j+1) tl)
690 let l1' = (deliftl (j+1) tl) in
692 Some (deliftaux k t)::l1'
695 | MetaSubstFailure _ ->
697 (i,j)::!to_be_restricted ; None::l1'
699 let l' = deliftl 1 l1 in
703 | C.Implicit _ as t -> t
704 | C.Cast (te,ty) -> C.Cast (deliftaux k te, deliftaux k ty)
705 | C.Prod (n,s,t) -> C.Prod (n, deliftaux k s, deliftaux (k+1) t)
706 | C.Lambda (n,s,t) -> C.Lambda (n, deliftaux k s, deliftaux (k+1) t)
707 | C.LetIn (n,s,ty,t) ->
708 C.LetIn (n, deliftaux k s, deliftaux k ty, deliftaux (k+1) t)
709 | C.Appl l -> C.Appl (List.map (deliftaux k) l)
710 | C.Const (uri,exp_named_subst) ->
711 let exp_named_subst' =
712 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
714 C.Const (uri,exp_named_subst')
715 | C.MutInd (uri,typeno,exp_named_subst) ->
716 let exp_named_subst' =
717 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
719 C.MutInd (uri,typeno,exp_named_subst')
720 | C.MutConstruct (uri,typeno,consno,exp_named_subst) ->
721 let exp_named_subst' =
722 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
724 C.MutConstruct (uri,typeno,consno,exp_named_subst')
725 | C.MutCase (sp,i,outty,t,pl) ->
726 C.MutCase (sp, i, deliftaux k outty, deliftaux k t,
727 List.map (deliftaux k) pl)
729 let len = List.length fl in
732 (fun (name, i, ty, bo) ->
733 (name, i, deliftaux k ty, deliftaux (k+len) bo))
738 let len = List.length fl in
741 (fun (name, ty, bo) -> (name, deliftaux k ty, deliftaux (k+len) bo))
744 C.CoFix (i, liftedfl)
751 (* This is the case where we fail even first order unification. *)
752 (* The reason is that our delift function is weaker than first *)
753 (* order (in the sense of alpha-conversion). See comment above *)
754 (* related to the delift function. *)
755 (* debug_print (lazy "First Order UnificationFailure during delift") ;
756 debug_print(lazy (sprintf
757 "Error trying to abstract %s over [%s]: the algorithm only tried to abstract over bound variables"
761 (function Some t -> ppterm subst t | None -> "_") l
763 let msg = (lazy (sprintf
764 "Error trying to abstract %s over [%s]: the algorithm only tried to abstract over bound variables"
765 (ppterm ~metasenv subst t)
768 (function Some t -> ppterm ~metasenv subst t | None -> "_")
774 Some t -> CicUtil.is_meta_closed (apply_subst subst t)
777 raise (Uncertain msg)
779 raise (MetaSubstFailure msg)
781 let (metasenv, subst) = restrict subst !to_be_restricted metasenv in
785 (* delifts a term t of n levels strating from k, that is changes (Rel m)
786 * to (Rel (m - n)) when m > (k + n). if k <= m < k + n delift fails
788 let delift_rels_from subst metasenv k n =
789 let rec liftaux subst metasenv k =
790 let module C = Cic in
795 else if m < k + n then
796 raise DeliftingARelWouldCaptureAFreeVariable
798 C.Rel (m - n), subst, metasenv
799 | C.Var (uri,exp_named_subst) ->
800 let exp_named_subst',subst,metasenv =
802 (fun (uri,t) (l,subst,metasenv) ->
803 let t',subst,metasenv = liftaux subst metasenv k t in
804 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
806 C.Var (uri,exp_named_subst'),subst,metasenv
809 let (_, t,_) = lookup_subst i subst in
810 liftaux subst metasenv k (CicSubstitution.subst_meta l t)
811 with CicUtil.Subst_not_found _ ->
812 let l',to_be_restricted,subst,metasenv =
813 let rec aux con l subst metasenv =
815 [] -> [],[],subst,metasenv
817 let tl',to_be_restricted,subst,metasenv =
818 aux (con + 1) tl subst metasenv in
819 let he',more_to_be_restricted,subst,metasenv =
821 None -> None,[],subst,metasenv
824 let t',subst,metasenv = liftaux subst metasenv k t in
825 Some t',[],subst,metasenv
827 DeliftingARelWouldCaptureAFreeVariable ->
828 None,[i,con],subst,metasenv
830 he'::tl',more_to_be_restricted@to_be_restricted,subst,metasenv
832 aux 1 l subst metasenv in
833 let metasenv,subst = restrict subst to_be_restricted metasenv in
834 C.Meta(i,l'),subst,metasenv)
835 | C.Sort _ as t -> t,subst,metasenv
836 | C.Implicit _ as t -> t,subst,metasenv
838 let te',subst,metasenv = liftaux subst metasenv k te in
839 let ty',subst,metasenv = liftaux subst metasenv k ty in
840 C.Cast (te',ty'),subst,metasenv
842 let s',subst,metasenv = liftaux subst metasenv k s in
843 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
844 C.Prod (n,s',t'),subst,metasenv
845 | C.Lambda (n,s,t) ->
846 let s',subst,metasenv = liftaux subst metasenv k s in
847 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
848 C.Lambda (n,s',t'),subst,metasenv
849 | C.LetIn (n,s,ty,t) ->
850 let s',subst,metasenv = liftaux subst metasenv k s in
851 let ty',subst,metasenv = liftaux subst metasenv k ty in
852 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
853 C.LetIn (n,s',ty',t'),subst,metasenv
855 let l',subst,metasenv =
857 (fun t (l,subst,metasenv) ->
858 let t',subst,metasenv = liftaux subst metasenv k t in
859 t'::l,subst,metasenv) l ([],subst,metasenv) in
860 C.Appl l',subst,metasenv
861 | C.Const (uri,exp_named_subst) ->
862 let exp_named_subst',subst,metasenv =
864 (fun (uri,t) (l,subst,metasenv) ->
865 let t',subst,metasenv = liftaux subst metasenv k t in
866 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
868 C.Const (uri,exp_named_subst'),subst,metasenv
869 | C.MutInd (uri,tyno,exp_named_subst) ->
870 let exp_named_subst',subst,metasenv =
872 (fun (uri,t) (l,subst,metasenv) ->
873 let t',subst,metasenv = liftaux subst metasenv k t in
874 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
876 C.MutInd (uri,tyno,exp_named_subst'),subst,metasenv
877 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
878 let exp_named_subst',subst,metasenv =
880 (fun (uri,t) (l,subst,metasenv) ->
881 let t',subst,metasenv = liftaux subst metasenv k t in
882 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
884 C.MutConstruct (uri,tyno,consno,exp_named_subst'),subst,metasenv
885 | C.MutCase (sp,i,outty,t,pl) ->
886 let outty',subst,metasenv = liftaux subst metasenv k outty in
887 let t',subst,metasenv = liftaux subst metasenv k t in
888 let pl',subst,metasenv =
890 (fun t (l,subst,metasenv) ->
891 let t',subst,metasenv = liftaux subst metasenv k t in
892 t'::l,subst,metasenv) pl ([],subst,metasenv)
894 C.MutCase (sp,i,outty',t',pl'),subst,metasenv
896 let len = List.length fl in
897 let liftedfl,subst,metasenv =
899 (fun (name, i, ty, bo) (l,subst,metasenv) ->
900 let ty',subst,metasenv = liftaux subst metasenv k ty in
901 let bo',subst,metasenv = liftaux subst metasenv (k+len) bo in
902 (name,i,ty',bo')::l,subst,metasenv
903 ) fl ([],subst,metasenv)
905 C.Fix (i, liftedfl),subst,metasenv
907 let len = List.length fl in
908 let liftedfl,subst,metasenv =
910 (fun (name, ty, bo) (l,subst,metasenv) ->
911 let ty',subst,metasenv = liftaux subst metasenv k ty in
912 let bo',subst,metasenv = liftaux subst metasenv (k+len) bo in
913 (name,ty',bo')::l,subst,metasenv
914 ) fl ([],subst,metasenv)
916 C.CoFix (i, liftedfl),subst,metasenv
918 liftaux subst metasenv k
920 let delift_rels subst metasenv n t =
921 delift_rels_from subst metasenv 1 n t
924 (**** END OF DELIFT ****)
927 (** {2 Format-like pretty printers} *)
930 Format.pp_print_string ppf s;
931 Format.pp_print_newline ppf ();
932 Format.pp_print_flush ppf ()
934 let fppsubst ppf subst = fpp_gen ppf (ppsubst ~metasenv:[] subst)
935 let fppterm ppf term = fpp_gen ppf (CicPp.ppterm term)
936 let fppmetasenv ppf metasenv = fpp_gen ppf (ppmetasenv [] metasenv)