1 (* Copyright (C) 2003, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
30 let deref_counter = ref 0
31 let apply_subst_context_counter = ref 0
32 let apply_subst_metasenv_counter = ref 0
33 let lift_counter = ref 0
34 let subst_counter = ref 0
35 let whd_counter = ref 0
36 let are_convertible_counter = ref 0
37 let metasenv_length = ref 0
38 let context_length = ref 0
39 let reset_counters () =
40 apply_subst_counter := 0;
41 apply_subst_context_counter := 0;
42 apply_subst_metasenv_counter := 0;
46 are_convertible_counter := 0;
49 let print_counters () =
50 debug_print (Printf.sprintf
52 apply_subst_context: %d
53 apply_subst_metasenv: %d
58 metasenv length: %d (avg = %.2f)
59 context length: %d (avg = %.2f)
61 !apply_subst_counter !apply_subst_context_counter
62 !apply_subst_metasenv_counter !lift_counter !subst_counter !whd_counter
63 !are_convertible_counter !metasenv_length
64 ((float !metasenv_length) /. (float !apply_subst_metasenv_counter))
66 ((float !context_length) /. (float !apply_subst_context_counter))
71 exception MetaSubstFailure of string
72 exception Uncertain of string
73 exception AssertFailure of string
74 exception DeliftingARelWouldCaptureAFreeVariable;;
76 let debug_print = fun _ -> ()
78 type substitution = (int * (Cic.context * Cic.term)) list
82 let third _,_,a = a in
87 (CicSubstitution.subst_meta
88 l (third (CicUtil.lookup_subst n subst)))
90 CicUtil.Subst_not_found _ -> t)
95 let lookup_subst = CicUtil.lookup_subst
99 (* clean_up_meta take a metasenv and a term and make every local context
100 of each occurrence of a metavariable consistent with its canonical context,
101 with respect to the hidden hipothesis *)
104 let clean_up_meta subst metasenv t =
105 let module C = Cic in
110 | C.Implicit _ -> assert false
111 | C.Meta (n,l) as t ->
114 let (cc,_) = lookup_subst n subst in cc
115 with CicUtil.Subst_not_found _ ->
117 let (_,cc,_) = CicUtil.lookup_meta n metasenv in cc
118 with CicUtil.Meta_not_found _ -> assert false) in
127 Invalid_argument _ -> assert false) in
129 | C.Cast (te,ty) -> C.Cast (aux te, aux ty)
130 | C.Prod (name,so,dest) -> C.Prod (name, aux so, aux dest)
131 | C.Lambda (name,so,dest) -> C.Lambda (name, aux so, aux dest)
132 | C.LetIn (name,so,dest) -> C.LetIn (name, aux so, aux dest)
133 | C.Appl l -> C.Appl (List.map aux l)
134 | C.Var (uri,exp_named_subst) ->
135 let exp_named_subst' =
136 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
138 C.Var (uri, exp_named_subst')
139 | C.Const (uri, exp_named_subst) ->
140 let exp_named_subst' =
141 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
143 C.Const (uri, exp_named_subst')
144 | C.MutInd (uri,tyno,exp_named_subst) ->
145 let exp_named_subst' =
146 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
148 C.MutInd (uri, tyno, exp_named_subst')
149 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
150 let exp_named_subst' =
151 List.map (fun (uri,t) -> (uri, aux t)) exp_named_subst
153 C.MutConstruct (uri, tyno, consno, exp_named_subst')
154 | C.MutCase (uri,tyno,out,te,pl) ->
155 C.MutCase (uri, tyno, aux out, aux te, List.map aux pl)
159 (fun (name,j,ty,bo) -> (name, j, aux ty, aux bo)) fl
165 (fun (name,ty,bo) -> (name, aux ty, aux bo)) fl
171 (*** Functions to apply a substitution ***)
173 let apply_subst_gen ~appl_fun subst term =
175 let module C = Cic in
176 let module S = CicSubstitution in
179 | C.Var (uri,exp_named_subst) ->
180 let exp_named_subst' =
181 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
183 C.Var (uri, exp_named_subst')
186 let (_, t,_) = lookup_subst i subst in
187 um_aux (S.subst_meta l t)
188 with CicUtil.Subst_not_found _ ->
189 (* unconstrained variable, i.e. free in subst*)
191 List.map (function None -> None | Some t -> Some (um_aux t)) l
195 | C.Implicit _ -> assert false
196 | C.Cast (te,ty) -> C.Cast (um_aux te, um_aux ty)
197 | C.Prod (n,s,t) -> C.Prod (n, um_aux s, um_aux t)
198 | C.Lambda (n,s,t) -> C.Lambda (n, um_aux s, um_aux t)
199 | C.LetIn (n,s,t) -> C.LetIn (n, um_aux s, um_aux t)
200 | C.Appl (hd :: tl) -> appl_fun um_aux hd tl
201 | C.Appl _ -> assert false
202 | C.Const (uri,exp_named_subst) ->
203 let exp_named_subst' =
204 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
206 C.Const (uri, exp_named_subst')
207 | C.MutInd (uri,typeno,exp_named_subst) ->
208 let exp_named_subst' =
209 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
211 C.MutInd (uri,typeno,exp_named_subst')
212 | C.MutConstruct (uri,typeno,consno,exp_named_subst) ->
213 let exp_named_subst' =
214 List.map (fun (uri, t) -> (uri, um_aux t)) exp_named_subst
216 C.MutConstruct (uri,typeno,consno,exp_named_subst')
217 | C.MutCase (sp,i,outty,t,pl) ->
218 let pl' = List.map um_aux pl in
219 C.MutCase (sp, i, um_aux outty, um_aux t, pl')
222 List.map (fun (name, i, ty, bo) -> (name, i, um_aux ty, um_aux bo)) fl
227 List.map (fun (name, ty, bo) -> (name, um_aux ty, um_aux bo)) fl
235 let appl_fun um_aux he tl =
236 let tl' = List.map um_aux tl in
239 Cic.Appl l -> Cic.Appl (l@tl')
240 | he' -> Cic.Appl (he'::tl')
244 Cic.Meta (m,_) -> CicReduction.head_beta_reduce t'
249 (* incr apply_subst_counter; *)
250 apply_subst_gen ~appl_fun s t
253 let rec apply_subst_context subst context =
255 incr apply_subst_context_counter;
256 context_length := !context_length + List.length context;
261 | Some (n, Cic.Decl t) ->
262 let t' = apply_subst subst t in
263 Some (n, Cic.Decl t') :: context
264 | Some (n, Cic.Def (t, ty)) ->
268 | Some ty -> Some (apply_subst subst ty)
270 let t' = apply_subst subst t in
271 Some (n, Cic.Def (t', ty')) :: context
272 | None -> None :: context)
275 let apply_subst_metasenv subst metasenv =
277 incr apply_subst_metasenv_counter;
278 metasenv_length := !metasenv_length + List.length metasenv;
281 (fun (n, context, ty) ->
282 (n, apply_subst_context subst context, apply_subst subst ty))
284 (fun (i, _, _) -> not (List.mem_assoc i subst))
287 (***** Pretty printing functions ******)
289 let ppterm subst term = CicPp.ppterm (apply_subst subst term)
291 let ppterm_in_context subst term name_context =
292 CicPp.pp (apply_subst subst term) name_context
294 let ppcontext' ?(sep = "\n") subst context =
295 let separate s = if s = "" then "" else s ^ sep in
297 (fun context_entry (i,name_context) ->
298 match context_entry with
299 Some (n,Cic.Decl t) ->
300 sprintf "%s%s : %s" (separate i) (CicPp.ppname n)
301 (ppterm_in_context subst t name_context), (Some n)::name_context
302 | Some (n,Cic.Def (bo,ty)) ->
303 sprintf "%s%s : %s := %s" (separate i) (CicPp.ppname n)
306 | Some ty -> ppterm_in_context subst ty name_context)
307 (ppterm_in_context subst bo name_context), (Some n)::name_context
309 sprintf "%s_ :? _" (separate i), None::name_context
312 let ppsubst_unfolded subst =
315 (fun (idx, (c, t,_)) ->
316 let context,name_context = ppcontext' ~sep:"; " subst c in
317 sprintf "%s |- ?%d:= %s" context idx
318 (ppterm_in_context subst t name_context))
321 Printf.sprintf "?%d := %s" idx (CicPp.ppterm term))
328 (fun (idx, (c, t, _)) ->
329 let context,name_context = ppcontext' ~sep:"; " [] c in
330 sprintf "%s |- ?%d:= %s" context idx
331 (ppterm_in_context [] t name_context))
335 let ppcontext ?sep subst context = fst (ppcontext' ?sep subst context)
337 let ppmetasenv ?(sep = "\n") metasenv subst =
341 let context,name_context = ppcontext' ~sep:"; " subst c in
342 sprintf "%s |- ?%d: %s" context i
343 (ppterm_in_context subst t name_context))
345 (fun (i, _, _) -> not (List.mem_assoc i subst))
348 let tempi_type_of_aux_subst = ref 0.0;;
349 let tempi_subst = ref 0.0;;
350 let tempi_type_of_aux = ref 0.0;;
353 (* the delift function takes in input a metavariable index, an ordered list of
354 * optional terms [t1,...,tn] and a term t, and substitutes every tk = Some
355 * (rel(nk)) with rel(k). Typically, the list of optional terms is the explicit
356 * substitution that is applied to a metavariable occurrence and the result of
357 * the delift function is a term the implicit variable can be substituted with
358 * to make the term [t] unifiable with the metavariable occurrence. In general,
359 * the problem is undecidable if we consider equivalence in place of alpha
360 * convertibility. Our implementation, though, is even weaker than alpha
361 * convertibility, since it replace the term [tk] if and only if [tk] is a Rel
362 * (missing all the other cases). Does this matter in practice?
363 * The metavariable index is the index of the metavariable that must not occur
364 * in the term (for occur check).
367 exception NotInTheList;;
372 [] -> raise NotInTheList
373 | (Some (Cic.Rel m))::_ when m=n -> k
374 | _::tl -> aux (k+1) tl in
380 let rec force_does_not_occur subst to_be_restricted t =
381 let module C = Cic in
382 let more_to_be_restricted = ref [] in
383 let rec aux k = function
384 C.Rel r when List.mem (r - k) to_be_restricted -> raise Occur
387 | C.Implicit _ -> assert false
389 (* we do not retrieve the term associated to ?n in subst since *)
390 (* in this way we can restrict if something goes wrong *)
402 more_to_be_restricted := (n,!i) :: !more_to_be_restricted;
407 | C.Cast (te,ty) -> C.Cast (aux k te, aux k ty)
408 | C.Prod (name,so,dest) -> C.Prod (name, aux k so, aux (k+1) dest)
409 | C.Lambda (name,so,dest) -> C.Lambda (name, aux k so, aux (k+1) dest)
410 | C.LetIn (name,so,dest) -> C.LetIn (name, aux k so, aux (k+1) dest)
411 | C.Appl l -> C.Appl (List.map (aux k) l)
412 | C.Var (uri,exp_named_subst) ->
413 let exp_named_subst' =
414 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
416 C.Var (uri, exp_named_subst')
417 | C.Const (uri, exp_named_subst) ->
418 let exp_named_subst' =
419 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
421 C.Const (uri, exp_named_subst')
422 | C.MutInd (uri,tyno,exp_named_subst) ->
423 let exp_named_subst' =
424 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
426 C.MutInd (uri, tyno, exp_named_subst')
427 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
428 let exp_named_subst' =
429 List.map (fun (uri,t) -> (uri, aux k t)) exp_named_subst
431 C.MutConstruct (uri, tyno, consno, exp_named_subst')
432 | C.MutCase (uri,tyno,out,te,pl) ->
433 C.MutCase (uri, tyno, aux k out, aux k te, List.map (aux k) pl)
435 let len = List.length fl in
436 let k_plus_len = k + len in
439 (fun (name,j,ty,bo) -> (name, j, aux k ty, aux k_plus_len bo)) fl
443 let len = List.length fl in
444 let k_plus_len = k + len in
447 (fun (name,ty,bo) -> (name, aux k ty, aux k_plus_len bo)) fl
452 (!more_to_be_restricted, res)
454 let rec restrict subst to_be_restricted metasenv =
455 let names_of_context_indexes context indexes =
460 match List.nth context (i-1) with
461 | None -> assert false
462 | Some (n, _) -> CicPp.ppname n
464 Failure _ -> assert false
467 let force_does_not_occur_in_context to_be_restricted = function
469 | Some (name, Cic.Decl t) ->
470 let (more_to_be_restricted, t') =
471 force_does_not_occur subst to_be_restricted t
473 more_to_be_restricted, Some (name, Cic.Decl t')
474 | Some (name, Cic.Def (bo, ty)) ->
475 let (more_to_be_restricted, bo') =
476 force_does_not_occur subst to_be_restricted bo
478 let more_to_be_restricted, ty' =
480 | None -> more_to_be_restricted, None
482 let more_to_be_restricted', ty' =
483 force_does_not_occur subst to_be_restricted ty
485 more_to_be_restricted @ more_to_be_restricted',
488 more_to_be_restricted, Some (name, Cic.Def (bo', ty'))
490 let rec erase i to_be_restricted n = function
491 | [] -> [], to_be_restricted, []
493 let more_to_be_restricted,restricted,tl' =
494 erase (i+1) to_be_restricted n tl
496 let restrict_me = List.mem i restricted in
498 more_to_be_restricted, restricted, None:: tl'
501 let more_to_be_restricted', hd' =
502 let delifted_restricted =
506 | j::tl when j > i -> (j - i)::aux tl
511 force_does_not_occur_in_context delifted_restricted hd
513 more_to_be_restricted @ more_to_be_restricted',
514 restricted, hd' :: tl'
516 more_to_be_restricted, (i :: restricted), None :: tl')
518 let (more_to_be_restricted, metasenv) = (* restrict metasenv *)
520 (fun (n, context, t) (more, metasenv) ->
521 let to_be_restricted =
522 List.map snd (List.filter (fun (m, _) -> m = n) to_be_restricted)
524 let (more_to_be_restricted, restricted, context') =
525 (* just an optimization *)
526 if to_be_restricted = [] then
529 erase 1 to_be_restricted n context
532 let more_to_be_restricted', t' =
533 force_does_not_occur subst restricted t
535 let metasenv' = (n, context', t') :: metasenv in
536 (more @ more_to_be_restricted @ more_to_be_restricted',
539 raise (MetaSubstFailure (sprintf
540 "Cannot restrict the context of the metavariable ?%d over the hypotheses %s since metavariable's type depends on at least one of them"
541 n (names_of_context_indexes context to_be_restricted))))
544 let (more_to_be_restricted', subst) = (* restrict subst *)
546 (* TODO: cambiare dopo l'aggiunta del ty *)
547 (fun (n, (context, term,ty)) (more, subst') ->
548 let to_be_restricted =
549 List.map snd (List.filter (fun (m, _) -> m = n) to_be_restricted)
552 let (more_to_be_restricted, restricted, context') =
553 (* just an optimization *)
554 if to_be_restricted = [] then
557 erase 1 to_be_restricted n context
559 let more_to_be_restricted', term' =
560 force_does_not_occur subst restricted term
562 let more_to_be_restricted'', ty' =
563 force_does_not_occur subst restricted ty in
564 let subst' = (n, (context', term',ty')) :: subst' in
566 more @ more_to_be_restricted
567 @ more_to_be_restricted'@more_to_be_restricted'' in
570 let error_msg = sprintf
571 "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"
572 n (names_of_context_indexes context to_be_restricted) n
576 debug_print error_msg;
577 debug_print ("metasenv = \n" ^ (ppmetasenv metasenv subst));
578 debug_print ("subst = \n" ^ (ppsubst subst));
579 debug_print ("context = \n" ^ (ppcontext subst context)); *)
580 raise (MetaSubstFailure error_msg)))
583 match more_to_be_restricted @ more_to_be_restricted' with
584 | [] -> (metasenv, subst)
585 | l -> restrict subst l metasenv
588 (*CSC: maybe we should rename delift in abstract, as I did in my dissertation *)(*Andrea: maybe not*)
590 let delift n subst context metasenv l t =
591 (* INVARIANT: we suppose that t is not another occurrence of Meta(n,_),
592 otherwise the occur check does not make sense *)
595 debug_print ("sto deliftando il termine " ^ (CicPp.ppterm t) ^ " rispetto
596 al contesto locale " ^ (CicPp.ppterm (Cic.Meta(0,l))));
599 let module S = CicSubstitution in
601 let (_, canonical_context, _) = CicUtil.lookup_meta n metasenv in
602 List.map2 (fun ct lt ->
608 let to_be_restricted = ref [] in
609 let rec deliftaux k =
610 let module C = Cic in
614 C.Rel m (*CSC: che succede se c'e' un Def? Dovrebbe averlo gia' *)
615 (*CSC: deliftato la regola per il LetIn *)
616 (*CSC: FALSO! La regola per il LetIn non lo fa *)
619 match List.nth context (m-k-1) with
620 Some (_,C.Def (t,_)) ->
621 (*CSC: Hmmm. This bit of reduction is not in the spirit of *)
622 (*CSC: first order unification. Does it help or does it harm? *)
623 deliftaux k (S.lift m t)
624 | Some (_,C.Decl t) ->
625 C.Rel ((position (m-k) l) + k)
626 | None -> raise (MetaSubstFailure "RelToHiddenHypothesis")
629 raise (MetaSubstFailure "Unbound variable found in deliftaux")
631 | C.Var (uri,exp_named_subst) ->
632 let exp_named_subst' =
633 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
635 C.Var (uri,exp_named_subst')
636 | C.Meta (i, l1) as t ->
638 let (_,t,_) = CicUtil.lookup_subst i subst in
639 deliftaux k (CicSubstitution.subst_meta l1 t)
640 with CicUtil.Subst_not_found _ ->
641 (* see the top level invariant *)
643 raise (MetaSubstFailure (sprintf
644 "Cannot unify the metavariable ?%d with a term that has as subterm %s in which the same metavariable occurs (occur check)"
648 (* I do not consider the term associated to ?i in subst since *)
649 (* in this way I can restrict if something goes wrong. *)
653 | None::tl -> None::(deliftl (j+1) tl)
655 let l1' = (deliftl (j+1) tl) in
657 Some (deliftaux k t)::l1'
660 | MetaSubstFailure _ ->
662 (i,j)::!to_be_restricted ; None::l1'
664 let l' = deliftl 1 l1 in
668 | C.Implicit _ as t -> t
669 | C.Cast (te,ty) -> C.Cast (deliftaux k te, deliftaux k ty)
670 | C.Prod (n,s,t) -> C.Prod (n, deliftaux k s, deliftaux (k+1) t)
671 | C.Lambda (n,s,t) -> C.Lambda (n, deliftaux k s, deliftaux (k+1) t)
672 | C.LetIn (n,s,t) -> C.LetIn (n, deliftaux k s, deliftaux (k+1) t)
673 | C.Appl l -> C.Appl (List.map (deliftaux k) l)
674 | C.Const (uri,exp_named_subst) ->
675 let exp_named_subst' =
676 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
678 C.Const (uri,exp_named_subst')
679 | C.MutInd (uri,typeno,exp_named_subst) ->
680 let exp_named_subst' =
681 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
683 C.MutInd (uri,typeno,exp_named_subst')
684 | C.MutConstruct (uri,typeno,consno,exp_named_subst) ->
685 let exp_named_subst' =
686 List.map (function (uri,t) -> uri,deliftaux k t) exp_named_subst
688 C.MutConstruct (uri,typeno,consno,exp_named_subst')
689 | C.MutCase (sp,i,outty,t,pl) ->
690 C.MutCase (sp, i, deliftaux k outty, deliftaux k t,
691 List.map (deliftaux k) pl)
693 let len = List.length fl in
696 (fun (name, i, ty, bo) ->
697 (name, i, deliftaux k ty, deliftaux (k+len) bo))
702 let len = List.length fl in
705 (fun (name, ty, bo) -> (name, deliftaux k ty, deliftaux (k+len) bo))
708 C.CoFix (i, liftedfl)
715 (* This is the case where we fail even first order unification. *)
716 (* The reason is that our delift function is weaker than first *)
717 (* order (in the sense of alpha-conversion). See comment above *)
718 (* related to the delift function. *)
719 (* debug_print "First Order UnificationFailure during delift" ;
721 "Error trying to abstract %s over [%s]: the algorithm only tried to abstract over bound variables"
725 (function Some t -> ppterm subst t | None -> "_") l
727 raise (Uncertain (sprintf
728 "Error trying to abstract %s over [%s]: the algorithm only tried to abstract over bound variables"
732 (function Some t -> ppterm subst t | None -> "_")
735 let (metasenv, subst) = restrict subst !to_be_restricted metasenv in
739 (* delifts a term t of n levels strating from k, that is changes (Rel m)
740 * to (Rel (m - n)) when m > (k + n). if k <= m < k + n delift fails
742 let delift_rels_from subst metasenv k n =
743 let rec liftaux subst metasenv k =
744 let module C = Cic in
748 C.Rel m, subst, metasenv
749 else if m < k + n then
750 raise DeliftingARelWouldCaptureAFreeVariable
752 C.Rel (m - n), subst, metasenv
753 | C.Var (uri,exp_named_subst) ->
754 let exp_named_subst',subst,metasenv =
756 (fun (uri,t) (l,subst,metasenv) ->
757 let t',subst,metasenv = liftaux subst metasenv k t in
758 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
760 C.Var (uri,exp_named_subst'),subst,metasenv
763 let (_, t,_) = lookup_subst i subst in
764 liftaux subst metasenv k (CicSubstitution.subst_meta l t)
765 with CicUtil.Subst_not_found _ ->
766 let l',to_be_restricted,subst,metasenv =
767 let rec aux con l subst metasenv =
769 [] -> [],[],subst,metasenv
771 let tl',to_be_restricted,subst,metasenv =
772 aux (con + 1) tl subst metasenv in
773 let he',more_to_be_restricted,subst,metasenv =
775 None -> None,[],subst,metasenv
778 let t',subst,metasenv = liftaux subst metasenv k t in
779 Some t',[],subst,metasenv
781 DeliftingARelWouldCaptureAFreeVariable ->
782 None,[i,con],subst,metasenv
784 he'::tl',more_to_be_restricted@to_be_restricted,subst,metasenv
786 aux 1 l subst metasenv in
787 let metasenv,subst = restrict subst to_be_restricted metasenv in
788 C.Meta(i,l'),subst,metasenv)
789 | C.Sort _ as t -> t,subst,metasenv
790 | C.Implicit _ as t -> t,subst,metasenv
792 let te',subst,metasenv = liftaux subst metasenv k te in
793 let ty',subst,metasenv = liftaux subst metasenv k ty in
794 C.Cast (te',ty'),subst,metasenv
796 let s',subst,metasenv = liftaux subst metasenv k s in
797 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
798 C.Prod (n,s',t'),subst,metasenv
799 | C.Lambda (n,s,t) ->
800 let s',subst,metasenv = liftaux subst metasenv k s in
801 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
802 C.Lambda (n,s',t'),subst,metasenv
804 let s',subst,metasenv = liftaux subst metasenv k s in
805 let t',subst,metasenv = liftaux subst metasenv (k+1) t in
806 C.LetIn (n,s',t'),subst,metasenv
808 let l',subst,metasenv =
810 (fun t (l,subst,metasenv) ->
811 let t',subst,metasenv = liftaux subst metasenv k t in
812 t'::l,subst,metasenv) l ([],subst,metasenv) in
813 C.Appl l',subst,metasenv
814 | C.Const (uri,exp_named_subst) ->
815 let exp_named_subst',subst,metasenv =
817 (fun (uri,t) (l,subst,metasenv) ->
818 let t',subst,metasenv = liftaux subst metasenv k t in
819 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
821 C.Const (uri,exp_named_subst'),subst,metasenv
822 | C.MutInd (uri,tyno,exp_named_subst) ->
823 let exp_named_subst',subst,metasenv =
825 (fun (uri,t) (l,subst,metasenv) ->
826 let t',subst,metasenv = liftaux subst metasenv k t in
827 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
829 C.MutInd (uri,tyno,exp_named_subst'),subst,metasenv
830 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
831 let exp_named_subst',subst,metasenv =
833 (fun (uri,t) (l,subst,metasenv) ->
834 let t',subst,metasenv = liftaux subst metasenv k t in
835 (uri,t')::l,subst,metasenv) exp_named_subst ([],subst,metasenv)
837 C.MutConstruct (uri,tyno,consno,exp_named_subst'),subst,metasenv
838 | C.MutCase (sp,i,outty,t,pl) ->
839 let outty',subst,metasenv = liftaux subst metasenv k outty in
840 let t',subst,metasenv = liftaux subst metasenv k t in
841 let pl',subst,metasenv =
843 (fun t (l,subst,metasenv) ->
844 let t',subst,metasenv = liftaux subst metasenv k t in
845 t'::l,subst,metasenv) pl ([],subst,metasenv)
847 C.MutCase (sp,i,outty',t',pl'),subst,metasenv
849 let len = List.length fl in
850 let liftedfl,subst,metasenv =
852 (fun (name, i, ty, bo) (l,subst,metasenv) ->
853 let ty',subst,metasenv = liftaux subst metasenv k ty in
854 let bo',subst,metasenv = liftaux subst metasenv (k+len) bo in
855 (name,i,ty',bo')::l,subst,metasenv
856 ) fl ([],subst,metasenv)
858 C.Fix (i, liftedfl),subst,metasenv
860 let len = List.length fl in
861 let liftedfl,subst,metasenv =
863 (fun (name, ty, bo) (l,subst,metasenv) ->
864 let ty',subst,metasenv = liftaux subst metasenv k ty in
865 let bo',subst,metasenv = liftaux subst metasenv (k+len) bo in
866 (name,ty',bo')::l,subst,metasenv
867 ) fl ([],subst,metasenv)
869 C.CoFix (i, liftedfl),subst,metasenv
871 liftaux subst metasenv k
873 let delift_rels subst metasenv n t =
874 delift_rels_from subst metasenv 1 n t
877 (**** END OF DELIFT ****)
880 (** {2 Format-like pretty printers} *)
883 Format.pp_print_string ppf s;
884 Format.pp_print_newline ppf ();
885 Format.pp_print_flush ppf ()
887 let fppsubst ppf subst = fpp_gen ppf (ppsubst subst)
888 let fppterm ppf term = fpp_gen ppf (CicPp.ppterm term)
889 let fppmetasenv ppf metasenv = fpp_gen ppf (ppmetasenv metasenv [])