1 (* Copyright (C) 2000, 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 exception RefineFailure of string Lazy.t;;
31 exception Uncertain of string Lazy.t;;
32 exception AssertFailure of string Lazy.t;;
34 (* for internal use only; the integer is the number of surplus arguments *)
35 exception MoreArgsThanExpected of int * exn;;
37 let insert_coercions = ref true
38 let pack_coercions = ref true
43 if debug then (fun x -> prerr_endline (Lazy.force x)) else (fun _ -> ());;
45 let profiler_eat_prods2 = HExtlib.profile "CicRefine.fo_unif_eat_prods2"
47 let fo_unif_subst_eat_prods2 subst context metasenv t1 t2 ugraph =
50 CicUnification.fo_unif_subst subst context metasenv t1 t2 ugraph
51 in profiler_eat_prods2.HExtlib.profile foo ()
53 (CicUnification.UnificationFailure msg) -> raise (RefineFailure msg)
54 | (CicUnification.Uncertain msg) -> raise (Uncertain msg)
57 let profiler_eat_prods = HExtlib.profile "CicRefine.fo_unif_eat_prods"
59 let fo_unif_subst_eat_prods subst context metasenv t1 t2 ugraph =
62 CicUnification.fo_unif_subst subst context metasenv t1 t2 ugraph
63 in profiler_eat_prods.HExtlib.profile foo ()
65 (CicUnification.UnificationFailure msg) -> raise (RefineFailure msg)
66 | (CicUnification.Uncertain msg) -> raise (Uncertain msg)
69 let profiler = HExtlib.profile "CicRefine.fo_unif"
71 let fo_unif_subst subst context metasenv t1 t2 ugraph =
74 CicUnification.fo_unif_subst subst context metasenv t1 t2 ugraph
75 in profiler.HExtlib.profile foo ()
77 (CicUnification.UnificationFailure msg) -> raise (RefineFailure msg)
78 | (CicUnification.Uncertain msg) -> raise (Uncertain msg)
81 let enrich localization_tbl t ?(f = fun msg -> msg) exn =
84 RefineFailure msg -> RefineFailure (f msg)
85 | Uncertain msg -> Uncertain (f msg)
86 | AssertFailure msg -> prerr_endline (Lazy.force msg); AssertFailure (f msg)
87 | Sys.Break -> raise exn
88 | _ -> prerr_endline (Printexc.to_string exn); assert false
92 Cic.CicHash.find localization_tbl t
94 HLog.debug ("!!! NOT LOCALIZED: " ^ CicPp.ppterm t);
97 raise (HExtlib.Localized (loc,exn'))
99 let relocalize localization_tbl oldt newt =
101 let infos = Cic.CicHash.find localization_tbl oldt in
102 Cic.CicHash.remove localization_tbl oldt;
103 Cic.CicHash.add localization_tbl newt infos;
111 | (he::tl, n) -> let (l1,l2) = split tl (n-1) in (he::l1,l2)
112 | (_,_) -> raise (AssertFailure (lazy "split: list too short"))
115 let exp_impl metasenv subst context =
118 let (metasenv', idx) =
119 CicMkImplicit.mk_implicit_type metasenv subst context in
121 CicMkImplicit.identity_relocation_list_for_metavariable context in
122 metasenv', Cic.Meta (idx, irl)
124 let (metasenv', idx) = CicMkImplicit.mk_implicit metasenv subst [] in
125 metasenv', Cic.Meta (idx, [])
127 let (metasenv', idx) = CicMkImplicit.mk_implicit metasenv subst context in
129 CicMkImplicit.identity_relocation_list_for_metavariable context in
130 metasenv', Cic.Meta (idx, irl)
134 let is_a_double_coercion t =
135 let rec subst_nth n x l =
138 | 0, _::tl -> x :: tl
139 | n, hd::tl -> hd :: subst_nth (n-1) x tl
141 let imp = Cic.Implicit None in
142 let dummyres = false,imp, imp,imp,imp in
145 (match CoercGraph.coerced_arg l1 with
146 | Some (Cic.Appl l2, pos1) ->
147 (match CoercGraph.coerced_arg l2 with
149 true, List.hd l1, List.hd l2, x,
150 Cic.Appl (subst_nth (pos1 + 1)
151 (Cic.Appl (subst_nth (pos2+1) imp l2)) l1)
157 let more_args_than_expected localization_tbl metasenv subst he context hetype' residuals tlbody_and_type exn
159 let len = List.length tlbody_and_type in
162 CicMetaSubst.ppterm_in_context ~metasenv subst he context ^
163 " (that has type "^ CicMetaSubst.ppterm_in_context ~metasenv subst hetype' context ^
164 ") is here applied to " ^ string_of_int len ^
165 " arguments but here it can handle only up to " ^
166 string_of_int (len - residuals) ^ " arguments")
168 enrich localization_tbl he ~f:(fun _-> msg) exn
171 let mk_prod_of_metas metasenv context subst args =
172 let rec mk_prod metasenv context' = function
174 let (metasenv, idx) =
175 CicMkImplicit.mk_implicit_type metasenv subst context'
178 CicMkImplicit.identity_relocation_list_for_metavariable context'
180 metasenv,Cic.Meta (idx, irl)
182 let (metasenv, idx) =
183 CicMkImplicit.mk_implicit_type metasenv subst context'
186 CicMkImplicit.identity_relocation_list_for_metavariable context'
188 let meta = Cic.Meta (idx,irl) in
190 (* The name must be fresh for context. *)
191 (* Nevertheless, argty is well-typed only in context. *)
192 (* Thus I generate a name (name_hint) in context and *)
193 (* then I generate a name --- using the hint name_hint *)
194 (* --- that is fresh in context'. *)
196 FreshNamesGenerator.mk_fresh_name ~subst metasenv
197 (CicMetaSubst.apply_subst_context subst context)
199 ~typ:(CicMetaSubst.apply_subst subst argty)
201 FreshNamesGenerator.mk_fresh_name ~subst
202 [] context' name_hint ~typ:(Cic.Sort Cic.Prop)
204 let metasenv,target =
205 mk_prod metasenv ((Some (name, Cic.Decl meta))::context') tl
207 metasenv,Cic.Prod (name,meta,target)
209 mk_prod metasenv context args
212 let rec type_of_constant uri ugraph =
213 let module C = Cic in
214 let module R = CicReduction in
215 let module U = UriManager in
216 let _ = CicTypeChecker.typecheck uri in
219 CicEnvironment.get_cooked_obj ugraph uri
220 with Not_found -> assert false
223 C.Constant (_,_,ty,_,_) -> ty,u
224 | C.CurrentProof (_,_,_,ty,_,_) -> ty,u
228 (lazy ("Unknown constant definition " ^ U.string_of_uri uri)))
230 and type_of_variable uri ugraph =
231 let module C = Cic in
232 let module R = CicReduction in
233 let module U = UriManager in
234 let _ = CicTypeChecker.typecheck uri in
237 CicEnvironment.get_cooked_obj ugraph uri
238 with Not_found -> assert false
241 C.Variable (_,_,ty,_,_) -> ty,u
245 (lazy ("Unknown variable definition " ^ UriManager.string_of_uri uri)))
247 and type_of_mutual_inductive_defs uri i ugraph =
248 let module C = Cic in
249 let module R = CicReduction in
250 let module U = UriManager in
251 let _ = CicTypeChecker.typecheck uri in
254 CicEnvironment.get_cooked_obj ugraph uri
255 with Not_found -> assert false
258 C.InductiveDefinition (dl,_,_,_) ->
259 let (_,_,arity,_) = List.nth dl i in
264 (lazy ("Unknown mutual inductive definition " ^ U.string_of_uri uri)))
266 and type_of_mutual_inductive_constr uri i j ugraph =
267 let module C = Cic in
268 let module R = CicReduction in
269 let module U = UriManager in
270 let _ = CicTypeChecker.typecheck uri in
273 CicEnvironment.get_cooked_obj ugraph uri
274 with Not_found -> assert false
277 C.InductiveDefinition (dl,_,_,_) ->
278 let (_,_,_,cl) = List.nth dl i in
279 let (_,ty) = List.nth cl (j-1) in
285 ("Unkown mutual inductive definition " ^ U.string_of_uri uri)))
288 (* type_of_aux' is just another name (with a different scope) for type_of_aux *)
290 (* the check_branch function checks if a branch of a case is refinable.
291 It returns a pair (outype_instance,args), a subst and a metasenv.
292 outype_instance is the expected result of applying the case outtype
294 The problem is that outype is in general unknown, and we should
295 try to synthesize it from the above information, that is in general
296 a second order unification problem. *)
298 and check_branch n context metasenv subst left_args_no actualtype term expectedtype ugraph =
299 let module C = Cic in
300 let module R = CicReduction in
301 match R.whd ~subst context expectedtype with
303 (n,context,actualtype, [term]), subst, metasenv, ugraph
304 | C.Appl (C.MutInd (_,_,_)::tl) ->
305 let (_,arguments) = split tl left_args_no in
306 (n,context,actualtype, arguments@[term]), subst, metasenv, ugraph
307 | C.Prod (_,so,de) ->
308 (* we expect that the actual type of the branch has the due
310 (match R.whd ~subst context actualtype with
311 C.Prod (name',so',de') ->
312 let subst, metasenv, ugraph1 =
313 fo_unif_subst subst context metasenv so so' ugraph in
315 (match CicSubstitution.lift 1 term with
316 C.Appl l -> C.Appl (l@[C.Rel 1])
317 | t -> C.Appl [t ; C.Rel 1]) in
318 (* we should also check that the name variable is anonymous in
319 the actual type de' ?? *)
321 ((Some (name',(C.Decl so)))::context)
322 metasenv subst left_args_no de' term' de ugraph1
323 | _ -> raise (AssertFailure (lazy "Wrong number of arguments")))
324 | _ -> raise (AssertFailure (lazy "Prod or MutInd expected"))
326 and type_of_aux' ?(clean_dummy_dependent_types=true) ?(localization_tbl = Cic.CicHash.create 1) metasenv context t
329 let rec type_of_aux subst metasenv context t ugraph =
330 let module C = Cic in
331 let module S = CicSubstitution in
332 let module U = UriManager in
333 let (t',_,_,_,_) as res =
338 match List.nth context (n - 1) with
339 Some (_,C.Decl ty) ->
340 t,S.lift n ty,subst,metasenv, ugraph
341 | Some (_,C.Def (_,ty)) ->
342 t,S.lift n ty,subst,metasenv, ugraph
344 enrich localization_tbl t
345 (RefineFailure (lazy "Rel to hidden hypothesis"))
348 enrich localization_tbl t
349 (RefineFailure (lazy "Not a closed term")))
350 | C.Var (uri,exp_named_subst) ->
351 let exp_named_subst',subst',metasenv',ugraph1 =
352 check_exp_named_subst
353 subst metasenv context exp_named_subst ugraph
355 let ty_uri,ugraph1 = type_of_variable uri ugraph in
357 CicSubstitution.subst_vars exp_named_subst' ty_uri
359 C.Var (uri,exp_named_subst'),ty,subst',metasenv',ugraph1
362 let (canonical_context, term,ty) =
363 CicUtil.lookup_subst n subst
365 let l',subst',metasenv',ugraph1 =
366 check_metasenv_consistency n subst metasenv context
367 canonical_context l ugraph
369 (* trust or check ??? *)
370 C.Meta (n,l'),CicSubstitution.subst_meta l' ty,
371 subst', metasenv', ugraph1
372 (* type_of_aux subst metasenv
373 context (CicSubstitution.subst_meta l term) *)
374 with CicUtil.Subst_not_found _ ->
375 let (_,canonical_context,ty) = CicUtil.lookup_meta n metasenv in
376 let l',subst',metasenv', ugraph1 =
377 check_metasenv_consistency n subst metasenv context
378 canonical_context l ugraph
380 C.Meta (n,l'),CicSubstitution.subst_meta l' ty,
381 subst', metasenv',ugraph1)
382 | C.Sort (C.Type tno) ->
383 let tno' = CicUniv.fresh() in
385 let ugraph1 = CicUniv.add_gt tno' tno ugraph in
386 t,(C.Sort (C.Type tno')),subst,metasenv,ugraph1
388 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
389 | C.Sort (C.CProp tno) ->
390 let tno' = CicUniv.fresh() in
392 let ugraph1 = CicUniv.add_gt tno' tno ugraph in
393 t,(C.Sort (C.Type tno')),subst,metasenv,ugraph1
395 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
396 | C.Sort (C.Prop|C.Set) ->
397 t,C.Sort (C.Type (CicUniv.fresh())),subst,metasenv,ugraph
398 | C.Implicit infos ->
399 let metasenv',t' = exp_impl metasenv subst context infos in
400 type_of_aux subst metasenv' context t' ugraph
402 let ty',_,subst',metasenv',ugraph1 =
403 type_of_aux subst metasenv context ty ugraph
405 let te',inferredty,subst'',metasenv'',ugraph2 =
406 type_of_aux subst' metasenv' context te ugraph1
408 let rec count_prods context ty =
409 match CicReduction.whd context ~subst:subst'' ty with
410 | Cic.Prod (n,s,t) ->
411 1 + count_prods (Some (n,Cic.Decl s)::context) t
414 let exp_prods = count_prods context ty' in
415 let inf_prods = count_prods context inferredty in
416 let te', inferredty, metasenv'', subst'', ugraph2 =
417 let rec aux t m s ug it = function
420 match CicReduction.whd context ~subst:s it with
421 | Cic.Prod (_,src,tgt) ->
422 let newmeta, metaty, s, m, ug =
423 type_of_aux s m context (Cic.Implicit None) ug
426 fo_unif_subst s context m metaty src ug
430 | Cic.Appl l -> Cic.Appl (l @ [newmeta])
431 | _ -> Cic.Appl [t;newmeta]
433 aux t m s ug (CicSubstitution.subst newmeta tgt) (n-1)
436 aux te' metasenv'' subst'' ugraph2 inferredty
437 (max 0 (inf_prods - exp_prods))
439 let (te', ty'), subst''',metasenv''',ugraph3 =
440 coerce_to_something true localization_tbl te' inferredty ty'
441 subst'' metasenv'' context ugraph2
443 C.Cast (te',ty'),ty',subst''',metasenv''',ugraph3
444 | C.Prod (name,s,t) ->
445 let s',sort1,subst',metasenv',ugraph1 =
446 type_of_aux subst metasenv context s ugraph
448 let s',sort1,subst', metasenv',ugraph1 =
449 coerce_to_sort localization_tbl
450 s' sort1 subst' context metasenv' ugraph1
452 let context_for_t = ((Some (name,(C.Decl s')))::context) in
453 let t',sort2,subst'',metasenv'',ugraph2 =
454 type_of_aux subst' metasenv'
455 context_for_t t ugraph1
457 let t',sort2,subst'',metasenv'',ugraph2 =
458 coerce_to_sort localization_tbl
459 t' sort2 subst'' context_for_t metasenv'' ugraph2
461 let sop,subst''',metasenv''',ugraph3 =
462 sort_of_prod localization_tbl subst'' metasenv''
463 context (name,s') t' (sort1,sort2) ugraph2
465 C.Prod (name,s',t'),sop,subst''',metasenv''',ugraph3
466 | C.Lambda (n,s,t) ->
467 let s',sort1,subst',metasenv',ugraph1 =
468 type_of_aux subst metasenv context s ugraph
470 let s',sort1,subst',metasenv',ugraph1 =
471 coerce_to_sort localization_tbl
472 s' sort1 subst' context metasenv' ugraph1
474 let context_for_t = ((Some (n,(C.Decl s')))::context) in
475 let t',type2,subst'',metasenv'',ugraph2 =
476 type_of_aux subst' metasenv' context_for_t t ugraph1
478 C.Lambda (n,s',t'),C.Prod (n,s',type2),
479 subst'',metasenv'',ugraph2
480 | C.LetIn (n,s,ty,t) ->
481 (* only to check if s is well-typed *)
482 let s',ty',subst',metasenv',ugraph1 =
483 type_of_aux subst metasenv context s ugraph in
484 let ty,_,subst',metasenv',ugraph1 =
485 type_of_aux subst' metasenv' context ty ugraph1 in
486 let subst',metasenv',ugraph1 =
488 fo_unif_subst subst' context metasenv'
492 enrich localization_tbl s' exn
495 CicMetaSubst.ppterm_in_context ~metasenv:metasenv' subst' s'
496 context ^ " has type " ^
497 CicMetaSubst.ppterm_in_context ~metasenv:metasenv' subst' ty'
498 context ^ " but is here used with type " ^
499 CicMetaSubst.ppterm_in_context ~metasenv:metasenv' subst' ty
502 let context_for_t = ((Some (n,(C.Def (s',ty))))::context) in
504 let t',inferredty,subst'',metasenv'',ugraph2 =
505 type_of_aux subst' metasenv'
506 context_for_t t ugraph1
508 (* One-step LetIn reduction.
509 * Even faster than the previous solution.
510 * Moreover the inferred type is closer to the expected one.
512 C.LetIn (n,s',ty,t'),
513 CicSubstitution.subst ~avoid_beta_redexes:true s' inferredty,
514 subst'',metasenv'',ugraph2
515 | C.Appl (he::((_::_) as tl)) ->
516 let he',hetype,subst',metasenv',ugraph1 =
517 type_of_aux subst metasenv context he ugraph
519 let tlbody_and_type,subst'',metasenv'',ugraph2 =
520 typeof_list subst' metasenv' context ugraph1 tl
522 let coerced_he,coerced_args,applty,subst''',metasenv''',ugraph3 =
523 eat_prods true subst'' metasenv'' context
524 he' hetype tlbody_and_type ugraph2
526 let newappl = (C.Appl (coerced_he::coerced_args)) in
527 avoid_double_coercion
528 context subst''' metasenv''' ugraph3 newappl applty
529 | C.Appl _ -> assert false
530 | C.Const (uri,exp_named_subst) ->
531 let exp_named_subst',subst',metasenv',ugraph1 =
532 check_exp_named_subst subst metasenv context
533 exp_named_subst ugraph in
534 let ty_uri,ugraph2 = type_of_constant uri ugraph1 in
536 CicSubstitution.subst_vars exp_named_subst' ty_uri
538 C.Const (uri,exp_named_subst'),cty,subst',metasenv',ugraph2
539 | C.MutInd (uri,i,exp_named_subst) ->
540 let exp_named_subst',subst',metasenv',ugraph1 =
541 check_exp_named_subst subst metasenv context
542 exp_named_subst ugraph
544 let ty_uri,ugraph2 = type_of_mutual_inductive_defs uri i ugraph1 in
546 CicSubstitution.subst_vars exp_named_subst' ty_uri in
547 C.MutInd (uri,i,exp_named_subst'),cty,subst',metasenv',ugraph2
548 | C.MutConstruct (uri,i,j,exp_named_subst) ->
549 let exp_named_subst',subst',metasenv',ugraph1 =
550 check_exp_named_subst subst metasenv context
551 exp_named_subst ugraph
554 type_of_mutual_inductive_constr uri i j ugraph1
557 CicSubstitution.subst_vars exp_named_subst' ty_uri
559 C.MutConstruct (uri,i,j,exp_named_subst'),cty,subst',
561 | C.MutCase (uri, i, outtype, term, pl) ->
562 (* first, get the inductive type (and noparams)
563 * in the environment *)
564 let (_,b,arity,constructors), expl_params, no_left_params,ugraph =
565 let _ = CicTypeChecker.typecheck uri in
566 let obj,u = CicEnvironment.get_cooked_obj ugraph uri in
568 C.InductiveDefinition (l,expl_params,parsno,_) ->
569 List.nth l i , expl_params, parsno, u
571 enrich localization_tbl t
573 (lazy ("Unkown mutual inductive definition " ^
574 U.string_of_uri uri)))
576 if List.length constructors <> List.length pl then
577 enrich localization_tbl t
579 (lazy "Wrong number of cases")) ;
580 let rec count_prod t =
581 match CicReduction.whd ~subst context t with
582 C.Prod (_, _, t) -> 1 + (count_prod t)
585 let no_args = count_prod arity in
586 (* now, create a "generic" MutInd *)
587 let metasenv,left_args =
588 CicMkImplicit.n_fresh_metas metasenv subst context no_left_params
590 let metasenv,right_args =
591 let no_right_params = no_args - no_left_params in
592 if no_right_params < 0 then assert false
593 else CicMkImplicit.n_fresh_metas
594 metasenv subst context no_right_params
596 let metasenv,exp_named_subst =
597 CicMkImplicit.fresh_subst metasenv subst context expl_params in
600 C.MutInd (uri,i,exp_named_subst)
603 (C.MutInd (uri,i,exp_named_subst)::(left_args @ right_args))
605 (* check consistency with the actual type of term *)
606 let term',actual_type,subst,metasenv,ugraph1 =
607 type_of_aux subst metasenv context term ugraph in
608 let expected_type',_, subst, metasenv,ugraph2 =
609 type_of_aux subst metasenv context expected_type ugraph1
611 let actual_type = CicReduction.whd ~subst context actual_type in
612 let subst,metasenv,ugraph3 =
614 fo_unif_subst subst context metasenv
615 expected_type' actual_type ugraph2
618 enrich localization_tbl term' exn
621 CicMetaSubst.ppterm_in_context ~metasenv subst term'
622 context ^ " has type " ^
623 CicMetaSubst.ppterm_in_context ~metasenv subst actual_type
624 context ^ " but is here used with type " ^
625 CicMetaSubst.ppterm_in_context ~metasenv subst expected_type'
628 let rec instantiate_prod t =
632 match CicReduction.whd ~subst context t with
634 instantiate_prod (CicSubstitution.subst he t') tl
637 let arity_instantiated_with_left_args =
638 instantiate_prod arity left_args in
639 (* TODO: check if the sort elimination
640 * is allowed: [(I q1 ... qr)|B] *)
641 let (pl',_,outtypeinstances,subst,metasenv,ugraph4) =
643 (fun p (pl,j,outtypeinstances,subst,metasenv,ugraph) ->
645 if left_args = [] then
646 (C.MutConstruct (uri,i,j,exp_named_subst))
649 (C.MutConstruct (uri,i,j,exp_named_subst)::left_args))
651 let p',actual_type,subst,metasenv,ugraph1 =
652 type_of_aux subst metasenv context p ugraph
654 let constructor',expected_type, subst, metasenv,ugraph2 =
655 type_of_aux subst metasenv context constructor ugraph1
657 let outtypeinstance,subst,metasenv,ugraph3 =
659 check_branch 0 context metasenv subst
660 no_left_params actual_type constructor' expected_type
664 enrich localization_tbl constructor'
667 CicMetaSubst.ppterm_in_context metasenv subst p'
668 context ^ " has type " ^
669 CicMetaSubst.ppterm_in_context metasenv subst actual_type
670 context ^ " but is here used with type " ^
671 CicMetaSubst.ppterm_in_context metasenv subst expected_type
675 outtypeinstance::outtypeinstances,subst,metasenv,ugraph3))
676 pl ([],List.length pl,[],subst,metasenv,ugraph3)
679 (* we are left to check that the outype matches his instances.
680 The easy case is when the outype is specified, that amount
681 to a trivial check. Otherwise, we should guess a type from
685 let outtype,outtypety, subst, metasenv,ugraph4 =
686 type_of_aux subst metasenv context outtype ugraph4 in
689 (let candidate,ugraph5,metasenv,subst =
690 let exp_name_subst, metasenv =
692 CicEnvironment.get_cooked_obj CicUniv.oblivion_ugraph uri
694 let uris = CicUtil.params_of_obj o in
696 fun uri (acc,metasenv) ->
697 let metasenv',new_meta =
698 CicMkImplicit.mk_implicit metasenv subst context
701 CicMkImplicit.identity_relocation_list_for_metavariable
704 (uri, Cic.Meta(new_meta,irl))::acc, metasenv'
708 match left_args,right_args with
709 [],[] -> Cic.MutInd(uri, i, exp_name_subst)
711 let rec mk_right_args =
714 | n -> (Cic.Rel n)::(mk_right_args (n - 1))
716 let right_args_no = List.length right_args in
717 let lifted_left_args =
718 List.map (CicSubstitution.lift right_args_no) left_args
720 Cic.Appl (Cic.MutInd(uri,i,exp_name_subst)::
721 (lifted_left_args @ mk_right_args right_args_no))
724 FreshNamesGenerator.mk_fresh_name ~subst metasenv
725 context Cic.Anonymous ~typ:ty
727 match outtypeinstances with
729 let extended_context =
730 let rec add_right_args =
732 Cic.Prod (name,ty,t) ->
733 Some (name,Cic.Decl ty)::(add_right_args t)
736 (Some (fresh_name,Cic.Decl ty))::
738 (add_right_args arity_instantiated_with_left_args))@
741 let metasenv,new_meta =
742 CicMkImplicit.mk_implicit metasenv subst extended_context
745 CicMkImplicit.identity_relocation_list_for_metavariable
748 let rec add_lambdas b =
750 Cic.Prod (name,ty,t) ->
751 Cic.Lambda (name,ty,(add_lambdas b t))
752 | _ -> Cic.Lambda (fresh_name, ty, b)
755 add_lambdas (Cic.Meta (new_meta,irl))
756 arity_instantiated_with_left_args
758 (Some candidate),ugraph4,metasenv,subst
759 | (constructor_args_no,_,instance,_)::tl ->
761 let instance',subst,metasenv =
762 CicMetaSubst.delift_rels subst metasenv
763 constructor_args_no instance
765 let candidate,ugraph,metasenv,subst =
767 fun (candidate_oty,ugraph,metasenv,subst)
768 (constructor_args_no,_,instance,_) ->
769 match candidate_oty with
770 | None -> None,ugraph,metasenv,subst
773 let instance',subst,metasenv =
774 CicMetaSubst.delift_rels subst metasenv
775 constructor_args_no instance
777 let subst,metasenv,ugraph =
778 fo_unif_subst subst context metasenv
781 candidate_oty,ugraph,metasenv,subst
783 CicMetaSubst.DeliftingARelWouldCaptureAFreeVariable
784 | RefineFailure _ | Uncertain _ ->
785 None,ugraph,metasenv,subst
786 ) (Some instance',ugraph4,metasenv,subst) tl
789 | None -> None, ugraph,metasenv,subst
791 let rec add_lambdas n b =
793 Cic.Prod (name,ty,t) ->
794 Cic.Lambda (name,ty,(add_lambdas (n + 1) b t))
796 Cic.Lambda (fresh_name, ty,
797 CicSubstitution.lift (n + 1) t)
800 (add_lambdas 0 t arity_instantiated_with_left_args),
801 ugraph,metasenv,subst
802 with CicMetaSubst.DeliftingARelWouldCaptureAFreeVariable ->
803 None,ugraph4,metasenv,subst
806 | None -> raise (Uncertain (lazy "can't solve an higher order unification problem"))
808 let subst,metasenv,ugraph =
810 fo_unif_subst subst context metasenv
811 candidate outtype ugraph5
813 exn -> assert false(* unification against a metavariable *)
815 C.MutCase (uri, i, outtype, term', pl'),
816 CicReduction.head_beta_reduce
817 (CicMetaSubst.apply_subst subst
818 (Cic.Appl (outtype::right_args@[term']))),
819 subst,metasenv,ugraph)
820 | _ -> (* easy case *)
821 let tlbody_and_type,subst,metasenv,ugraph4 =
822 typeof_list subst metasenv context ugraph4 (right_args @ [term'])
824 let _,_,_,subst,metasenv,ugraph4 =
825 eat_prods false subst metasenv context
826 outtype outtypety tlbody_and_type ugraph4
828 let _,_, subst, metasenv,ugraph5 =
829 type_of_aux subst metasenv context
830 (C.Appl ((outtype :: right_args) @ [term'])) ugraph4
832 let (subst,metasenv,ugraph6) =
834 (fun (subst,metasenv,ugraph)
835 p (constructor_args_no,context,instance,args)
840 CicSubstitution.lift constructor_args_no outtype
842 C.Appl (outtype'::args)
844 CicReduction.head_beta_reduce ~delta:false
845 ~upto:(List.length args) appl
848 fo_unif_subst subst context metasenv instance instance'
852 enrich localization_tbl p exn
855 CicMetaSubst.ppterm_in_context ~metasenv subst p
856 context ^ " has type " ^
857 CicMetaSubst.ppterm_in_context ~metasenv subst instance'
858 context ^ " but is here used with type " ^
859 CicMetaSubst.ppterm_in_context ~metasenv subst instance
861 (subst,metasenv,ugraph5) pl' outtypeinstances
863 C.MutCase (uri, i, outtype, term', pl'),
864 CicReduction.head_beta_reduce
865 (CicMetaSubst.apply_subst subst
866 (C.Appl(outtype::right_args@[term']))),
867 subst,metasenv,ugraph6)
869 let fl_ty',subst,metasenv,types,ugraph1,len =
871 (fun (fl,subst,metasenv,types,ugraph,len) (n,_,ty,_) ->
872 let ty',_,subst',metasenv',ugraph1 =
873 type_of_aux subst metasenv context ty ugraph
875 fl @ [ty'],subst',metasenv',
876 Some (C.Name n,(C.Decl (CicSubstitution.lift len ty')))
877 :: types, ugraph, len+1
878 ) ([],subst,metasenv,[],ugraph,0) fl
880 let context' = types@context in
881 let fl_bo',subst,metasenv,ugraph2 =
883 (fun (fl,subst,metasenv,ugraph) ((name,x,_,bo),ty) ->
884 let bo',ty_of_bo,subst,metasenv,ugraph1 =
885 type_of_aux subst metasenv context' bo ugraph in
886 let expected_ty = CicSubstitution.lift len ty in
887 let subst',metasenv',ugraph' =
889 fo_unif_subst subst context' metasenv
890 ty_of_bo expected_ty ugraph1
893 enrich localization_tbl bo exn
896 CicMetaSubst.ppterm_in_context ~metasenv subst bo
897 context' ^ " has type " ^
898 CicMetaSubst.ppterm_in_context ~metasenv subst ty_of_bo
899 context' ^ " but is here used with type " ^
900 CicMetaSubst.ppterm_in_context ~metasenv subst expected_ty
903 fl @ [bo'] , subst',metasenv',ugraph'
904 ) ([],subst,metasenv,ugraph1) (List.combine fl fl_ty')
906 let ty = List.nth fl_ty' i in
907 (* now we have the new ty in fl_ty', the new bo in fl_bo',
908 * and we want the new fl with bo' and ty' injected in the right
911 let rec map3 f l1 l2 l3 =
914 | h1::tl1,h2::tl2,h3::tl3 -> (f h1 h2 h3) :: (map3 f tl1 tl2 tl3)
917 let fl'' = map3 (fun ty' bo' (name,x,ty,bo) -> (name,x,ty',bo') )
920 C.Fix (i,fl''),ty,subst,metasenv,ugraph2
922 let fl_ty',subst,metasenv,types,ugraph1,len =
924 (fun (fl,subst,metasenv,types,ugraph,len) (n,ty,_) ->
925 let ty',_,subst',metasenv',ugraph1 =
926 type_of_aux subst metasenv context ty ugraph
928 fl @ [ty'],subst',metasenv',
929 Some (C.Name n,(C.Decl (CicSubstitution.lift len ty'))) ::
930 types, ugraph1, len+1
931 ) ([],subst,metasenv,[],ugraph,0) fl
933 let context' = types@context in
934 let fl_bo',subst,metasenv,ugraph2 =
936 (fun (fl,subst,metasenv,ugraph) ((name,_,bo),ty) ->
937 let bo',ty_of_bo,subst,metasenv,ugraph1 =
938 type_of_aux subst metasenv context' bo ugraph in
939 let expected_ty = CicSubstitution.lift len ty in
940 let subst',metasenv',ugraph' =
942 fo_unif_subst subst context' metasenv
943 ty_of_bo expected_ty ugraph1
946 enrich localization_tbl bo exn
949 CicMetaSubst.ppterm_in_context ~metasenv subst bo
950 context' ^ " has type " ^
951 CicMetaSubst.ppterm_in_context ~metasenv subst ty_of_bo
952 context' ^ " but is here used with type " ^
953 CicMetaSubst.ppterm_in_context ~metasenv subst expected_ty
956 fl @ [bo'],subst',metasenv',ugraph'
957 ) ([],subst,metasenv,ugraph1) (List.combine fl fl_ty')
959 let ty = List.nth fl_ty' i in
960 (* now we have the new ty in fl_ty', the new bo in fl_bo',
961 * and we want the new fl with bo' and ty' injected in the right
964 let rec map3 f l1 l2 l3 =
967 | h1::tl1,h2::tl2,h3::tl3 -> (f h1 h2 h3) :: (map3 f tl1 tl2 tl3)
970 let fl'' = map3 (fun ty' bo' (name,ty,bo) -> (name,ty',bo') )
973 C.CoFix (i,fl''),ty,subst,metasenv,ugraph2
975 relocalize localization_tbl t t';
978 (* check_metasenv_consistency checks that the "canonical" context of a
979 metavariable is consitent - up to relocation via the relocation list l -
980 with the actual context *)
981 and check_metasenv_consistency
982 metano subst metasenv context canonical_context l ugraph
984 let module C = Cic in
985 let module R = CicReduction in
986 let module S = CicSubstitution in
987 let lifted_canonical_context =
991 | (Some (n,C.Decl t))::tl ->
992 (Some (n,C.Decl (S.subst_meta l (S.lift i t))))::(aux (i+1) tl)
993 | None::tl -> None::(aux (i+1) tl)
994 | (Some (n,C.Def (t,ty)))::tl ->
998 (S.subst_meta l (S.lift i t),
999 S.subst_meta l (S.lift i ty)))) :: (aux (i+1) tl)
1001 aux 1 canonical_context
1005 (fun (l,subst,metasenv,ugraph) t ct ->
1008 l @ [None],subst,metasenv,ugraph
1009 | Some t,Some (_,C.Def (ct,_)) ->
1010 (*CSC: the following optimization is to avoid a possibly
1011 expensive reduction that can be easily avoided and
1012 that is quite frequent. However, this is better
1013 handled using levels to control reduction *)
1018 match List.nth context (n - 1) with
1019 Some (_,C.Def (te,_)) -> S.lift n te
1025 let subst',metasenv',ugraph' =
1027 (*prerr_endline ("poco geniale: nel caso di IRL basterebbe sapere che questo e'
1028 * il Rel corrispondente. Si puo' ottimizzare il caso t = rel.");*)
1029 fo_unif_subst subst context metasenv optimized_t ct ugraph
1030 with e -> raise (RefineFailure (lazy (sprintf "The local context is not consistent with the canonical context, since %s cannot be unified with %s. Reason: %s" (CicMetaSubst.ppterm ~metasenv subst optimized_t) (CicMetaSubst.ppterm ~metasenv subst ct) (match e with AssertFailure msg -> Lazy.force msg | _ -> (Printexc.to_string e))))))
1032 l @ [Some t],subst',metasenv',ugraph'
1033 | Some t,Some (_,C.Decl ct) ->
1034 let t',inferredty,subst',metasenv',ugraph1 =
1035 type_of_aux subst metasenv context t ugraph
1037 let subst'',metasenv'',ugraph2 =
1040 subst' context metasenv' inferredty ct ugraph1
1041 with e -> raise (RefineFailure (lazy (sprintf "The local context is not consistent with the canonical context, since the type %s of %s cannot be unified with the expected type %s. Reason: %s" (CicMetaSubst.ppterm metasenv' subst' inferredty) (CicMetaSubst.ppterm metasenv' subst' t) (CicMetaSubst.ppterm metasenv' subst' ct) (match e with AssertFailure msg -> Lazy.force msg | RefineFailure msg -> Lazy.force msg | _ -> (Printexc.to_string e))))))
1043 l @ [Some t'], subst'',metasenv'',ugraph2
1045 raise (RefineFailure (lazy (sprintf "Not well typed metavariable instance %s: the local context does not instantiate an hypothesis even if the hypothesis is not restricted in the canonical context %s" (CicMetaSubst.ppterm ~metasenv subst (Cic.Meta (metano, l))) (CicMetaSubst.ppcontext ~metasenv subst canonical_context))))) ([],subst,metasenv,ugraph) l lifted_canonical_context
1047 Invalid_argument _ ->
1051 "Not well typed metavariable instance %s: the length of the local context does not match the length of the canonical context %s"
1052 (CicMetaSubst.ppterm ~metasenv subst (Cic.Meta (metano, l)))
1053 (CicMetaSubst.ppcontext ~metasenv subst canonical_context))))
1055 and check_exp_named_subst metasubst metasenv context tl ugraph =
1056 let rec check_exp_named_subst_aux metasubst metasenv substs tl ugraph =
1058 [] -> [],metasubst,metasenv,ugraph
1060 let ty_uri,ugraph1 = type_of_variable uri ugraph in
1062 CicSubstitution.subst_vars substs ty_uri in
1063 (* CSC: why was this code here? it is wrong
1064 (match CicEnvironment.get_cooked_obj ~trust:false uri with
1065 Cic.Variable (_,Some bo,_,_) ->
1067 (RefineFailure (lazy
1068 "A variable with a body can not be explicit substituted"))
1069 | Cic.Variable (_,None,_,_) -> ()
1072 (RefineFailure (lazy
1073 ("Unkown variable definition " ^ UriManager.string_of_uri uri)))
1076 let t',typeoft,metasubst',metasenv',ugraph2 =
1077 type_of_aux metasubst metasenv context t ugraph1 in
1078 let subst = uri,t' in
1079 let metasubst'',metasenv'',ugraph3 =
1082 metasubst' context metasenv' typeoft typeofvar ugraph2
1084 raise (RefineFailure (lazy
1085 ("Wrong Explicit Named Substitution: " ^
1086 CicMetaSubst.ppterm metasenv' metasubst' typeoft ^
1087 " not unifiable with " ^
1088 CicMetaSubst.ppterm metasenv' metasubst' typeofvar)))
1090 (* FIXME: no mere tail recursive! *)
1091 let exp_name_subst, metasubst''', metasenv''', ugraph4 =
1092 check_exp_named_subst_aux
1093 metasubst'' metasenv'' (substs@[subst]) tl ugraph3
1095 ((uri,t')::exp_name_subst), metasubst''', metasenv''', ugraph4
1097 check_exp_named_subst_aux metasubst metasenv [] tl ugraph
1100 and sort_of_prod localization_tbl subst metasenv context (name,s) t (t1, t2)
1103 let module C = Cic in
1104 let context_for_t2 = (Some (name,C.Decl s))::context in
1105 let t1'' = CicReduction.whd ~subst context t1 in
1106 let t2'' = CicReduction.whd ~subst context_for_t2 t2 in
1107 match (t1'', t2'') with
1108 | (C.Sort s1, C.Sort s2) when (s2 = C.Prop || s2 = C.Set) ->
1109 (* different than Coq manual!!! *)
1110 C.Sort s2,subst,metasenv,ugraph
1111 | (C.Sort (C.Type t1), C.Sort (C.Type t2)) ->
1112 let t' = CicUniv.fresh() in
1114 let ugraph1 = CicUniv.add_ge t' t1 ugraph in
1115 let ugraph2 = CicUniv.add_ge t' t2 ugraph1 in
1116 C.Sort (C.Type t'),subst,metasenv,ugraph2
1118 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
1119 | (C.Sort (C.CProp t1), C.Sort (C.CProp t2)) ->
1120 let t' = CicUniv.fresh() in
1122 let ugraph1 = CicUniv.add_ge t' t1 ugraph in
1123 let ugraph2 = CicUniv.add_ge t' t2 ugraph1 in
1124 C.Sort (C.CProp t'),subst,metasenv,ugraph2
1126 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
1127 | (C.Sort (C.Type t1), C.Sort (C.CProp t2)) ->
1128 let t' = CicUniv.fresh() in
1130 let ugraph1 = CicUniv.add_ge t' t1 ugraph in
1131 let ugraph2 = CicUniv.add_ge t' t2 ugraph1 in
1132 C.Sort (C.CProp t'),subst,metasenv,ugraph2
1134 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
1135 | (C.Sort (C.CProp t1), C.Sort (C.Type t2)) ->
1136 let t' = CicUniv.fresh() in
1138 let ugraph1 = CicUniv.add_ge t' t1 ugraph in
1139 let ugraph2 = CicUniv.add_ge t' t2 ugraph1 in
1140 C.Sort (C.Type t'),subst,metasenv,ugraph2
1142 CicUniv.UniverseInconsistency msg -> raise (RefineFailure msg))
1143 | (C.Sort _,C.Sort (C.Type t1)) ->
1144 C.Sort (C.Type t1),subst,metasenv,ugraph
1145 | (C.Sort _,C.Sort (C.CProp t1)) ->
1146 C.Sort (C.CProp t1),subst,metasenv,ugraph
1147 | (C.Meta _, C.Sort _) -> t2'',subst,metasenv,ugraph
1148 | (C.Sort _,C.Meta _) | (C.Meta _,C.Meta _) ->
1149 (* TODO how can we force the meta to become a sort? If we don't we
1150 * break the invariant that refine produce only well typed terms *)
1151 (* TODO if we check the non meta term and if it is a sort then we
1152 * are likely to know the exact value of the result e.g. if the rhs
1153 * is a Sort (Prop | Set | CProp) then the result is the rhs *)
1154 let (metasenv,idx) =
1155 CicMkImplicit.mk_implicit_sort metasenv subst in
1156 let (subst, metasenv,ugraph1) =
1158 fo_unif_subst subst context_for_t2 metasenv
1159 (C.Meta (idx,[])) t2'' ugraph
1160 with _ -> assert false (* unification against a metavariable *)
1162 t2'',subst,metasenv,ugraph1
1165 enrich localization_tbl s
1169 "%s is supposed to be a type, but its type is %s"
1170 (CicMetaSubst.ppterm_in_context ~metasenv subst t context)
1171 (CicMetaSubst.ppterm_in_context ~metasenv subst t2 context))))
1173 enrich localization_tbl t
1177 "%s is supposed to be a type, but its type is %s"
1178 (CicMetaSubst.ppterm_in_context ~metasenv subst s context)
1179 (CicMetaSubst.ppterm_in_context ~metasenv subst t1 context))))
1181 and avoid_double_coercion context subst metasenv ugraph t ty =
1182 if not !pack_coercions then
1183 t,ty,subst,metasenv,ugraph
1185 let b, c1, c2, head, c1_c2_implicit = is_a_double_coercion t in
1187 let source_carr = CoercGraph.source_of c2 in
1188 let tgt_carr = CicMetaSubst.apply_subst subst ty in
1189 (match CoercGraph.look_for_coercion metasenv subst context source_carr tgt_carr
1191 | CoercGraph.SomeCoercion candidates ->
1193 HExtlib.list_findopt
1194 (function (metasenv,last,c) ->
1196 | c when not (CoercGraph.is_composite c) ->
1197 debug_print (lazy ("\nNot a composite.."^CicPp.ppterm c));
1200 let subst,metasenv,ugraph =
1201 fo_unif_subst subst context metasenv last head ugraph in
1202 debug_print (lazy ("\nprovo" ^ CicPp.ppterm c));
1207 CicPp.ppterm t ^ " ==> " ^ CicPp.ppterm c));
1208 let newt,_,subst,metasenv,ugraph =
1209 type_of_aux subst metasenv context c ugraph in
1210 debug_print (lazy "tipa...");
1211 let subst, metasenv, ugraph =
1212 (* COME MAI C'ERA UN IF su !pack_coercions ??? *)
1213 fo_unif_subst subst context metasenv newt t ugraph
1215 debug_print (lazy "unifica...");
1216 Some (newt, ty, subst, metasenv, ugraph)
1218 | RefineFailure s | Uncertain s when not !pack_coercions->
1219 debug_print s; debug_print (lazy "stop\n");None
1220 | RefineFailure s | Uncertain s ->
1221 debug_print s;debug_print (lazy "goon\n");
1223 let old_pack_coercions = !pack_coercions in
1224 pack_coercions := false; (* to avoid diverging *)
1225 let refined_c1_c2_implicit,ty,subst,metasenv,ugraph =
1226 type_of_aux subst metasenv context c1_c2_implicit ugraph
1228 pack_coercions := old_pack_coercions;
1230 is_a_double_coercion refined_c1_c2_implicit
1236 match refined_c1_c2_implicit with
1237 | Cic.Appl l -> HExtlib.list_last l
1240 let subst, metasenv, ugraph =
1241 try fo_unif_subst subst context metasenv
1243 with RefineFailure s| Uncertain s->
1244 debug_print s;assert false
1246 let subst, metasenv, ugraph =
1247 fo_unif_subst subst context metasenv
1248 refined_c1_c2_implicit t ugraph
1250 Some (refined_c1_c2_implicit,ty,subst,metasenv,ugraph)
1252 | RefineFailure s | Uncertain s ->
1253 pack_coercions := true;debug_print s;None
1254 | exn -> pack_coercions := true; raise exn))
1257 (match selected with
1261 (lazy ("#### Coercion not packed: " ^ CicPp.ppterm t));
1262 t, ty, subst, metasenv, ugraph)
1263 | _ -> t, ty, subst, metasenv, ugraph)
1265 t, ty, subst, metasenv, ugraph
1267 and typeof_list subst metasenv context ugraph l =
1268 let tlbody_and_type,subst,metasenv,ugraph =
1270 (fun x (res,subst,metasenv,ugraph) ->
1271 let x',ty,subst',metasenv',ugraph1 =
1272 type_of_aux subst metasenv context x ugraph
1274 (x', ty)::res,subst',metasenv',ugraph1
1275 ) l ([],subst,metasenv,ugraph)
1277 tlbody_and_type,subst,metasenv,ugraph
1280 allow_coercions subst metasenv context he hetype args_bo_and_ty ugraph
1282 (* given he:hety, gives beack all (c he) such that (c e):?->? *)
1283 let fix_arity n metasenv context subst he hetype ugraph =
1284 let hetype = CicMetaSubst.apply_subst subst hetype in
1285 (* instead of a dummy functional type we may create the real product
1286 * using args_bo_and_ty, but since coercions lookup ignores the
1287 * actual ariety we opt for the simple solution *)
1288 let fty = Cic.Prod(Cic.Anonymous, Cic.Sort Cic.Prop, Cic.Sort Cic.Prop) in
1289 match CoercGraph.look_for_coercion metasenv subst context hetype fty with
1290 | CoercGraph.NoCoercion -> []
1291 | CoercGraph.NotHandled ->
1292 raise (MoreArgsThanExpected (n,Uncertain (lazy "")))
1293 | CoercGraph.SomeCoercionToTgt candidates
1294 | CoercGraph.SomeCoercion candidates ->
1296 (fun (metasenv,last,coerc) ->
1298 CicMetaSubst.ppterm_in_context ~metasenv subst t context in
1300 let subst,metasenv,ugraph =
1301 fo_unif_subst subst context metasenv last he ugraph in
1302 debug_print (lazy ("New head: "^ pp coerc));
1304 CicTypeChecker.type_of_aux' ~subst metasenv context coerc
1307 debug_print (lazy (" has type: "^ pp tty));
1308 Some (coerc,tty,subst,metasenv,ugraph)
1310 | Uncertain _ | RefineFailure _
1311 | HExtlib.Localized (_,Uncertain _)
1312 | HExtlib.Localized (_,RefineFailure _) -> None
1313 | exn -> assert false)
1316 (* aux function to process the type of the head and the args in parallel *)
1317 let rec eat_prods_and_args metasenv subst context he hetype ugraph newargs =
1319 | [] -> newargs,subst,metasenv,he,hetype,ugraph
1320 | (hete, hety)::tl as args ->
1321 match (CicReduction.whd ~subst context hetype) with
1322 | Cic.Prod (n,s,t) ->
1323 let arg,subst,metasenv,ugraph =
1324 coerce_to_something allow_coercions localization_tbl
1325 hete hety s subst metasenv context ugraph in
1327 metasenv subst context he (CicSubstitution.subst (fst arg) t)
1328 ugraph (newargs@[arg]) tl
1331 match he, newargs with
1333 | Cic.Appl l, _ -> Cic.Appl (l@List.map fst newargs)
1334 | _ -> Cic.Appl (he::List.map fst newargs)
1336 (*{{{*) debug_print (lazy
1338 CicMetaSubst.ppterm_in_context ~metasenv subst x context in
1339 "Fixing arity of: "^ pp he ^ "\n that has type: "^ pp hetype^
1340 "\n but is applyed to: " ^ String.concat ";"
1341 (List.map (fun (t,_)->pp t) args_bo_and_ty)); (*}}}*)
1342 let error = ref None in
1343 let possible_fixes =
1344 fix_arity (List.length args) metasenv context subst he hetype
1347 HExtlib.list_findopt
1348 (fun (he,hetype,subst,metasenv,ugraph) ->
1349 (* {{{ *)debug_print (lazy ("Try fix: "^
1350 CicMetaSubst.ppterm_in_context ~metasenv subst he context));
1351 debug_print (lazy (" of type: "^
1352 CicMetaSubst.ppterm_in_context
1353 ~metasenv subst hetype context)); (* }}} *)
1355 Some (eat_prods_and_args
1356 metasenv subst context he hetype ugraph [] args)
1358 | RefineFailure _ | Uncertain _
1359 | HExtlib.Localized (_,RefineFailure _)
1360 | HExtlib.Localized (_,Uncertain _) as exn ->
1361 error := Some exn; None)
1369 (MoreArgsThanExpected
1370 (List.length args, RefineFailure (lazy "")))
1371 | Some exn -> raise exn
1373 (* first we check if we are in the simple case of a meta closed term *)
1374 let subst,metasenv,ugraph1,hetype',he,args_bo_and_ty =
1375 if CicUtil.is_meta_closed (CicMetaSubst.apply_subst subst hetype) then
1376 (* this optimization is to postpone fix_arity (the most common case)*)
1377 subst,metasenv,ugraph,hetype,he,args_bo_and_ty
1379 (* this (says CSC) is also useful to infer dependent types *)
1380 let pristinemenv = metasenv in
1381 let metasenv,hetype' =
1382 mk_prod_of_metas metasenv context subst args_bo_and_ty
1385 let subst,metasenv,ugraph =
1386 fo_unif_subst_eat_prods subst context metasenv hetype hetype' ugraph
1388 subst,metasenv,ugraph,hetype',he,args_bo_and_ty
1389 with RefineFailure _ | Uncertain _ ->
1390 subst,pristinemenv,ugraph,hetype,he,args_bo_and_ty
1392 let coerced_args,subst,metasenv,he,t,ugraph =
1395 metasenv subst context he hetype' ugraph1 [] args_bo_and_ty
1397 MoreArgsThanExpected (residuals,exn) ->
1398 more_args_than_expected localization_tbl metasenv
1399 subst he context hetype' residuals args_bo_and_ty exn
1401 he,(List.map fst coerced_args),t,subst,metasenv,ugraph
1403 and coerce_to_something
1404 allow_coercions localization_tbl t infty expty subst metasenv context ugraph
1406 let module CS = CicSubstitution in
1407 let module CR = CicReduction in
1408 let cs_subst = CS.subst ~avoid_beta_redexes:true in
1409 let coerce_atom_to_something t infty expty subst metasenv context ugraph =
1410 debug_print (lazy ("COERCE_ATOM_TO_SOMETHING"));
1412 CoercGraph.look_for_coercion metasenv subst context infty expty
1415 | CoercGraph.NoCoercion
1416 | CoercGraph.SomeCoercionToTgt _ -> raise (RefineFailure (lazy
1417 "coerce_atom_to_something fails since no coercions found"))
1418 | CoercGraph.NotHandled when
1419 not (CicUtil.is_meta_closed infty) ||
1420 not (CicUtil.is_meta_closed expty) -> raise (Uncertain (lazy
1421 "coerce_atom_to_something fails since carriers have metas"))
1422 | CoercGraph.NotHandled -> raise (RefineFailure (lazy
1423 "coerce_atom_to_something fails since no coercions found"))
1424 | CoercGraph.SomeCoercion candidates ->
1425 debug_print (lazy (string_of_int (List.length candidates) ^
1426 " candidates found"));
1427 let uncertain = ref false in
1431 (fun (metasenv,last,c) ->
1433 (* {{{ *) debug_print (lazy ("FO_UNIF_SUBST: " ^
1434 CicMetaSubst.ppterm_in_context ~metasenv subst last context ^
1436 CicMetaSubst.ppterm_in_context ~metasenv subst t context ^
1437 "####" ^ CicMetaSubst.ppterm_in_context ~metasenv subst c
1439 debug_print (lazy ("FO_UNIF_SUBST: " ^
1440 CicPp.ppterm last ^ " <==> " ^ CicPp.ppterm t)); (* }}} *)
1441 let subst,metasenv,ugraph =
1442 fo_unif_subst subst context metasenv last t ugraph
1444 let newt,newhety,subst,metasenv,ugraph =
1445 type_of_aux subst metasenv context c ugraph in
1446 let newt, newty, subst, metasenv, ugraph =
1447 avoid_double_coercion context subst metasenv ugraph newt expty
1449 let subst,metasenv,ugraph =
1450 fo_unif_subst subst context metasenv newhety expty ugraph in
1451 Some ((newt,newty), subst, metasenv, ugraph)
1453 | Uncertain _ -> uncertain := true; None
1454 | RefineFailure _ -> None)
1459 (fun (_,_,m1,_) (_,_,m2,_) -> List.length m1 - List.length m2)
1467 | None when !uncertain -> raise (Uncertain (lazy "coerce_atom fails"))
1468 | None -> raise (RefineFailure (lazy "coerce_atom fails"))
1470 let rec coerce_to_something_aux
1471 t infty expty subst metasenv context ugraph
1474 let subst, metasenv, ugraph =
1475 fo_unif_subst subst context metasenv infty expty ugraph
1477 (t, expty), subst, metasenv, ugraph
1478 with (Uncertain _ | RefineFailure _ as exn)
1479 when allow_coercions && !insert_coercions ->
1480 let whd = CicReduction.whd ~delta:false in
1481 let clean t s c = whd c (CicMetaSubst.apply_subst s t) in
1482 let infty = clean infty subst context in
1483 let expty = clean expty subst context in
1484 let t = clean t subst context in
1485 (*{{{*) debug_print (lazy ("COERCE_TO_SOMETHING: " ^
1486 CicMetaSubst.ppterm_in_context ~metasenv subst t context ^ " : " ^
1487 CicMetaSubst.ppterm_in_context ~metasenv subst infty context ^" ==> "^
1488 CicMetaSubst.ppterm_in_context ~metasenv subst expty context));(*}}}*)
1489 let (coerced,_),subst,metasenv,_ as result =
1490 match infty, expty, t with
1491 | Cic.Prod (nameprod,src,ty), Cic.Prod (_,src2,ty2),Cic.Fix (n,fl) ->
1492 (*{{{*) debug_print (lazy "FIX");
1494 [name,i,_(* infty *),bo] ->
1496 Some (Cic.Name name,Cic.Decl expty)::context in
1497 let (rel1, _), subst, metasenv, ugraph =
1498 coerce_to_something_aux (Cic.Rel 1)
1499 (CS.lift 1 expty) (CS.lift 1 infty) subst
1500 metasenv context_bo ugraph in
1501 let bo = cs_subst rel1 (CS.lift_from 2 1 bo) in
1502 let (bo,_), subst, metasenv, ugraph =
1503 coerce_to_something_aux bo (CS.lift 1 infty) (CS.lift 1
1505 metasenv context_bo ugraph
1507 (Cic.Fix (n,[name,i,expty,bo]),expty),subst,metasenv,ugraph
1508 | _ -> assert false (* not implemented yet *)) (*}}}*)
1509 | _,_, Cic.MutCase (uri,tyno,outty,m,pl) ->
1510 (*{{{*) debug_print (lazy "CASE");
1511 (* {{{ helper functions *)
1512 let get_cl_and_left_p uri tyno outty ugraph =
1513 match CicEnvironment.get_obj ugraph uri with
1514 | Cic.InductiveDefinition (tl, _, leftno, _),ugraph ->
1517 match CicReduction.whd ~delta:false ctx t with
1518 | Cic.Prod (name,src,tgt) ->
1519 let ctx = Some (name, Cic.Decl src) :: ctx in
1525 let rec skip_lambda_delifting t n =
1528 | Cic.Lambda (_,_,t),n ->
1529 skip_lambda_delifting
1530 (CS.subst (Cic.Implicit None) t) (n - 1)
1533 let get_l_r_p n = function
1534 | Cic.Lambda (_,Cic.MutInd _,_) -> [],[]
1535 | Cic.Lambda (_,Cic.Appl (Cic.MutInd _ :: args),_) ->
1536 HExtlib.split_nth n args
1539 let _, _, ty, cl = List.nth tl tyno in
1540 let pis = count_pis ty in
1541 let rno = pis - leftno in
1542 let t = skip_lambda_delifting outty rno in
1543 let left_p, _ = get_l_r_p leftno t in
1544 let instantiale_with_left cl =
1548 (fun t p -> match t with
1549 | Cic.Prod (_,_,t) ->
1555 let cl = instantiale_with_left (List.map snd cl) in
1556 cl, left_p, leftno, rno, ugraph
1559 let rec keep_lambdas_and_put_expty ctx t bo right_p matched n =
1562 let rec mkr n = function
1563 | [] -> [] | _::tl -> Cic.Rel n :: mkr (n+1) tl
1566 CicReplace.replace_lifting
1567 ~equality:(fun _ -> CicUtil.alpha_equivalence)
1569 ~what:(matched::right_p)
1570 ~with_what:(Cic.Rel 1::List.rev (mkr 2 right_p))
1574 | Cic.Lambda (name, src, tgt),_ ->
1575 Cic.Lambda (name, src,
1576 keep_lambdas_and_put_expty
1577 (Some (name, Cic.Decl src)::ctx) tgt (CS.lift 1 bo)
1578 (List.map (CS.lift 1) right_p) (CS.lift 1 matched) (n-1))
1581 let eq_uri, eq, eq_refl =
1582 match LibraryObjects.eq_URI () with
1583 | None -> HLog.warn "no default equality"; raise exn
1584 | Some u -> u, Cic.MutInd(u,0,[]), Cic.MutConstruct (u,0,1,[])
1587 metasenv subst context uri tyno cty outty mty m leftno i
1589 let rec aux context outty par k mty m = function
1590 | Cic.Prod (name, src, tgt) ->
1593 (Some (name, Cic.Decl src) :: context)
1594 (CS.lift 1 outty) (Cic.Rel k::par) (k+1)
1595 (CS.lift 1 mty) (CS.lift 1 m) tgt
1597 Cic.Prod (name, src, t), k
1600 let k = Cic.MutConstruct (uri,tyno,i,[]) in
1601 if par <> [] then Cic.Appl (k::par) else k
1603 Cic.Prod (Cic.Name "p",
1604 Cic.Appl [eq; mty; m; k],
1606 (CR.head_beta_reduce ~delta:false
1607 (Cic.Appl [outty;k])))),k
1608 | Cic.Appl (Cic.MutInd _::pl) ->
1609 let left_p,right_p = HExtlib.split_nth leftno pl in
1610 let has_rights = right_p <> [] in
1612 let k = Cic.MutConstruct (uri,tyno,i,[]) in
1613 Cic.Appl (k::left_p@par)
1617 CicTypeChecker.type_of_aux' ~subst metasenv context k
1618 CicUniv.oblivion_ugraph
1620 | Cic.Appl (Cic.MutInd _::args),_ ->
1621 snd (HExtlib.split_nth leftno args)
1623 with CicTypeChecker.TypeCheckerFailure _-> assert false
1626 CR.head_beta_reduce ~delta:false
1627 (Cic.Appl (outty ::right_p @ [k])),k
1629 Cic.Prod (Cic.Name "p",
1630 Cic.Appl [eq; mty; m; k],
1632 (CR.head_beta_reduce ~delta:false
1633 (Cic.Appl (outty ::right_p @ [k]))))),k
1636 aux context outty [] 1 mty m cty
1638 let add_lambda_for_refl_m pbo rno mty m k cty =
1639 (* k lives in the right context *)
1640 if rno <> 0 then pbo else
1641 let rec aux mty m = function
1642 | Cic.Lambda (name,src,bo), Cic.Prod (_,_,ty) ->
1643 Cic.Lambda (name,src,
1644 (aux (CS.lift 1 mty) (CS.lift 1 m) (bo,ty)))
1646 Cic.Lambda (Cic.Name "p",
1647 Cic.Appl [eq; mty; m; k],CS.lift 1 t)
1651 let add_pi_for_refl_m new_outty mty m rno =
1652 if rno <> 0 then new_outty else
1653 let rec aux m mty = function
1654 | Cic.Lambda (name, src, tgt) ->
1655 Cic.Lambda (name, src,
1656 aux (CS.lift 1 m) (CS.lift 1 mty) tgt)
1659 (Cic.Anonymous, Cic.Appl [eq;mty;m;Cic.Rel 1],
1663 in (* }}} end helper functions *)
1664 (* constructors types with left params already instantiated *)
1665 let outty = CicMetaSubst.apply_subst subst outty in
1666 let cl, left_p, leftno,rno,ugraph =
1667 get_cl_and_left_p uri tyno outty ugraph
1672 CicTypeChecker.type_of_aux' ~subst metasenv context m
1673 CicUniv.oblivion_ugraph
1675 | (Cic.MutInd _ | Cic.Meta _) as mty,_ -> [], mty
1676 | Cic.Appl ((Cic.MutInd _|Cic.Meta _)::args) as mty,_ ->
1677 snd (HExtlib.split_nth leftno args), mty
1679 with CicTypeChecker.TypeCheckerFailure _ ->
1680 raise (AssertFailure(lazy "already ill-typed matched term"))
1683 keep_lambdas_and_put_expty context outty expty right_p m (rno+1)
1686 (lazy ("CASE: new_outty: " ^ CicMetaSubst.ppterm_in_context
1687 ~metasenv subst new_outty context));
1688 let _,pl,subst,metasenv,ugraph =
1690 (fun cty pbo (i, acc, s, menv, ugraph) ->
1691 (* Pi k_par, (Pi H:m=(K_i left_par k_par)),
1692 * (new_)outty right_par (K_i left_par k_par) *)
1694 add_params menv s context uri tyno
1695 cty outty mty m leftno i in
1697 (lazy ("CASE: infty_pbo: "^CicMetaSubst.ppterm_in_context
1698 ~metasenv subst infty_pbo context));
1699 let expty_pbo, k = (* k is (K_i left_par k_par) *)
1700 add_params menv s context uri tyno
1701 cty new_outty mty m leftno i in
1703 (lazy ("CASE: expty_pbo: "^CicMetaSubst.ppterm_in_context
1704 ~metasenv subst expty_pbo context));
1705 let pbo = add_lambda_for_refl_m pbo rno mty m k cty in
1707 (lazy ("CASE: pbo: " ^ CicMetaSubst.ppterm_in_context
1708 ~metasenv subst pbo context));
1709 let (pbo, _), subst, metasenv, ugraph =
1710 coerce_to_something_aux pbo infty_pbo expty_pbo
1711 s menv context ugraph
1714 (lazy ("CASE: pbo: " ^ CicMetaSubst.ppterm_in_context
1715 ~metasenv subst pbo context));
1716 (i-1, pbo::acc, subst, metasenv, ugraph))
1717 cl pl (List.length pl, [], subst, metasenv, ugraph)
1719 let new_outty = add_pi_for_refl_m new_outty mty m rno in
1721 (lazy ("CASE: new_outty: " ^ CicMetaSubst.ppterm_in_context
1722 ~metasenv subst new_outty context));
1725 let refl_m=Cic.Appl[eq_refl;mty;m]in
1726 Cic.Appl [Cic.MutCase(uri,tyno,new_outty,m,pl);refl_m]
1728 Cic.MutCase(uri,tyno,new_outty,m,pl)
1730 (t, expty), subst, metasenv, ugraph (*}}}*)
1731 | Cic.Prod (nameprod, src, ty),Cic.Prod (_, src2, ty2), _ ->
1732 (*{{{*) debug_print (lazy "LAM");
1734 FreshNamesGenerator.mk_fresh_name
1735 ~subst metasenv context ~typ:src2 Cic.Anonymous
1737 let context_src2 = (Some (name_con, Cic.Decl src2) :: context) in
1738 (* contravariant part: the argument of f:src->ty *)
1739 let (rel1, _), subst, metasenv, ugraph =
1740 coerce_to_something_aux
1741 (Cic.Rel 1) (CS.lift 1 src2)
1742 (CS.lift 1 src) subst metasenv context_src2 ugraph
1744 (* covariant part: the result of f(c x); x:src2; (c x):src *)
1747 | Cic.Lambda (n,_,bo) -> n, cs_subst rel1 (CS.lift_from 2 1 bo)
1748 | _ -> name_con, Cic.Appl[CS.lift 1 t;rel1]
1750 (* we fix the possible dependency problem in the source ty *)
1751 let ty = cs_subst rel1 (CS.lift_from 2 1 ty) in
1752 let (bo, _), subst, metasenv, ugraph =
1753 coerce_to_something_aux
1754 bo ty ty2 subst metasenv context_src2 ugraph
1756 let coerced = Cic.Lambda (name_t,src2, bo) in
1757 (coerced, expty), subst, metasenv, ugraph (*}}}*)
1759 (*{{{*)debug_print (lazy ("ATOM: "^CicMetaSubst.ppterm_in_context
1760 ~metasenv subst infty context ^ " ==> " ^
1761 CicMetaSubst.ppterm_in_context ~metasenv subst expty context));
1762 coerce_atom_to_something
1763 t infty expty subst metasenv context ugraph (*}}}*)
1765 debug_print (lazy ("COERCE TO SOMETHING END: "^
1766 CicMetaSubst.ppterm_in_context ~metasenv subst coerced context));
1770 coerce_to_something_aux t infty expty subst metasenv context ugraph
1771 with Uncertain _ | RefineFailure _ as exn ->
1774 CicMetaSubst.ppterm_in_context metasenv subst t context ^
1775 " has type " ^ CicMetaSubst.ppterm_in_context metasenv subst
1776 infty context ^ " but is here used with type " ^
1777 CicMetaSubst.ppterm_in_context metasenv subst expty context)
1779 enrich localization_tbl ~f t exn
1781 and coerce_to_sort localization_tbl t infty subst context metasenv uragph =
1782 match CicReduction.whd ~delta:false ~subst context infty with
1783 | Cic.Meta _ | Cic.Sort _ ->
1784 t,infty, subst, metasenv, ugraph
1786 debug_print (lazy ("COERCE TO SORT: "^CicMetaSubst.ppterm_in_context
1787 ~metasenv subst src context));
1788 let tgt = Cic.Sort (Cic.Type (CicUniv.fresh())) in
1790 let (t, ty_t), subst, metasenv, ugraph =
1791 coerce_to_something true
1792 localization_tbl t src tgt subst metasenv context ugraph
1794 debug_print (lazy ("COERCE TO SORT END: "^
1795 CicMetaSubst.ppterm_in_context ~metasenv subst t context));
1796 t, ty_t, subst, metasenv, ugraph
1797 with HExtlib.Localized (_, exn) ->
1799 lazy ("(7)The term " ^
1800 CicMetaSubst.ppterm_in_context ~metasenv subst t context
1801 ^ " is not a type since it has type " ^
1802 CicMetaSubst.ppterm_in_context ~metasenv subst src context
1803 ^ " that is not a sort")
1805 enrich localization_tbl ~f t exn
1808 (* eat prods ends here! *)
1810 let t',ty,subst',metasenv',ugraph1 =
1811 type_of_aux [] metasenv context t ugraph
1813 let substituted_t = CicMetaSubst.apply_subst subst' t' in
1814 let substituted_ty = CicMetaSubst.apply_subst subst' ty in
1815 (* Andrea: ho rimesso qui l'applicazione della subst al
1816 metasenv dopo che ho droppato l'invariante che il metsaenv
1817 e' sempre istanziato *)
1818 let substituted_metasenv =
1819 CicMetaSubst.apply_subst_metasenv subst' metasenv' in
1821 (* substituted_t,substituted_ty,substituted_metasenv *)
1822 (* ANDREA: spostare tutta questa robaccia da un altra parte *)
1824 if clean_dummy_dependent_types then
1825 FreshNamesGenerator.clean_dummy_dependent_types substituted_t
1826 else substituted_t in
1828 if clean_dummy_dependent_types then
1829 FreshNamesGenerator.clean_dummy_dependent_types substituted_ty
1830 else substituted_ty in
1831 let cleaned_metasenv =
1832 if clean_dummy_dependent_types then
1834 (function (n,context,ty) ->
1835 let ty' = FreshNamesGenerator.clean_dummy_dependent_types ty in
1840 | Some (n, Cic.Decl t) ->
1842 Cic.Decl (FreshNamesGenerator.clean_dummy_dependent_types t))
1843 | Some (n, Cic.Def (bo,ty)) ->
1844 let bo' = FreshNamesGenerator.clean_dummy_dependent_types bo in
1845 let ty' = FreshNamesGenerator.clean_dummy_dependent_types ty
1847 Some (n, Cic.Def (bo',ty'))
1851 ) substituted_metasenv
1853 substituted_metasenv
1855 (cleaned_t,cleaned_ty,cleaned_metasenv,ugraph1)
1858 let undebrujin uri typesno tys t =
1861 (fun (name,_,_,_) (i,t) ->
1862 (* here the explicit_named_substituion is assumed to be *)
1864 let t' = Cic.MutInd (uri,i,[]) in
1865 let t = CicSubstitution.subst t' t in
1867 ) tys (typesno - 1,t))
1869 let map_first_n n start f g l =
1870 let rec aux acc k l =
1873 | [] -> raise (Invalid_argument "map_first_n")
1874 | hd :: tl -> f hd k (aux acc (k+1) tl)
1880 (*CSC: this is a very rough approximation; to be finished *)
1881 let are_all_occurrences_positive metasenv ugraph uri tys leftno =
1882 let subst,metasenv,ugraph,tys =
1884 (fun (name,ind,arity,cl) (subst,metasenv,ugraph,acc) ->
1885 let subst,metasenv,ugraph,cl =
1887 (fun (name,ty) (subst,metasenv,ugraph,acc) ->
1888 let rec aux ctx k subst = function
1889 | Cic.Appl((Cic.MutInd (uri',_,_)as hd)::tl) when uri = uri'->
1890 let subst,metasenv,ugraph,tl =
1892 (subst,metasenv,ugraph,[])
1893 (fun t n (subst,metasenv,ugraph,acc) ->
1894 let subst,metasenv,ugraph =
1896 subst ctx metasenv t (Cic.Rel (k-n)) ugraph
1898 subst,metasenv,ugraph,(t::acc))
1899 (fun (s,m,g,acc) tl -> assert(acc=[]);(s,m,g,tl))
1902 subst,metasenv,ugraph,(Cic.Appl (hd::tl))
1903 | Cic.MutInd(uri',_,_) as t when uri = uri'->
1904 subst,metasenv,ugraph,t
1905 | Cic.Prod (name,s,t) ->
1906 let ctx = (Some (name,Cic.Decl s))::ctx in
1907 let subst,metasenv,ugraph,t = aux ctx (k+1) subst t in
1908 subst,metasenv,ugraph,Cic.Prod (name,s,t)
1912 (lazy "not well formed constructor type"))
1914 let subst,metasenv,ugraph,ty = aux [] 0 subst ty in
1915 subst,metasenv,ugraph,(name,ty) :: acc)
1916 cl (subst,metasenv,ugraph,[])
1918 subst,metasenv,ugraph,(name,ind,arity,cl)::acc)
1919 tys ([],metasenv,ugraph,[])
1921 let substituted_tys =
1923 (fun (name,ind,arity,cl) ->
1925 List.map (fun (name, ty) -> name,CicMetaSubst.apply_subst subst ty) cl
1927 name,ind,CicMetaSubst.apply_subst subst arity,cl)
1930 metasenv,ugraph,substituted_tys
1932 let typecheck metasenv uri obj ~localization_tbl =
1933 let ugraph = CicUniv.oblivion_ugraph in
1935 Cic.Constant (name,Some bo,ty,args,attrs) ->
1936 (* CSC: ugly code. Here I need to retrieve in advance the loc of bo
1937 since type_of_aux' destroys localization information (which are
1938 preserved by type_of_aux *)
1941 Cic.CicHash.find localization_tbl bo
1943 HLog.debug ("!!! NOT LOCALIZED: " ^ CicPp.ppterm bo);
1945 let bo',boty,metasenv,ugraph =
1946 type_of_aux' ~localization_tbl metasenv [] bo ugraph in
1947 let ty',_,metasenv,ugraph =
1948 type_of_aux' ~localization_tbl metasenv [] ty ugraph in
1949 let subst,metasenv,ugraph =
1951 fo_unif_subst [] [] metasenv boty ty' ugraph
1954 | Uncertain _ as exn ->
1957 CicMetaSubst.ppterm_in_context ~metasenv [] bo' [] ^
1959 CicMetaSubst.ppterm_in_context ~metasenv [] boty [] ^
1960 " but is here used with type " ^
1961 CicMetaSubst.ppterm_in_context ~metasenv [] ty' [])
1965 RefineFailure _ -> RefineFailure msg
1966 | Uncertain _ -> Uncertain msg
1969 raise (HExtlib.Localized (loc exn',exn'))
1971 let bo' = CicMetaSubst.apply_subst subst bo' in
1972 let ty' = CicMetaSubst.apply_subst subst ty' in
1973 let metasenv = CicMetaSubst.apply_subst_metasenv subst metasenv in
1974 Cic.Constant (name,Some bo',ty',args,attrs),metasenv,ugraph
1975 | Cic.Constant (name,None,ty,args,attrs) ->
1976 let ty',_,metasenv,ugraph =
1977 type_of_aux' ~localization_tbl metasenv [] ty ugraph
1979 Cic.Constant (name,None,ty',args,attrs),metasenv,ugraph
1980 | Cic.CurrentProof (name,metasenv',bo,ty,args,attrs) ->
1981 assert (metasenv' = metasenv);
1982 (* Here we do not check the metasenv for correctness *)
1983 let bo',boty,metasenv,ugraph =
1984 type_of_aux' ~localization_tbl metasenv [] bo ugraph in
1985 let ty',sort,metasenv,ugraph =
1986 type_of_aux' ~localization_tbl metasenv [] ty ugraph in
1990 (* instead of raising Uncertain, let's hope that the meta will become
1993 | _ -> raise (RefineFailure (lazy "The term provided is not a type"))
1995 let subst,metasenv,ugraph = fo_unif_subst [] [] metasenv boty ty' ugraph in
1996 let bo' = CicMetaSubst.apply_subst subst bo' in
1997 let ty' = CicMetaSubst.apply_subst subst ty' in
1998 let metasenv = CicMetaSubst.apply_subst_metasenv subst metasenv in
1999 Cic.CurrentProof (name,metasenv,bo',ty',args,attrs),metasenv,ugraph
2000 | Cic.Variable _ -> assert false (* not implemented *)
2001 | Cic.InductiveDefinition (tys,args,paramsno,attrs) ->
2002 (*CSC: this code is greately simplified and many many checks are missing *)
2003 (*CSC: e.g. the constructors are not required to build their own types, *)
2004 (*CSC: the arities are not required to have as type a sort, etc. *)
2005 let uri = match uri with Some uri -> uri | None -> assert false in
2006 let typesno = List.length tys in
2007 (* first phase: we fix only the types *)
2008 let metasenv,ugraph,tys =
2010 (fun (name,b,ty,cl) (metasenv,ugraph,res) ->
2011 let ty',_,metasenv,ugraph =
2012 (* clean_dummy_dependent_types: false to avoid cleaning the names
2013 of the left products, that must be identical to those of the
2014 constructors; however, non-left products should probably be
2016 type_of_aux' ~clean_dummy_dependent_types:false ~localization_tbl
2017 metasenv [] ty ugraph
2019 metasenv,ugraph,(name,b,ty',cl)::res
2020 ) tys (metasenv,ugraph,[]) in
2022 List.rev_map (fun (name,_,ty,_)-> Some (Cic.Name name,Cic.Decl ty)) tys in
2023 (* second phase: we fix only the constructors *)
2024 let saved_menv = metasenv in
2025 let metasenv,ugraph,tys =
2027 (fun (name,b,ty,cl) (metasenv,ugraph,res) ->
2028 let metasenv,ugraph,cl' =
2030 (fun (name,ty) (metasenv,ugraph,res) ->
2032 CicTypeChecker.debrujin_constructor
2033 ~cb:(relocalize localization_tbl) uri typesno [] ty in
2034 let ty',_,metasenv,ugraph =
2035 type_of_aux' ~localization_tbl metasenv con_context ty ugraph in
2036 let ty' = undebrujin uri typesno tys ty' in
2037 metasenv@saved_menv,ugraph,(name,ty')::res
2038 ) cl (metasenv,ugraph,[])
2040 metasenv,ugraph,(name,b,ty,cl')::res
2041 ) tys (metasenv,ugraph,[]) in
2042 (* third phase: we check the positivity condition *)
2043 let metasenv,ugraph,tys =
2044 are_all_occurrences_positive metasenv ugraph uri tys paramsno
2046 Cic.InductiveDefinition (tys,args,paramsno,attrs),metasenv,ugraph
2049 (* sara' piu' veloce che raffinare da zero? mah.... *)
2050 let pack_coercion metasenv ctx t =
2051 let module C = Cic in
2052 let rec merge_coercions ctx =
2053 let aux = (fun (u,t) -> u,merge_coercions ctx t) in
2055 | C.Rel _ | C.Sort _ | C.Implicit _ as t -> t
2056 | C.Meta (n,subst) ->
2059 (function None -> None | Some t -> Some (merge_coercions ctx t)) subst
2062 | C.Cast (te,ty) -> C.Cast (merge_coercions ctx te, merge_coercions ctx ty)
2063 | C.Prod (name,so,dest) ->
2064 let ctx' = (Some (name,C.Decl so))::ctx in
2065 C.Prod (name, merge_coercions ctx so, merge_coercions ctx' dest)
2066 | C.Lambda (name,so,dest) ->
2067 let ctx' = (Some (name,C.Decl so))::ctx in
2068 C.Lambda (name, merge_coercions ctx so, merge_coercions ctx' dest)
2069 | C.LetIn (name,so,ty,dest) ->
2070 let ctx' = Some (name,(C.Def (so,ty)))::ctx in
2072 (name, merge_coercions ctx so, merge_coercions ctx ty,
2073 merge_coercions ctx' dest)
2075 let l = List.map (merge_coercions ctx) l in
2077 let b,_,_,_,_ = is_a_double_coercion t in
2079 let ugraph = CicUniv.oblivion_ugraph in
2080 let old_insert_coercions = !insert_coercions in
2081 insert_coercions := false;
2082 let newt, _, menv, _ =
2084 type_of_aux' metasenv ctx t ugraph
2085 with RefineFailure _ | Uncertain _ ->
2088 insert_coercions := old_insert_coercions;
2089 if metasenv <> [] || menv = [] then
2092 (prerr_endline "PUO' SUCCEDERE!!!!!";t)
2095 | C.Var (uri,exp_named_subst) ->
2096 let exp_named_subst = List.map aux exp_named_subst in
2097 C.Var (uri, exp_named_subst)
2098 | C.Const (uri,exp_named_subst) ->
2099 let exp_named_subst = List.map aux exp_named_subst in
2100 C.Const (uri, exp_named_subst)
2101 | C.MutInd (uri,tyno,exp_named_subst) ->
2102 let exp_named_subst = List.map aux exp_named_subst in
2103 C.MutInd (uri,tyno,exp_named_subst)
2104 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
2105 let exp_named_subst = List.map aux exp_named_subst in
2106 C.MutConstruct (uri,tyno,consno,exp_named_subst)
2107 | C.MutCase (uri,tyno,out,te,pl) ->
2108 let pl = List.map (merge_coercions ctx) pl in
2109 C.MutCase (uri,tyno,merge_coercions ctx out, merge_coercions ctx te, pl)
2110 | C.Fix (fno, fl) ->
2113 (fun l (n,_,ty,_) -> (Some (C.Name n,C.Decl ty))::l)
2118 (fun (name,idx,ty,bo) ->
2119 (name,idx,merge_coercions ctx ty,merge_coercions ctx' bo))
2123 | C.CoFix (fno, fl) ->
2126 (fun l (n,ty,_) -> (Some (C.Name n,C.Decl ty))::l)
2131 (fun (name,ty,bo) ->
2132 (name, merge_coercions ctx ty, merge_coercions ctx' bo))
2137 merge_coercions ctx t
2140 let pack_coercion_metasenv conjectures = conjectures (*
2142 TASSI: this code war written when coercions were a toy,
2143 now packing coercions involves unification thus
2144 the metasenv may change, and this pack coercion
2145 does not handle that.
2147 let module C = Cic in
2149 (fun (i, ctx, ty) ->
2155 Some (name, C.Decl t) ->
2156 Some (name, C.Decl (pack_coercion conjectures ctx t))
2157 | Some (name, C.Def (t,None)) ->
2158 Some (name,C.Def (pack_coercion conjectures ctx t,None))
2159 | Some (name, C.Def (t,Some ty)) ->
2160 Some (name, C.Def (pack_coercion conjectures ctx t,
2161 Some (pack_coercion conjectures ctx ty)))
2167 ((i,ctx,pack_coercion conjectures ctx ty))
2172 let pack_coercion_obj obj = obj (*
2174 TASSI: this code war written when coercions were a toy,
2175 now packing coercions involves unification thus
2176 the metasenv may change, and this pack coercion
2177 does not handle that.
2179 let module C = Cic in
2181 | C.Constant (id, body, ty, params, attrs) ->
2185 | Some body -> Some (pack_coercion [] [] body)
2187 let ty = pack_coercion [] [] ty in
2188 C.Constant (id, body, ty, params, attrs)
2189 | C.Variable (name, body, ty, params, attrs) ->
2193 | Some body -> Some (pack_coercion [] [] body)
2195 let ty = pack_coercion [] [] ty in
2196 C.Variable (name, body, ty, params, attrs)
2197 | C.CurrentProof (name, conjectures, body, ty, params, attrs) ->
2198 let conjectures = pack_coercion_metasenv conjectures in
2199 let body = pack_coercion conjectures [] body in
2200 let ty = pack_coercion conjectures [] ty in
2201 C.CurrentProof (name, conjectures, body, ty, params, attrs)
2202 | C.InductiveDefinition (indtys, params, leftno, attrs) ->
2205 (fun (name, ind, arity, cl) ->
2206 let arity = pack_coercion [] [] arity in
2208 List.map (fun (name, ty) -> (name,pack_coercion [] [] ty)) cl
2210 (name, ind, arity, cl))
2213 C.InductiveDefinition (indtys, params, leftno, attrs) *)
2218 let type_of_aux' metasenv context term =
2221 type_of_aux' metasenv context term in
2223 ("@@@ REFINE SUCCESSFUL: " ^ CicPp.ppterm t ^ " : " ^ CicPp.ppterm ty));
2225 ("@@@ REFINE SUCCESSFUL (metasenv):\n" ^ CicMetaSubst.ppmetasenv ~sep:";" m []));
2228 | RefineFailure msg as e ->
2229 debug_print (lazy ("@@@ REFINE FAILED: " ^ msg));
2231 | Uncertain msg as e ->
2232 debug_print (lazy ("@@@ REFINE UNCERTAIN: " ^ msg));
2236 let profiler2 = HExtlib.profile "CicRefine"
2238 let type_of_aux' ?localization_tbl metasenv context term ugraph =
2239 profiler2.HExtlib.profile
2240 (type_of_aux' ?localization_tbl metasenv context term) ugraph
2242 let typecheck ~localization_tbl metasenv uri obj =
2243 profiler2.HExtlib.profile (typecheck ~localization_tbl metasenv uri) obj
2245 let _ = DoubleTypeInference.pack_coercion := pack_coercion;;
2246 (* vim:set foldmethod=marker: *)