2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department, University of Bologna, Italy.
6 ||T|| HELM is free software; you can redistribute it and/or
7 ||A|| modify it under the terms of the GNU General Public License
8 \ / version 2 or (at your option) any later version.
9 \ / This software is distributed as is, NO WARRANTY.
10 V_______________________________________________________________ *)
14 exception RefineFailure of (Stdpp.location * string) Lazy.t;;
15 exception Uncertain of (Stdpp.location * string) Lazy.t;;
16 exception AssertFailure of string Lazy.t;;
19 module Ref = NReference
21 let debug = ref false;;
26 prerr_endline (Printf.sprintf "%-20s" !indent ^ " " ^ Lazy.force s)
31 let time1 = Unix.gettimeofday () in
32 indent := !indent ^ String.make 1 c;
33 times := time1 :: !times;
34 prerr_endline ("{{{" ^ !indent ^ " ")
40 let time2 = Unix.gettimeofday () in
42 match !times with time1::tl -> times := tl; time1 | [] -> assert false in
43 prerr_endline ("}}} " ^ string_of_float (time2 -. time1));
44 if not ok then prerr_endline "exception raised!";
46 indent := String.sub !indent 0 (String.length !indent -1)
48 Invalid_argument _ -> indent := "??"; ()
53 let wrap_exc msg = function
54 | NCicUnification.Uncertain _ -> Uncertain msg
55 | NCicUnification.UnificationFailure _ -> RefineFailure msg
56 | NCicTypeChecker.TypeCheckerFailure _ -> RefineFailure msg
60 let exp_implicit status ~localise metasenv subst context with_type t =
63 let metasenv,subst,expty =
65 None -> metasenv,subst,None
67 let (metasenv,subst),typ =
69 NCicMetaSubst.delift status
70 ~unify:(fun m s c t1 t2 ->
71 try Some (NCicUnification.unify status m s c t1 t2)
72 with NCicUnification.UnificationFailure _ | NCicUnification.Uncertain _ -> None)
73 metasenv subst context (-1) (0,NCic.Irl 0) typ
75 NCicMetaSubst.MetaSubstFailure _
76 | NCicMetaSubst.Uncertain _ ->
77 raise (RefineFailure (lazy (localise t,"Trying to create a closed meta with a non closed type: " ^ status#ppterm ~metasenv ~subst ~context typ)))
80 metasenv,subst,Some typ
82 NCicMetaSubst.mk_meta metasenv [] ?with_type:expty `IsTerm,subst
83 | `Type -> NCicMetaSubst.mk_meta metasenv context ?with_type `IsType,subst
84 | `Term -> NCicMetaSubst.mk_meta metasenv context ?with_type `IsTerm,subst
87 ~attrs:[`Name s] metasenv context ?with_type `IsTerm,subst
89 raise (RefineFailure (lazy (localise t, "A vector of implicit terms " ^
90 "can only be used in argument position")))
94 let check_allowed_sort_elimination status localise r orig =
97 | C.Appl l -> C.Appl (l @ [arg])
98 | t -> C.Appl [t;arg] in
99 (* ctx, ind_type @ lefts, sort_of_ind_ty@lefts, outsort *)
100 let rec aux metasenv subst context ind arity1 arity2 =
101 (*D*)inside 'S'; try let rc =
102 let arity1 = NCicReduction.whd status ~subst context arity1 in
103 pp (lazy(status#ppterm ~subst ~metasenv ~context arity1 ^ " elimsto " ^
104 status#ppterm ~subst ~metasenv ~context arity2 ^ "\nMENV:\n"^
105 status#ppmetasenv ~subst metasenv));
107 | C.Prod (name,so1,de1) (* , t ==?== C.Prod _ *) ->
108 let metasenv, _, meta, _ =
109 NCicMetaSubst.mk_meta metasenv ((name,C.Decl so1)::context) `IsType
111 let metasenv, subst =
112 try NCicUnification.unify status metasenv subst context
113 arity2 (C.Prod (name, so1, meta))
114 with exc -> raise (wrap_exc (lazy (localise orig, Printf.sprintf
115 "expected %s, found %s" (* XXX localizzare meglio *)
116 (status#ppterm ~subst ~metasenv ~context (C.Prod (name, so1, meta)))
117 (status#ppterm ~subst ~metasenv ~context arity2))) exc)
119 aux metasenv subst ((name, C.Decl so1)::context)
120 (mkapp (NCicSubstitution.lift status 1 ind) (C.Rel 1)) de1 meta
121 | C.Sort _ (* , t ==?== C.Prod _ *) ->
122 let metasenv, _, meta, _ = NCicMetaSubst.mk_meta metasenv [] `IsSort in
123 let metasenv, subst =
124 try NCicUnification.unify status metasenv subst context
125 arity2 (C.Prod ("_", ind, meta))
126 with exc -> raise (wrap_exc (lazy (localise orig, Printf.sprintf
127 "expected %s, found %s" (* XXX localizzare meglio *)
128 (status#ppterm ~subst ~metasenv ~context (C.Prod ("_", ind, meta)))
129 (status#ppterm ~subst ~metasenv ~context arity2))) exc)
131 (try NCicTypeChecker.check_allowed_sort_elimination status
132 ~metasenv ~subst r context ind arity1 arity2;
134 with exc -> raise (wrap_exc (lazy (localise orig,
135 "Sort elimination not allowed ")) exc))
137 (*D*)in outside true; rc with exc -> outside false; raise exc
142 (* CSC: temporary thing, waiting for better times *)
143 let mk_fresh_name context name =
145 let rex = Str.regexp "[0-9']*$" in
146 let rex2 = Str.regexp "'*$" in
147 let basename = Str.global_replace rex "" in
149 ignore (Str.search_forward rex name 0);
150 let n = Str.matched_string name in
151 let n = Str.global_replace rex2 "" n in
152 if n = "" then 0 else int_of_string n
154 let name' = basename name in
155 let name' = if name' = "_" then "H" else name' in
158 (fun last (name,_) ->
159 if basename name = name' then
160 max last (suffix name)
165 name' ^ (if last = -1 then "" else string_of_int (last + 1))
166 with exn -> prerr_endline ("XXX" ^ Printexc.to_string exn); assert false
168 let rec typeof (status:#NCicCoercion.status)
169 ?(localise=fun _ -> Stdpp.dummy_loc)
170 metasenv subst context term expty
172 let force_ty skip_lambda skip_appl metasenv subst context orig t infty expty =
173 (*D*)inside 'F'; try let rc =
177 | C.Implicit _ -> assert false
178 | C.Lambda _ when skip_lambda -> metasenv, subst, t, expty
179 | C.Appl _ when skip_appl -> metasenv, subst, t, expty
181 pp (lazy ("forcing infty=expty: "^
182 (status#ppterm ~metasenv ~subst ~context infty) ^ " === " ^
183 (status#ppterm ~metasenv ~subst:[] ~context expty)));
185 let metasenv, subst =
186 (*D*)inside 'U'; try let rc =
187 NCicUnification.unify status metasenv subst context infty expty
188 (*D*)in outside true; rc with exc -> outside false; raise exc
190 metasenv, subst, t, expty
192 | NCicUnification.Uncertain _
193 | NCicUnification.UnificationFailure _ as exc ->
194 try_coercions status ~localise
195 metasenv subst context t orig infty (`Type expty) exc)
196 | None -> metasenv, subst, t, infty
197 (*D*)in outside true; rc with exc -> outside false; raise exc
199 let rec typeof_aux metasenv subst context expty =
201 (*D*)inside 'R'; try let rc =
202 pp (lazy (status#ppterm ~metasenv ~subst ~context t ^ " ::exp:: " ^
203 match expty with None -> "None" | Some e ->
204 status#ppterm ~metasenv ~subst ~context e));
205 let metasenv, subst, t, infty =
210 match List.nth context (n - 1) with
211 | (_,C.Decl ty) -> NCicSubstitution.lift status n ty
212 | (_,C.Def (_,ty)) -> NCicSubstitution.lift status n ty
214 raise (RefineFailure (lazy (localise t,"unbound variable"))))
216 metasenv, subst, t, infty
218 (try metasenv, subst, t, C.Sort (NCicEnvironment.typeof_sort s)
220 | NCicEnvironment.UntypableSort msg ->
221 raise (RefineFailure (lazy (localise t, Lazy.force msg)))
222 | NCicEnvironment.AssertFailure msg -> raise (AssertFailure msg))
223 | C.Implicit infos ->
224 let (metasenv,_,t,ty),subst =
225 exp_implicit status ~localise metasenv subst context expty t infos
228 typeof_aux metasenv subst context None t
230 metasenv, subst, t, ty
231 | C.Meta (n,l) as t ->
234 let _,_,_,ty = NCicUtils.lookup_subst n subst in metasenv, ty
235 with NCicUtils.Subst_not_found _ ->
236 NCicMetaSubst.extend_meta metasenv n
238 metasenv, subst, t, NCicSubstitution.subst_meta status l ty
240 metasenv, subst, t, NCicTypeChecker.typeof status ~subst ~metasenv context t
241 | C.Prod (name,(s as orig_s),(t as orig_t)) ->
242 let metasenv, subst, s, s1 = typeof_aux metasenv subst context None s in
243 let metasenv, subst, s, s1 =
245 metasenv subst context s orig_s localise s1 in
246 let context1 = (name,(C.Decl s))::context in
247 let metasenv, subst, t, s2 = typeof_aux metasenv subst context1 None t in
248 let metasenv, subst, t, s2 =
250 metasenv subst context1 t orig_t localise s2 in
251 let metasenv, subst, s, t, ty =
252 sort_of_prod status localise metasenv subst
253 context orig_s orig_t (name,s) t (s1,s2)
255 metasenv, subst, NCic.Prod(name,s,t), ty
256 | C.Lambda (n,(s as orig_s),t) as orig ->
257 let exp_s, exp_ty_t, force_after =
259 | None -> None, None, false
261 match NCicReduction.whd status ~subst context expty with
262 | C.Prod (_,s,t) -> Some s, Some t, false
263 | _ -> None, None, true
265 let (metasenv,subst), s =
268 (* optimized case: implicit and implicitly typed meta
269 * the optimization prevents proliferation of metas *)
271 | C.Implicit _ -> (metasenv,subst),exp_s
273 let metasenv, subst, s = match s with
275 when (try (match NCicUtils.lookup_meta n metasenv with
276 | _,_,C.Implicit (`Typeof _) -> true
279 | _ -> false) -> metasenv, subst, s
280 | _ -> check_type status ~localise metasenv subst context s in
282 pp(lazy("Force source to: "^status#ppterm ~metasenv ~subst
284 NCicUnification.unify ~test_eq_only:true status metasenv subst context s exp_s,s
285 with exc -> raise (wrap_exc (lazy (localise orig_s, Printf.sprintf
286 "Source type %s was expected to be %s" (status#ppterm ~metasenv
287 ~subst ~context s) (status#ppterm ~metasenv ~subst ~context
290 let metasenv, subst, s =
291 check_type status ~localise metasenv subst context s in
294 let context_for_t = (n,C.Decl s) :: context in
295 let metasenv, subst, t, ty_t =
296 typeof_aux metasenv subst context_for_t exp_ty_t t
299 force_ty false true metasenv subst context orig
300 (C.Lambda(n,s,t)) (C.Prod (n,s,ty_t)) expty
302 metasenv, subst, C.Lambda(n,s,t), C.Prod (n,s,ty_t)
303 | C.LetIn (n,ty,t,bo) ->
304 let metasenv, subst, ty =
305 check_type status ~localise metasenv subst context ty in
306 let metasenv, subst, t, _ =
307 typeof_aux metasenv subst context (Some ty) t in
308 let context1 = (n, C.Def (t,ty)) :: context in
309 let metasenv, subst, expty1 =
311 | None -> metasenv, subst, None
314 NCicUnification.delift_type_wrt_terms
315 status metasenv subst context1 (NCicSubstitution.lift status 1 x)
316 [NCicSubstitution.lift status 1 t]
320 let metasenv, subst, bo, bo_ty =
321 typeof_aux metasenv subst context1 expty1 bo
323 let bo_ty = NCicSubstitution.subst status ~avoid_beta_redexes:true t bo_ty in
324 metasenv, subst, C.LetIn (n, ty, t, bo), bo_ty
325 | C.Appl ((he as orig_he)::(_::_ as args)) ->
326 let upto = match orig_he with C.Meta _ -> List.length args | _ -> 0 in
328 if upto > 0 then NCicReduction.head_beta_reduce status ~upto t else t
330 let refine_appl metasenv subst args =
331 let metasenv, subst, he, ty_he =
332 typeof_aux metasenv subst context None he in
333 let metasenv, subst, t, ty =
334 eat_prods status ~localise force_ty metasenv subst context expty t
335 orig_he he ty_he args in
336 metasenv, subst, hbr t, ty
338 if args = [C.Implicit `Vector] && expty <> None then
339 (* we try here to expand the vector a 0 implicits, but we use
340 * the expected type *)
342 let metasenv, subst, he, ty_he =
343 typeof_aux metasenv subst context expty he in
344 metasenv, subst, hbr he, ty_he
345 with Uncertain _ | RefineFailure _ -> refine_appl metasenv subst args
347 (* CSC: whd can be useful on he too... *)
349 C.Const (Ref.Ref (uri1,Ref.Con _)) -> (
351 HExtlib.map_option (NCicReduction.whd status ~subst context) expty
353 Some (C.Appl(C.Const(Ref.Ref (uri2,Ref.Ind _) as ref)::expargs))
354 when NUri.eq uri1 uri2 ->
356 let _,leftno,_,_,_ = NCicEnvironment.get_checked_indtys status ref in
357 let leftexpargs,_ = HExtlib.split_nth leftno expargs in
358 let rec instantiate metasenv subst revargs args =
361 (* some checks are re-done here, but it would be complex
362 to avoid them (e.g. we did not check yet that the
363 constructor is a constructor for that inductive type)*)
364 refine_appl metasenv subst ((List.rev revargs)@args)
365 | (exparg::expargs) as allexpargs ->
367 [] -> raise (Failure "Not enough args")
368 | (C.Implicit `Vector::args) as allargs ->
370 instantiate metasenv subst revargs args allexpargs
372 Sys.Break as exn -> raise exn
374 instantiate metasenv subst revargs
375 (C.Implicit `Term :: allargs) allexpargs)
377 let metasenv,subst,arg,_ =
378 typeof_aux metasenv subst context None arg in
380 NCicUnification.unify status metasenv subst context
383 instantiate metasenv subst(arg::revargs) args expargs
385 instantiate metasenv subst [] args leftexpargs
387 | Sys.Break as exn -> raise exn
389 refine_appl metasenv subst args (* to try coercions *))
390 | _ -> refine_appl metasenv subst args)
391 | _ -> refine_appl metasenv subst args)
392 | C.Appl _ -> raise (AssertFailure (lazy "Appl of length < 2"))
393 | C.Match (Ref.Ref (_,Ref.Ind (_,tyno,_)) as r,
394 outtype,(term as orig_term),pl) as orig ->
395 let _, leftno, itl, _, _ = NCicEnvironment.get_checked_indtys status r in
396 let _, _, arity, cl = List.nth itl tyno in
397 let constructorsno = List.length cl in
398 let _, metasenv, args =
399 NCicMetaSubst.saturate status metasenv subst context arity 0 in
400 let ind = if args = [] then C.Const r else C.Appl (C.Const r::args) in
401 let metasenv, subst, term, _ =
402 typeof_aux metasenv subst context (Some ind) term in
403 let parameters, arguments = HExtlib.split_nth leftno args in
406 | C.Implicit _ as ot ->
407 let rec aux = function
408 | [] -> NCic.Lambda ("_",NCic.Implicit `Type,ot)
409 | _::tl -> NCic.Lambda ("_",NCic.Implicit `Type,aux tl)
414 let metasenv, subst, outtype, outsort =
415 typeof_aux metasenv subst context None outtype in
417 (* next lines are to do a subst-expansion of the outtype, so
418 that when it becomes a beta-abstraction, the beta-redex is
419 fired during substitution *)
420 let _,fresh_metanoouttype,newouttype,_ =
421 NCicMetaSubst.mk_meta metasenv context `IsTerm in
423 (fresh_metanoouttype,([`Name "outtype"],context,outtype,outsort))
425 let outtype = newouttype in
427 (* let's control if the sort elimination is allowed: [(I q1 ... qr)|B] *)
429 if parameters = [] then C.Const r
430 else C.Appl ((C.Const r)::parameters) in
431 let metasenv, subst, ind, ind_ty =
432 typeof_aux metasenv subst context None ind in
433 let metasenv, subst =
434 check_allowed_sort_elimination status localise r orig_term metasenv subst
435 context ind ind_ty outsort
437 (* let's check if the type of branches are right *)
438 if List.length pl <> constructorsno then
439 raise (RefineFailure (lazy (localise orig,
440 "Wrong number of cases in a match")));
442 let metasenv, subst =
444 | None -> metasenv, subst
446 NCicUnification.unify status metasenv subst context resty expty
449 let _, metasenv, subst, pl =
451 (fun p (j, metasenv, subst, branches) ->
453 let cons = Ref.mk_constructor j r in
454 if parameters = [] then C.Const cons
455 else C.Appl (C.Const cons::parameters)
457 let metasenv, subst, cons, ty_cons =
458 typeof_aux metasenv subst context None cons in
460 NCicTypeChecker.type_of_branch status
461 ~subst context leftno outtype cons ty_cons in
462 pp (lazy ("TYPEOFBRANCH: " ^
463 status#ppterm ~metasenv ~subst ~context p ^ " ::inf:: " ^
464 status#ppterm ~metasenv ~subst ~context ty_branch ));
465 let metasenv, subst, p, _ =
466 typeof_aux metasenv subst context (Some ty_branch) p in
467 j-1, metasenv, subst, p :: branches)
468 pl (List.length pl, metasenv, subst, [])
470 let resty = C.Appl (outtype::arguments@[term]) in
471 let resty = NCicReduction.head_beta_reduce status ~subst resty in
472 metasenv, subst, C.Match (r, outtype, term, pl),resty
473 | C.Match _ -> assert false
475 pp (lazy (status#ppterm ~metasenv ~subst ~context t ^ " ::inf:: "^
476 status#ppterm ~metasenv ~subst ~context infty ));
477 force_ty true true metasenv subst context orig t infty expty
478 (*D*)in outside true; rc with exc -> outside false; raise exc
480 typeof_aux metasenv subst context expty term
482 and check_type status ~localise metasenv subst context (ty as orig_ty) =
483 let metasenv, subst, ty, sort =
484 typeof status ~localise metasenv subst context ty None
486 let metasenv, subst, ty, _ =
487 force_to_sort status metasenv subst context ty orig_ty localise sort
491 and try_coercions status
492 ~localise metasenv subst context t orig_t infty expty exc
494 let cs_subst = NCicSubstitution.subst status ~avoid_beta_redexes:true in
498 pp (lazy "WWW: trying coercions -- preliminary unification");
499 let metasenv, subst =
500 NCicUnification.unify status metasenv subst context infty expty
501 in metasenv, subst, t, expty
502 | _ -> raise (Failure "Special case Prod or Sort"))
505 (* we try with a coercion *)
506 let rec first exc = function
510 `Type expty -> status#ppterm ~metasenv ~subst ~context expty
511 | `Sort -> "[[sort]]"
512 | `Prod -> "[[prod]]" in
513 pp (lazy "WWW: no more coercions!");
514 raise (wrap_exc (lazy (localise orig_t, Printf.sprintf
515 "The term\n%s\nhas type\n%s\nbut is here used with type\n%s"
516 (status#ppterm ~metasenv ~subst ~context t)
517 (status#ppterm ~metasenv ~subst ~context infty)
519 | (_,metasenv, newterm, newtype, meta)::tl ->
521 pp (lazy("K=" ^ status#ppterm ~metasenv ~subst ~context newterm));
522 pp (lazy ( "UNIFICATION in CTX:\n"^
523 status#ppcontext ~metasenv ~subst context
525 status#ppmetasenv metasenv ~subst
527 status#ppterm ~metasenv ~subst ~context t ^ " === " ^
528 status#ppterm ~metasenv ~subst ~context meta ^ "\n"));
529 let metasenv, subst =
530 NCicUnification.unify status metasenv subst context t meta in
533 pp (lazy ( "UNIFICATION in CTX:\n"^
534 status#ppcontext ~metasenv ~subst context
536 status#ppmetasenv metasenv ~subst
538 status#ppterm ~metasenv ~subst ~context newtype ^ " === " ^
539 status#ppterm ~metasenv ~subst ~context expty ^ "\n"));
541 NCicUnification.unify status metasenv subst context newtype expty
543 metasenv, subst, newterm, newtype
545 (match NCicReduction.whd status ~subst context newtype with
546 NCic.Sort _ -> metasenv,subst,newterm,newtype
549 (match NCicReduction.whd status ~subst context newtype with
550 NCic.Prod _ -> metasenv,subst,newterm,newtype
553 | NCicUnification.UnificationFailure _ -> first exc tl
554 | NCicUnification.Uncertain _ as exc -> first exc tl
558 pp (lazy "WWW: trying coercions -- inner check");
559 match infty, expty, t with
560 (* `Sort|`Prod + Match not implemented *)
561 | _,`Type expty, NCic.Match (Ref.Ref (_,Ref.Ind (_,tyno,leftno)) as r,outty,m,pl) ->
562 (*{{{*) pp (lazy "CASE");
563 (* {{{ helper functions *)
564 let get_cl_and_left_p refit outty =
566 | NReference.Ref (uri, NReference.Ind (_,tyno,leftno)) ->
567 let _, leftno, itl, _, _ = NCicEnvironment.get_checked_indtys status r in
568 let _, _, ty, cl = List.nth itl tyno in
569 let constructorsno = List.length cl in
572 match NCicReduction.whd status ~subst ~delta:max_int ctx t with
573 | NCic.Prod (name,src,tgt) ->
574 let ctx = (name, (NCic.Decl src)) :: ctx in
580 let rec skip_lambda_delifting t n =
583 | NCic.Lambda (_,_,t),n ->
584 pp (lazy ("WWW: failing term? "^ status#ppterm ~subst:[] ~metasenv:[] ~context:[] t));
585 skip_lambda_delifting
586 (* substitute dangling indices with a dummy *)
587 (NCicSubstitution.subst status (NCic.Sort NCic.Prop) t) (n - 1)
590 let get_l_r_p n = function
591 | NCic.Lambda (_,NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_))),_) -> [],[]
592 | NCic.Lambda (_,NCic.Appl
593 (NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_))) :: args),_) ->
594 HExtlib.split_nth n args
597 let pis = count_pis ty in
598 let rno = pis - leftno in
599 let t = skip_lambda_delifting outty rno in
600 let left_p, _ = get_l_r_p leftno t in
601 let instantiate_with_left cl =
605 (fun t p -> match t with
606 | NCic.Prod (_,_,t) ->
612 let cl = instantiate_with_left (List.map (fun (_,_,x) -> x) cl) in
613 cl, left_p, leftno, rno
616 (*{{{*) pp (lazy "CASE");
617 let rec keep_lambdas_and_put_expty ctx t bo right_p matched n =
620 let rec mkr n = function
621 | [] -> [] | _::tl -> NCic.Rel n :: mkr (n+1) tl
623 pp (lazy ("input replace: " ^ status#ppterm ~context:ctx ~metasenv:[] ~subst:[] bo));
625 NCicRefineUtil.replace_lifting status
626 ~equality:(fun _ -> NCicRefineUtil.alpha_equivalence status)
628 ~what:(matched::right_p)
629 ~with_what:(NCic.Rel 1::List.rev (mkr 2 right_p))
632 pp (lazy ("output replace: " ^ status#ppterm ~context:ctx ~metasenv:[] ~subst:[] bo));
634 | NCic.Lambda (name, src, tgt),_ ->
635 NCic.Lambda (name, src,
636 keep_lambdas_and_put_expty
637 ((name, NCic.Decl src)::ctx) tgt (NCicSubstitution.lift status 1 bo)
638 (List.map (NCicSubstitution.lift status 1) right_p) (NCicSubstitution.lift status 1 matched) (n-1))
641 (*let eq = NCic.Const (NReference.reference_of_string ("cic:/matita/ng/Plogic/equality/eq.ind(1,0,2)")) in
642 let eq_refl = NCic.Const (NReference.reference_of_string ("cic:/matita/ng/Plogic/equality/eq.con(0,1,2)")) in*)
643 let eq = NCic.Const (NReference.reference_of_string ("cic:/matita/basics/jmeq/jmeq.ind(1,0,2)")) in
644 let eq_refl = NCic.Const (NReference.reference_of_string ("cic:/matita/basics/jmeq/jmeq.con(0,1,2)")) in
646 metasenv subst context cty outty mty m i
648 let rec aux context outty par j mty m = function
649 | NCic.Prod (name, src, tgt) ->
652 ((name, NCic.Decl src) :: context)
653 (NCicSubstitution.lift status 1 outty) (NCic.Rel j::par) (j+1)
654 (NCicSubstitution.lift status 1 mty) (NCicSubstitution.lift status 1 m) tgt
656 NCic.Prod (name, src, t), k
657 | NCic.Const (Ref.Ref (_,Ref.Ind (_,_,leftno)) as r) ->
659 let k = NCic.Const(Ref.mk_constructor i r) in
660 NCicUntrusted.mk_appl k par
662 (* the type has no parameters, so kty = mty
664 try NCicTypechecker.typeof ~subst ~metasenv context k
665 with NCicTypeChecker.TypeCheckerFailure _ -> assert false
668 NCic.Appl [eq; mty; m; mty; k],
669 (NCicSubstitution.lift status 1
670 (NCicReduction.head_beta_reduce status ~delta:max_int
671 (NCicUntrusted.mk_appl outty [k])))),[mty,m,mty,k]
672 | NCic.Appl (NCic.Const (Ref.Ref (_,Ref.Ind (_,_,leftno)) as r)::pl) ->
673 let left_p,right_p = HExtlib.split_nth leftno pl in
674 let has_rights = right_p <> [] in
676 let k = NCic.Const(Ref.mk_constructor i r) in
677 NCicUntrusted.mk_appl k (left_p@par)
681 NCicTypeChecker.typeof status ~subst ~metasenv context k
683 | NCic.Appl (NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_)))::args) ->
684 snd (HExtlib.split_nth leftno args)
686 with NCicTypeChecker.TypeCheckerFailure _-> assert false
690 | NCic.Appl (NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_)))::args) ->
691 snd (HExtlib.split_nth leftno args)
695 (fun x y (tacc,pacc) ->
697 try NCicTypeChecker.typeof status ~subst ~metasenv context x
698 with NCicTypeChecker.TypeCheckerFailure _ -> assert false
701 try NCicTypeChecker.typeof status ~subst ~metasenv context y
702 with NCicTypeChecker.TypeCheckerFailure _ -> assert false
704 NCic.Prod ("_", NCic.Appl [eq;xty;x;yty;y],
705 NCicSubstitution.lift status 1 tacc), (xty,x,yty,y)::pacc)
706 (orig_right_p @ [m]) (right_p @ [k])
707 (NCicReduction.head_beta_reduce status ~delta:max_int
708 (NCicUntrusted.mk_appl outty (right_p@[k])), [])
710 (* if has_rights then
711 NCicReduction.head_beta_reduce status ~delta:max_int
712 (NCic.Appl (outty ::right_p @ [k])),k
715 NCic.Appl [eq; mty; m; k],
716 (NCicSubstitution.lift status 1
717 (NCicReduction.head_beta_reduce status ~delta:max_int
718 (NCic.Appl (outty ::right_p @ [k]))))),k*)
721 aux context outty [] 1 mty m cty
723 let add_lambda_for_refl_m pbo eqs cty =
724 (* k lives in the right context *)
725 (* if rno <> 0 then pbo else *)
726 let rec aux = function
727 | NCic.Lambda (name,src,bo), NCic.Prod (_,_,ty) ->
728 NCic.Lambda (name,src,
730 | t,_ -> snd (List.fold_right
731 (fun (xty,x,yty,y) (n,acc) -> n+1, NCic.Lambda ("p" ^ string_of_int n,
732 NCic.Appl [eq; xty; x; yty; y],
733 NCicSubstitution.lift status 1 acc)) eqs (1,t))
735 NCic.Appl [eq; mty; m; k],NCicSubstitution.lift status 1 t)*)
739 let add_pi_for_refl_m context new_outty mty m lno rno =
740 (*if rno <> 0 then new_outty else*)
741 let rec aux context mty m = function
742 | NCic.Lambda (name, src, tgt) ->
743 let context = (name, NCic.Decl src)::context in
744 NCic.Lambda (name, src, aux context (NCicSubstitution.lift status 1 mty) (NCicSubstitution.lift status 1 m) tgt)
748 | NCic.Appl (_::params) -> (snd (HExtlib.split_nth lno params))@[m]
752 List.map (fun x -> NCic.Rel x)
753 (List.rev (HExtlib.list_seq 1 (rno+2))) in
757 try NCicTypeChecker.typeof status ~subst ~metasenv context x
758 with NCicTypeChecker.TypeCheckerFailure _ -> assert false
761 try NCicTypeChecker.typeof status ~subst ~metasenv context y
762 with NCicTypeChecker.TypeCheckerFailure _ -> assert false
765 ("_", NCic.Appl [eq;xty;x;yty;y],
766 (NCicSubstitution.lift status 1 acc)))
769 ("_", NCic.Appl [eq;mty;m;NCic.Rel 1],
770 NCicSubstitution.lift status 1 t)*)
772 aux context mty m new_outty
773 in (* }}} end helper functions *)
774 (* constructors types with left params already instantiated *)
775 let outty = NCicUntrusted.apply_subst status subst context outty in
776 let cl, left_p, leftno,rno =
777 get_cl_and_left_p r outty
782 NCicTypeChecker.typeof status ~subst ~metasenv context m
784 | (NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_))) | NCic.Meta _) as mty -> [], mty
785 | NCic.Appl ((NCic.Const (Ref.Ref (_,Ref.Ind (_,_,_)))|NCic.Meta _)::args) as mty ->
786 snd (HExtlib.split_nth leftno args), mty
788 with NCicTypeChecker.TypeCheckerFailure _ ->
789 raise (AssertFailure(lazy "already ill-typed matched term"))
791 let mty = NCicUntrusted.apply_subst status subst context mty in
792 let outty = NCicUntrusted.apply_subst status subst context outty in
793 let expty = NCicUntrusted.apply_subst status subst context expty in
795 keep_lambdas_and_put_expty context outty expty right_p m (rno+1)
798 (lazy ("CASE: new_outty: " ^ status#ppterm
799 ~context ~metasenv ~subst new_outty));
800 let _,pl,subst,metasenv =
802 (fun cty pbo (i, acc, s, menv) ->
803 pp (lazy ("begin iteration"));
804 (* Pi k_par, (Pi H:m=(K_i left_par k_par)),
805 * (new_)outty right_par (K_i left_par k_par) *)
807 add_params menv s context cty outty mty m i in
809 (lazy ("CASE: infty_pbo: "^ status#ppterm
810 ~context ~metasenv ~subst infty_pbo));
811 let expty_pbo, eqs = (* k is (K_i left_par k_par) *)
812 add_params menv s context cty new_outty mty m i in
814 (lazy ("CASE: expty_pbo: "^ status#ppterm
815 ~context ~metasenv ~subst expty_pbo));
816 let pbo = add_lambda_for_refl_m pbo eqs cty in
818 (lazy ("CASE: pbo: " ^ status#ppterm
819 ~context ~metasenv ~subst pbo));
820 let metasenv, subst, pbo, _ =
821 try_coercions status ~localise menv s context pbo
822 orig_t (*??*) infty_pbo (`Type expty_pbo) exc
825 (lazy ("CASE: pbo2: " ^ status#ppterm
826 ~context ~metasenv ~subst pbo));
827 (i-1, pbo::acc, subst, metasenv))
828 cl pl (List.length pl, [], subst, metasenv)
830 (*let metasenv, subst =
832 NCicUnification.unify status metasenv subst context outty new_outty
833 with _ -> raise (RefineFailure (lazy (localise orig_t, "try_coercions")))
835 let new_outty = add_pi_for_refl_m context new_outty mty m leftno rno in
836 pp (lazy ("CASE: new_outty: " ^ (status#ppterm
837 ~metasenv ~subst ~context new_outty)));
840 (fun t -> NCicTypeChecker.typeof status ~subst ~metasenv context t) right_p in
842 List.map2 (fun x y -> NCic.Appl[eq_refl;x;y]) (right_tys@[mty])
844 let t = NCic.Appl (NCic.Match(r,new_outty,m,pl) :: eqs)
846 metasenv, subst, t, expty (*}}}*)
847 | _,`Type expty,NCic.LetIn(name,ty,t,bo) ->
849 let name' = mk_fresh_name context name in
850 let context_bo = (name', NCic.Def (t,ty)) :: context in
851 let metasenv, subst, bo2, _ =
852 try_coercions status ~localise metasenv subst context_bo
853 bo orig_t (NCicSubstitution.lift status 1 infty)
854 (`Type (NCicSubstitution.lift status 1 expty)) exc
856 let coerced = NCic.LetIn (name',ty,t,bo2) in
857 pp (lazy ("LETIN: coerced = " ^ status#ppterm ~metasenv ~subst ~context coerced));
858 metasenv, subst, coerced, expty
859 | NCic.Prod (nameprod, src, ty),`Type (NCic.Prod (_, src2, ty2) as expty), _ ->
860 (*{{{*) pp (lazy "LAM");
861 pp (lazy ("LAM: t = " ^ status#ppterm ~metasenv ~subst ~context t));
862 let namename = match t with NCic.Lambda (n,_,_) -> n | _ -> nameprod in
863 let name_con = mk_fresh_name context namename in
864 let context_src2 = ((name_con, NCic.Decl src2) :: context) in
865 (* contravariant part: the argument of f:src->ty *)
866 let metasenv, subst, rel1, _ =
867 try_coercions status ~localise metasenv subst context_src2
868 (NCic.Rel 1) orig_t (NCicSubstitution.lift status 1 src2)
869 (`Type (NCicSubstitution.lift status 1 src)) exc
871 (* covariant part: the result of f(c x); x:src2; (c x):src *)
874 | NCic.Lambda (n,_,bo) -> n, cs_subst rel1 (NCicSubstitution.lift_from status 2 1 bo)
875 | _ -> name_con, NCicUntrusted.mk_appl (NCicSubstitution.lift status 1 t) [rel1]
877 (* we fix the possible dependency problem in the source ty *)
878 let ty = cs_subst rel1 (NCicSubstitution.lift_from status 2 1 ty) in
879 let metasenv, subst, bo, _ =
880 try_coercions status ~localise metasenv subst context_src2
881 bo orig_t ty (`Type ty2) exc
883 let coerced = NCic.Lambda (name_t,src2, bo) in
884 pp (lazy ("LAM: coerced = " ^ status#ppterm ~metasenv ~subst ~context coerced));
885 metasenv, subst, coerced, expty (*}}}*)
893 (match NCicEnvironment.get_universes () with
895 | _ -> assert false))
896 | `Prod -> NCic.Prod ("_",NCic.Implicit `Type,NCic.Implicit `Type)
898 pp(lazy("try_coercion " ^
899 status#ppterm ~metasenv ~subst ~context infty ^ " |---> " ^
900 status#ppterm ~metasenv ~subst ~context expty));
902 (NCicCoercion.look_for_coercion
903 status metasenv subst context infty expty)
905 and force_to_sort status metasenv subst context t orig_t localise ty =
907 let metasenv, subst, ty =
908 NCicUnification.sortfy status (Failure "sortfy") metasenv subst context ty in
909 metasenv, subst, t, ty
912 let ty = NCicReduction.whd status ~subst context ty in
913 try_coercions status ~localise metasenv subst context
915 (Uncertain (lazy (localise orig_t,
916 "The type of " ^ status#ppterm ~metasenv ~subst ~context t ^
917 " is not a sort: " ^ status#ppterm ~metasenv ~subst ~context ty)))
919 and sort_of_prod status localise metasenv subst context orig_s orig_t (name,s)
922 (* force to sort is done in the Prod case in typeof *)
924 | C.Sort _, C.Sort C.Prop -> metasenv, subst, s, t, t2
925 | C.Sort (C.Type u1), C.Sort (C.Type u2) ->
926 metasenv, subst, s, t, C.Sort (C.Type (NCicEnvironment.max u1 u2))
927 | C.Sort C.Prop,C.Sort (C.Type _) -> metasenv, subst, s, t, t2
929 | C.Meta _, C.Meta (_,(_,_))
930 | C.Sort _, C.Meta (_,(_,_)) -> metasenv, subst, s, t, t2
931 | x, (C.Sort _ | C.Meta _) | _, x ->
932 let y, context, orig =
933 if x == t1 then s, context, orig_s
934 else t, ((name,C.Decl s)::context), orig_t
936 raise (RefineFailure (lazy (localise orig,Printf.sprintf
937 "%s is expected to be a type, but its type is %s that is not a sort"
938 (status#ppterm ~subst ~metasenv ~context y)
939 (status#ppterm ~subst ~metasenv ~context x))))
941 and guess_name status subst ctx ty =
942 let aux initial = "#" ^ String.make 1 initial in
944 | C.Const (NReference.Ref (u,_))
945 | C.Appl (C.Const (NReference.Ref (u,_)) :: _) ->
946 aux (String.sub (NUri.name_of_uri u) 0 1).[0]
947 | C.Prod _ -> aux 'f'
950 let _,_,t,_ = NCicUtils.lookup_subst n subst in
951 guess_name status subst ctx (NCicSubstitution.subst_meta status lc t)
952 with NCicUtils.Subst_not_found _ -> aux 'M')
955 and eat_prods status ~localise force_ty metasenv subst context expty orig_t orig_he he ty_he args =
956 (*D*)inside 'E'; try let rc =
957 let rec aux metasenv subst args_so_far he ty_he xxx =
958 (*D*)inside 'V'; try let rc =
961 let res = NCicUntrusted.mk_appl he (List.rev args_so_far) in
962 pp(lazy("FORCE FINAL APPL: " ^
963 status#ppterm ~metasenv ~subst ~context res ^
964 " of type " ^ status#ppterm ~metasenv ~subst ~context ty_he
965 ^ " to type " ^ match expty with None -> "None" | Some x ->
966 status#ppterm ~metasenv ~subst ~context x));
967 (* whatever the term is, we force the type. in case of ((Lambda..) ?...)
968 * the application may also be a lambda! *)
969 force_ty false false metasenv subst context orig_t res ty_he expty
970 | NCic.Implicit `Vector::tl ->
971 let has_some_more_pis x =
972 match NCicReduction.whd status ~subst context x with
973 | NCic.Meta _ | NCic.Appl (NCic.Meta _::_) -> false
977 aux metasenv subst args_so_far he ty_he tl
980 | RefineFailure _ as exc when has_some_more_pis ty_he ->
982 aux metasenv subst args_so_far he ty_he
983 (NCic.Implicit `Term :: NCic.Implicit `Vector :: tl)
985 Uncertain msg | RefineFailure msg -> raise (wrap_exc msg exc))
986 | RefineFailure msg when not (has_some_more_pis ty_he) ->
987 (* instantiating the head could change the has_some_more_pis flag *)
988 raise (Uncertain msg))
990 match NCicReduction.whd status ~subst context ty_he with
992 let metasenv, subst, arg, _ =
993 typeof status ~localise metasenv subst context arg (Some s) in
994 let t = NCicSubstitution.subst status ~avoid_beta_redexes:true arg t in
995 aux metasenv subst (arg :: args_so_far) he t tl
997 | C.Appl (C.Meta _ :: _) as t ->
998 let metasenv, subst, arg, ty_arg =
999 typeof status ~localise metasenv subst context arg None in
1000 let name = guess_name status subst context ty_arg in
1001 let metasenv, _, meta, _ =
1002 NCicMetaSubst.mk_meta metasenv
1003 ((name,C.Decl ty_arg) :: context) `IsType
1005 let flex_prod = C.Prod (name, ty_arg, meta) in
1006 (* next line grants that ty_args is a type *)
1007 let metasenv,subst, flex_prod, _ =
1008 typeof status ~localise metasenv subst context flex_prod None in
1010 pp (lazy ( "UNIFICATION in CTX:\n"^
1011 status#ppcontext ~metasenv ~subst context
1013 status#ppterm ~metasenv ~subst ~context t ^ " === " ^
1014 status#ppterm ~metasenv ~subst ~context flex_prod ^ "\n"));
1016 let metasenv, subst =
1017 try NCicUnification.unify status metasenv subst context t flex_prod
1018 with exc -> raise (wrap_exc (lazy (localise orig_he, Printf.sprintf
1019 ("The term %s has an inferred type %s, but is applied to the" ^^
1020 " argument %s of type %s")
1021 (status#ppterm ~metasenv ~subst ~context he)
1022 (status#ppterm ~metasenv ~subst ~context t)
1023 (status#ppterm ~metasenv ~subst ~context arg)
1024 (status#ppterm ~metasenv ~subst ~context ty_arg)))
1026 | NCicUnification.UnificationFailure m ->
1027 NCicUnification.Uncertain m
1029 (* XXX coerce to funclass *)
1031 let meta = NCicSubstitution.subst status ~avoid_beta_redexes:true arg meta in
1032 aux metasenv subst (arg :: args_so_far) he meta tl
1033 | C.Match (_,_,C.Meta _,_)
1034 | C.Match (_,_,C.Appl (C.Meta _ :: _),_)
1035 | C.Appl (C.Const (NReference.Ref (_, NReference.Fix _)) :: _) ->
1036 raise (Uncertain (lazy (localise orig_he, Printf.sprintf
1037 ("The term %s is here applied to %d arguments but expects " ^^
1038 "only %d arguments") (status#ppterm ~metasenv ~subst ~context he)
1039 (List.length args) (List.length args_so_far))))
1041 let metasenv, subst, newhead, newheadty =
1042 try_coercions status ~localise metasenv subst context
1043 (NCicUntrusted.mk_appl he (List.rev args_so_far)) orig_he ty
1045 (RefineFailure (lazy (localise orig_he, Printf.sprintf
1046 ("The term %s is here applied to %d arguments but expects " ^^
1047 "only %d arguments") (status#ppterm ~metasenv ~subst ~context he)
1048 (List.length args) (List.length args_so_far))))
1050 aux metasenv subst [] newhead newheadty (arg :: tl)
1051 (*D*)in outside true; rc with exc -> outside false; raise exc
1053 (* We need to reverse the order of the new created metas since they
1054 are pushed on top of the metasenv in the wrong order *)
1055 let highest_meta = NCicMetaSubst.maxmeta () in
1056 let metasenv, subst, newhead, newheadty =
1057 aux metasenv subst [] he ty_he args in
1058 let metasenv_old,metasenv_new =
1059 List.partition (fun (i,_) -> i <= highest_meta) metasenv
1061 (List.rev metasenv_new) @ metasenv_old, subst, newhead, newheadty
1062 (*D*)in outside true; rc with exc -> outside false; raise exc
1065 let rec first f l1 l2 =
1067 | x1::tl1, x2::tl2 ->
1068 (try f x1 x2 with Not_found -> first f tl1 tl2)
1069 | _ -> raise Not_found
1072 let rec find add dt t =
1077 | C.Meta (_,(_,C.Ctx dl)), C.Meta (_,(_,C.Ctx l))
1078 | C.Appl dl,C.Appl l -> dl,l
1079 | C.Lambda (_,ds,dt), C.Lambda (_,s,t)
1080 | C.Prod (_,ds,dt), C.Prod (_,s,t) -> [ds;dt],[s;t]
1081 | C.LetIn (_,ds,db,dt), C.LetIn (_,s,b,t) -> [ds;db;dt],[s;b;t]
1082 | C.Match (_,dot,dt,dl), C.Match (_,ot,t,l) -> (dot::dt::dl),(ot::t::l)
1083 | _ -> raise Not_found
1085 first (find add) dl l
1088 let relocalise old_localise dt t add =
1090 (try find add dt t with Not_found -> assert false)
1093 let undebruijnate status inductive ref t rev_fl =
1094 let len = List.length rev_fl in
1095 NCicSubstitution.psubst status (fun x -> x)
1097 (fun (_,_,rno,_,_,_) i ->
1098 let i = len - i - 1 in
1100 (if inductive then NReference.mk_fix i rno ref
1101 else NReference.mk_cofix i ref))
1108 status ?(localise=fun _ -> Stdpp.dummy_loc) (uri,height,metasenv,subst,obj)
1111 | C.Constant (relevance, name, bo, ty, attr) ->
1112 let metasenv, subst, ty =
1113 check_type status ~localise metasenv subst [] ty in
1114 let metasenv, subst, bo, ty, height =
1117 let metasenv, subst, bo, ty =
1118 typeof status ~localise metasenv subst [] bo (Some ty) in
1119 let height = (* XXX recalculate *) height in
1120 metasenv, subst, Some bo, ty, height
1121 | None -> metasenv, subst, None, ty, 0
1123 uri, height, metasenv, subst,
1124 C.Constant (relevance, name, bo, ty, attr)
1125 | C.Fixpoint (inductive, fl, attr) ->
1126 let len = List.length fl in
1127 let types, metasenv, subst, rev_fl =
1129 (fun (types, metasenv, subst, fl) (relevance,name,k,ty,bo) ->
1130 let metasenv, subst, ty =
1131 check_type status ~localise metasenv subst [] ty in
1132 let dbo = NCicTypeChecker.debruijn status uri len [] ~subst bo in
1133 let localise = relocalise localise dbo bo in
1134 (name,C.Decl ty)::types,
1135 metasenv, subst, (relevance,name,k,ty,dbo,localise)::fl
1136 ) ([], metasenv, subst, []) fl (* XXX kl rimosso nel nucleo *)
1138 let metasenv, subst, fl =
1140 (fun (metasenv,subst,fl) (relevance,name,k,ty,dbo,localise) ->
1141 let metasenv, subst, dbo, ty =
1142 typeof status ~localise metasenv subst types dbo (Some ty)
1144 metasenv, subst, (relevance,name,k,ty,dbo)::fl)
1145 (metasenv, subst, []) rev_fl
1147 let height = (* XXX recalculate *) height in
1150 (fun (relevance,name,k,ty,dbo) ->
1152 undebruijnate status inductive
1153 (NReference.reference_of_spec uri
1154 (if inductive then NReference.Fix (0,k,0)
1155 else NReference.CoFix 0)) dbo rev_fl
1157 relevance,name,k,ty,bo)
1160 uri, height, metasenv, subst,
1161 C.Fixpoint (inductive, fl, attr)
1162 | C.Inductive (ind, leftno, itl, attr) ->
1163 let len = List.length itl in
1164 let metasenv,subst,rev_itl,tys =
1166 (fun (metasenv,subst,res,ctx) (relevance,n,ty,cl) ->
1167 let metasenv, subst, ty =
1168 check_type status ~localise metasenv subst [] ty in
1169 metasenv,subst,(relevance,n,ty,cl)::res,(n,NCic.Decl ty)::ctx
1170 ) (metasenv,subst,[],[]) itl in
1171 let metasenv,subst,itl,_ =
1173 (fun (metasenv,subst,res,i) (it_relev,n,ty,cl) ->
1174 let context,ty_sort = NCicReduction.split_prods status ~subst [] ~-1 ty in
1175 let sx_context_ty_rev,_= HExtlib.split_nth leftno (List.rev context) in
1176 let metasenv,subst,cl =
1178 (fun (k_relev,n,te) (metasenv,subst,res) ->
1180 try snd (HExtlib.split_nth leftno k_relev)
1181 with Failure _ -> k_relev in
1182 let te = NCicTypeChecker.debruijn status uri len [] ~subst te in
1183 let metasenv, subst, te =
1184 check_type status ~localise metasenv subst tys te in
1185 let context,te = NCicReduction.split_prods status ~subst tys leftno te in
1186 let _,chopped_context_rev =
1187 HExtlib.split_nth (List.length tys) (List.rev context) in
1188 let sx_context_te_rev,_ =
1189 HExtlib.split_nth leftno chopped_context_rev in
1190 let metasenv,subst,_ =
1193 (fun (metasenv,subst,context) item1 item2 ->
1194 let (metasenv,subst),convertible =
1196 match item1,item2 with
1197 (n1,C.Decl ty1),(n2,C.Decl ty2) ->
1199 NCicUnification.unify status ~test_eq_only:true metasenv
1200 subst context ty1 ty2,true
1202 (metasenv,subst),false
1203 | (n1,C.Def (bo1,ty1)),(n2,C.Def (bo2,ty2)) ->
1205 let metasenv,subst =
1206 NCicUnification.unify status ~test_eq_only:true metasenv
1207 subst context ty1 ty2
1209 NCicUnification.unify status ~test_eq_only:true metasenv
1210 subst context bo1 bo2,true
1212 (metasenv,subst),false
1213 | _,_ -> (metasenv,subst),false
1215 | NCicUnification.Uncertain _
1216 | NCicUnification.UnificationFailure _ ->
1217 (metasenv,subst),false
1222 | _,C.Def (b,_) -> b in
1223 if not convertible then
1224 raise (RefineFailure (lazy (localise term2,
1225 ("Mismatch between the left parameters of the constructor " ^
1226 "and those of its inductive type"))))
1228 metasenv,subst,item1::context
1229 ) (metasenv,subst,tys) sx_context_ty_rev sx_context_te_rev
1230 with Invalid_argument "List.fold_left2" -> assert false in
1231 let metasenv, subst =
1232 let rec aux context (metasenv,subst) = function
1233 | NCic.Meta _ -> metasenv, subst
1234 | NCic.Implicit _ -> metasenv, subst
1235 | NCic.Appl (NCic.Rel i :: args) as t
1236 when i > List.length context - len ->
1237 let lefts, _ = HExtlib.split_nth leftno args in
1238 let ctxlen = List.length context in
1239 let (metasenv, subst), _ =
1241 (fun ((metasenv, subst),l) arg ->
1242 NCicUnification.unify status
1243 ~test_eq_only:true metasenv subst context arg
1244 (NCic.Rel (ctxlen - len - l)), l+1
1246 ((metasenv, subst), 0) lefts
1249 | t -> NCicUtils.fold (fun e c -> e::c) context aux
1252 aux context (metasenv,subst) te
1254 let con_sort= NCicTypeChecker.typeof status ~subst ~metasenv context te in
1256 NCicReduction.whd status ~subst context con_sort,
1257 NCicReduction.whd status ~subst [] ty_sort
1259 (C.Sort (C.Type u1) as s1), (C.Sort (C.Type u2) as s2) ->
1260 if not (NCicEnvironment.universe_leq u1 u2) then
1263 (lazy(localise te, "The type " ^
1264 status#ppterm ~metasenv ~subst ~context s1 ^
1265 " of the constructor is not included in the inductive"^
1267 status#ppterm ~metasenv ~subst ~context s2)))
1268 | C.Sort _, C.Sort C.Prop
1269 | C.Sort _, C.Sort C.Type _ -> ()
1274 "Wrong constructor or inductive arity shape"))));
1275 (* let's check also the positivity conditions *)
1278 (NCicTypeChecker.are_all_occurrences_positive status
1279 ~subst context uri leftno (i+leftno) leftno (len+leftno) te)
1284 "Non positive occurence in " ^
1285 status#ppterm ~metasenv ~subst ~context te)))
1287 let relsno = List.length itl + leftno in
1289 NCicSubstitution.psubst status
1294 NCic.Const (NReference.reference_of_spec uri
1295 (NReference.Ind (ind,relsno - i,leftno))))
1296 (HExtlib.list_seq 1 (relsno+1))
1300 (fun (name,decl) te ->
1302 NCic.Decl ty -> NCic.Prod (name,ty,te)
1303 | NCic.Def (bo,ty) -> NCic.LetIn (name,ty,bo,te)
1304 ) sx_context_te_rev te
1306 metasenv,subst,(k_relev,n,te)::res
1307 ) cl (metasenv,subst,[])
1309 metasenv,subst,(it_relev,n,ty,cl)::res,i+1
1310 ) (metasenv,subst,[],1) rev_itl
1312 uri, height, metasenv, subst, C.Inductive (ind, leftno, itl, attr)
1315 (* vim:set foldmethod=marker: *)