]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_proof_checking/cicTypeChecker.ml
ocaml 3.09 transition
[helm.git] / helm / ocaml / cic_proof_checking / cicTypeChecker.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 (* TODO factorize functions to frequent errors (e.g. "Unknwon mutual inductive
27  * ...") *)
28
29 open Printf
30
31 exception AssertFailure of string Lazy.t;;
32 exception TypeCheckerFailure of string Lazy.t;;
33
34 let fdebug = ref 0;;
35 let debug t context =
36  let rec debug_aux t i =
37   let module C = Cic in
38   let module U = UriManager in
39    CicPp.ppobj (C.Variable ("DEBUG", None, t, [], [])) ^ "\n" ^ i
40  in
41   if !fdebug = 0 then
42    raise (TypeCheckerFailure (lazy (List.fold_right debug_aux (t::context) "")))
43 ;;
44
45 let debug_print = fun _ -> () ;;
46
47 let rec split l n =
48  match (l,n) with
49     (l,0) -> ([], l)
50   | (he::tl, n) -> let (l1,l2) = split tl (n-1) in (he::l1,l2)
51   | (_,_) ->
52       raise (TypeCheckerFailure (lazy "Parameters number < left parameters number"))
53 ;;
54
55 let debrujin_constructor uri number_of_types =
56  let rec aux k =
57   let module C = Cic in
58    function
59       C.Rel n as t when n <= k -> t
60     | C.Rel _ ->
61         raise (TypeCheckerFailure (lazy "unbound variable found in constructor type"))
62     | C.Var (uri,exp_named_subst) ->
63        let exp_named_subst' = 
64         List.map (function (uri,t) -> (uri,aux k t)) exp_named_subst
65        in
66         C.Var (uri,exp_named_subst')
67     | C.Meta (i,l) ->
68        let l' = List.map (function None -> None | Some t -> Some (aux k t)) l in
69         C.Meta (i,l)
70     | C.Sort _
71     | C.Implicit _ as t -> t
72     | C.Cast (te,ty) -> C.Cast (aux k te, aux k ty)
73     | C.Prod (n,s,t) -> C.Prod (n, aux k s, aux (k+1) t)
74     | C.Lambda (n,s,t) -> C.Lambda (n, aux k s, aux (k+1) t)
75     | C.LetIn (n,s,t) -> C.LetIn (n, aux k s, aux (k+1) t)
76     | C.Appl l -> C.Appl (List.map (aux k) l)
77     | C.Const (uri,exp_named_subst) ->
78        let exp_named_subst' = 
79         List.map (function (uri,t) -> (uri,aux k t)) exp_named_subst
80        in
81         C.Const (uri,exp_named_subst')
82     | C.MutInd (uri',tyno,exp_named_subst) when UriManager.eq uri uri' ->
83        if exp_named_subst != [] then
84         raise (TypeCheckerFailure
85           (lazy ("non-empty explicit named substitution is applied to "^
86            "a mutual inductive type which is being defined"))) ;
87        C.Rel (k + number_of_types - tyno) ;
88     | C.MutInd (uri',tyno,exp_named_subst) ->
89        let exp_named_subst' = 
90         List.map (function (uri,t) -> (uri,aux k t)) exp_named_subst
91        in
92         C.MutInd (uri',tyno,exp_named_subst')
93     | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
94        let exp_named_subst' = 
95         List.map (function (uri,t) -> (uri,aux k t)) exp_named_subst
96        in
97         C.MutConstruct (uri,tyno,consno,exp_named_subst')
98     | C.MutCase (sp,i,outty,t,pl) ->
99        C.MutCase (sp, i, aux k outty, aux k t,
100         List.map (aux k) pl)
101     | C.Fix (i, fl) ->
102        let len = List.length fl in
103        let liftedfl =
104         List.map
105          (fun (name, i, ty, bo) -> (name, i, aux k ty, aux (k+len) bo))
106           fl
107        in
108         C.Fix (i, liftedfl)
109     | C.CoFix (i, fl) ->
110        let len = List.length fl in
111        let liftedfl =
112         List.map
113          (fun (name, ty, bo) -> (name, aux k ty, aux (k+len) bo))
114           fl
115        in
116         C.CoFix (i, liftedfl)
117  in
118   aux 0
119 ;;
120
121 exception CicEnvironmentError;;
122
123 let rec type_of_constant ~logger uri ugraph =
124  let module C = Cic in
125  let module R = CicReduction in
126  let module U = UriManager in
127  let cobj,ugraph =
128    match CicEnvironment.is_type_checked ~trust:true ugraph uri with
129       CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph'
130     | CicEnvironment.UncheckedObj uobj ->
131        logger#log (`Start_type_checking uri) ;
132        (* let's typecheck the uncooked obj *)
133
134 (****************************************************************
135   TASSI: FIXME qui e' inutile ricordarselo, 
136   tanto poi lo richiediamo alla cache che da quello su disco
137 *****************************************************************) 
138
139        let ugraph_dust = 
140          (match uobj with
141            C.Constant (_,Some te,ty,_,_) ->
142            let _,ugraph = type_of ~logger ty ugraph in
143            let type_of_te,ugraph' = type_of ~logger te ugraph in
144               let b',ugraph'' = (R.are_convertible [] type_of_te ty ugraph') in
145               if not b' then
146                raise (TypeCheckerFailure (lazy (sprintf
147                 "the constant %s is not well typed because the type %s of the body is not convertible to the declared type %s"
148                 (U.string_of_uri uri) (CicPp.ppterm type_of_te)
149                 (CicPp.ppterm ty))))
150               else
151                 ugraph'
152          | C.Constant (_,None,ty,_,_) ->
153            (* only to check that ty is well-typed *)
154            let _,ugraph' = type_of ~logger ty ugraph in 
155            ugraph'
156          | C.CurrentProof (_,conjs,te,ty,_,_) ->
157              let _,ugraph1 =
158               List.fold_left
159                (fun (metasenv,ugraph) ((_,context,ty) as conj) ->
160                  let _,ugraph' = 
161                    type_of_aux' ~logger metasenv context ty ugraph 
162                  in
163                  (metasenv @ [conj],ugraph')
164                ) ([],ugraph) conjs
165              in
166               let _,ugraph2 = type_of_aux' ~logger conjs [] ty ugraph1 in
167                let type_of_te,ugraph3 = 
168                  type_of_aux' ~logger conjs [] te ugraph2 
169                in
170                let b,ugraph4 = (R.are_convertible [] type_of_te ty ugraph3) in
171                if not b then
172                  raise (TypeCheckerFailure (lazy (sprintf
173                   "the current proof %s is not well typed because the type %s of the body is not convertible to the declared type %s"
174                   (U.string_of_uri uri) (CicPp.ppterm type_of_te)
175                   (CicPp.ppterm ty))))
176                else 
177                  ugraph4
178          | _ ->
179              raise
180               (TypeCheckerFailure (lazy ("Unknown constant:" ^ U.string_of_uri uri))))
181        in 
182          try
183            CicEnvironment.set_type_checking_info uri;
184            logger#log (`Type_checking_completed uri) ;
185            match CicEnvironment.is_type_checked ~trust:false ugraph uri with
186                CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph'
187              | CicEnvironment.UncheckedObj _ -> raise CicEnvironmentError
188          with Invalid_argument s ->
189            (*debug_print (lazy s);*)
190            uobj,ugraph_dust       
191   in
192    match cobj,ugraph with
193       (C.Constant (_,_,ty,_,_)),g -> ty,g
194     | (C.CurrentProof (_,_,_,ty,_,_)),g -> ty,g
195     | _ ->
196         raise (TypeCheckerFailure (lazy ("Unknown constant:" ^ U.string_of_uri uri)))
197
198 and type_of_variable ~logger uri ugraph =
199  let module C = Cic in
200  let module R = CicReduction in
201  let module U = UriManager in
202   (* 0 because a variable is never cooked => no partial cooking at one level *)
203   match CicEnvironment.is_type_checked ~trust:true ugraph uri with
204      CicEnvironment.CheckedObj ((C.Variable (_,_,ty,_,_)),ugraph') -> ty,ugraph'
205    | CicEnvironment.UncheckedObj (C.Variable (_,bo,ty,_,_)) ->
206       logger#log (`Start_type_checking uri) ;
207       (* only to check that ty is well-typed *)
208       let _,ugraph1 = type_of ~logger ty ugraph in
209       let ugraph2 = 
210        (match bo with
211            None -> ugraph
212          | Some bo ->
213              let ty_bo,ugraph' = type_of ~logger bo ugraph1 in
214              let b,ugraph'' = (R.are_convertible [] ty_bo ty ugraph') in
215              if not b then
216               raise (TypeCheckerFailure
217                 (lazy ("Unknown variable:" ^ U.string_of_uri uri)))
218              else
219                ugraph'') 
220       in
221         (try
222            CicEnvironment.set_type_checking_info uri ;
223            logger#log (`Type_checking_completed uri) ;
224            match CicEnvironment.is_type_checked ~trust:false ugraph uri with
225                CicEnvironment.CheckedObj ((C.Variable (_,_,ty,_,_)),ugraph') -> 
226                  ty,ugraph'
227              | CicEnvironment.CheckedObj _ 
228              | CicEnvironment.UncheckedObj _ -> raise CicEnvironmentError
229          with Invalid_argument s ->
230            (*debug_print (lazy s);*)
231            ty,ugraph2)
232    |  _ ->
233         raise (TypeCheckerFailure (lazy ("Unknown variable:" ^ U.string_of_uri uri)))
234
235 and does_not_occur ?(subst=[]) context n nn te =
236  let module C = Cic in
237    (*CSC: whd sembra essere superflua perche' un caso in cui l'occorrenza *)
238    (*CSC: venga mangiata durante la whd sembra presentare problemi di *)
239    (*CSC: universi                                                    *)
240    match CicReduction.whd ~subst context te with
241       C.Rel m when m > n && m <= nn -> false
242     | C.Rel _
243     | C.Sort _
244     | C.Implicit _ -> true
245     | C.Meta (_,l) ->
246        List.fold_right
247         (fun x i ->
248           match x with
249              None -> i
250            | Some x -> i && does_not_occur ~subst context n nn x) l true
251     | C.Cast (te,ty) ->
252        does_not_occur ~subst context n nn te && does_not_occur ~subst context n nn ty
253     | C.Prod (name,so,dest) ->
254        does_not_occur ~subst context n nn so &&
255         does_not_occur ~subst ((Some (name,(C.Decl so)))::context) (n + 1)
256          (nn + 1) dest
257     | C.Lambda (name,so,dest) ->
258        does_not_occur ~subst context n nn so &&
259         does_not_occur ~subst ((Some (name,(C.Decl so)))::context) (n + 1) (nn + 1)
260          dest
261     | C.LetIn (name,so,dest) ->
262        does_not_occur ~subst context n nn so &&
263         does_not_occur ~subst ((Some (name,(C.Def (so,None))))::context)
264          (n + 1) (nn + 1) dest
265     | C.Appl l ->
266        List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) l true
267     | C.Var (_,exp_named_subst)
268     | C.Const (_,exp_named_subst)
269     | C.MutInd (_,_,exp_named_subst)
270     | C.MutConstruct (_,_,_,exp_named_subst) ->
271        List.fold_right (fun (_,x) i -> i && does_not_occur ~subst context n nn x)
272         exp_named_subst true
273     | C.MutCase (_,_,out,te,pl) ->
274        does_not_occur ~subst context n nn out && does_not_occur ~subst context n nn te &&
275         List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) pl true
276     | C.Fix (_,fl) ->
277        let len = List.length fl in
278         let n_plus_len = n + len in
279         let nn_plus_len = nn + len in
280         let tys =
281          List.map (fun (n,_,ty,_) -> Some (C.Name n,(Cic.Decl ty))) fl
282         in
283          List.fold_right
284           (fun (_,_,ty,bo) i ->
285             i && does_not_occur ~subst context n nn ty &&
286             does_not_occur ~subst (tys @ context) n_plus_len nn_plus_len bo
287           ) fl true
288     | C.CoFix (_,fl) ->
289        let len = List.length fl in
290         let n_plus_len = n + len in
291         let nn_plus_len = nn + len in
292         let tys =
293          List.map (fun (n,ty,_) -> Some (C.Name n,(Cic.Decl ty))) fl
294         in
295          List.fold_right
296           (fun (_,ty,bo) i ->
297             i && does_not_occur ~subst context n nn ty &&
298             does_not_occur ~subst (tys @ context) n_plus_len nn_plus_len bo
299           ) fl true
300
301 (*CSC l'indice x dei tipi induttivi e' t.c. n < x <= nn *)
302 (*CSC questa funzione e' simile alla are_all_occurrences_positive, ma fa *)
303 (*CSC dei controlli leggermente diversi. Viene invocata solamente dalla  *)
304 (*CSC strictly_positive                                                  *)
305 (*CSC definizione (giusta???) tratta dalla mail di Hugo ;-)              *)
306 and weakly_positive context n nn uri te =
307  let module C = Cic in
308 (*CSC: Che schifo! Bisogna capire meglio e trovare una soluzione ragionevole!*)
309   let dummy_mutind =
310    C.MutInd (HelmLibraryObjects.Datatypes.nat_URI,0,[])
311   in
312   (*CSC: mettere in cicSubstitution *)
313   let rec subst_inductive_type_with_dummy_mutind =
314    function
315       C.MutInd (uri',0,_) when UriManager.eq uri' uri ->
316        dummy_mutind
317     | C.Appl ((C.MutInd (uri',0,_))::tl) when UriManager.eq uri' uri ->
318        dummy_mutind
319     | C.Cast (te,ty) -> subst_inductive_type_with_dummy_mutind te
320     | C.Prod (name,so,ta) ->
321        C.Prod (name, subst_inductive_type_with_dummy_mutind so,
322         subst_inductive_type_with_dummy_mutind ta)
323     | C.Lambda (name,so,ta) ->
324        C.Lambda (name, subst_inductive_type_with_dummy_mutind so,
325         subst_inductive_type_with_dummy_mutind ta)
326     | C.Appl tl ->
327        C.Appl (List.map subst_inductive_type_with_dummy_mutind tl)
328     | C.MutCase (uri,i,outtype,term,pl) ->
329        C.MutCase (uri,i,
330         subst_inductive_type_with_dummy_mutind outtype,
331         subst_inductive_type_with_dummy_mutind term,
332         List.map subst_inductive_type_with_dummy_mutind pl)
333     | C.Fix (i,fl) ->
334        C.Fix (i,List.map (fun (name,i,ty,bo) -> (name,i,
335         subst_inductive_type_with_dummy_mutind ty,
336         subst_inductive_type_with_dummy_mutind bo)) fl)
337     | C.CoFix (i,fl) ->
338        C.CoFix (i,List.map (fun (name,ty,bo) -> (name,
339         subst_inductive_type_with_dummy_mutind ty,
340         subst_inductive_type_with_dummy_mutind bo)) fl)
341     | C.Const (uri,exp_named_subst) ->
342        let exp_named_subst' =
343         List.map
344          (function (uri,t) -> (uri,subst_inductive_type_with_dummy_mutind t))
345          exp_named_subst
346        in
347         C.Const (uri,exp_named_subst')
348     | C.MutInd (uri,typeno,exp_named_subst) ->
349        let exp_named_subst' =
350         List.map
351          (function (uri,t) -> (uri,subst_inductive_type_with_dummy_mutind t))
352          exp_named_subst
353        in
354         C.MutInd (uri,typeno,exp_named_subst')
355     | C.MutConstruct (uri,typeno,consno,exp_named_subst) ->
356        let exp_named_subst' =
357         List.map
358          (function (uri,t) -> (uri,subst_inductive_type_with_dummy_mutind t))
359          exp_named_subst
360        in
361         C.MutConstruct (uri,typeno,consno,exp_named_subst')
362     | t -> t
363   in
364   match CicReduction.whd context te with
365      C.Appl ((C.MutInd (uri',0,_))::tl) when UriManager.eq uri' uri -> true
366    | C.MutInd (uri',0,_) when UriManager.eq uri' uri -> true
367    | C.Prod (C.Anonymous,source,dest) ->
368       strictly_positive context n nn
369        (subst_inductive_type_with_dummy_mutind source) &&
370        weakly_positive ((Some (C.Anonymous,(C.Decl source)))::context)
371         (n + 1) (nn + 1) uri dest
372    | C.Prod (name,source,dest) when
373       does_not_occur ((Some (name,(C.Decl source)))::context) 0 n dest ->
374        (* dummy abstraction, so we behave as in the anonimous case *)
375        strictly_positive context n nn
376         (subst_inductive_type_with_dummy_mutind source) &&
377         weakly_positive ((Some (name,(C.Decl source)))::context)
378          (n + 1) (nn + 1) uri dest
379    | C.Prod (name,source,dest) ->
380       does_not_occur context n nn
381        (subst_inductive_type_with_dummy_mutind source)&&
382        weakly_positive ((Some (name,(C.Decl source)))::context)
383         (n + 1) (nn + 1) uri dest
384    | _ ->
385      raise (TypeCheckerFailure (lazy "Malformed inductive constructor type"))
386
387 (* instantiate_parameters ps (x1:T1)...(xn:Tn)C                             *)
388 (* returns ((x_|ps|:T_|ps|)...(xn:Tn)C){ps_1 / x1 ; ... ; ps_|ps| / x_|ps|} *)
389 and instantiate_parameters params c =
390  let module C = Cic in
391   match (c,params) with
392      (c,[]) -> c
393    | (C.Prod (_,_,ta), he::tl) ->
394        instantiate_parameters tl
395         (CicSubstitution.subst he ta)
396    | (C.Cast (te,_), _) -> instantiate_parameters params te
397    | (t,l) -> raise (AssertFailure (lazy "1"))
398
399 and strictly_positive context n nn te =
400  let module C = Cic in
401  let module U = UriManager in
402   match CicReduction.whd context te with
403      C.Rel _ -> true
404    | C.Cast (te,ty) ->
405       (*CSC: bisogna controllare ty????*)
406       strictly_positive context n nn te
407    | C.Prod (name,so,ta) ->
408       does_not_occur context n nn so &&
409        strictly_positive ((Some (name,(C.Decl so)))::context) (n+1) (nn+1) ta
410    | C.Appl ((C.Rel m)::tl) when m > n && m <= nn ->
411       List.fold_right (fun x i -> i && does_not_occur context n nn x) tl true
412    | C.Appl ((C.MutInd (uri,i,exp_named_subst))::tl) -> 
413       let (ok,paramsno,ity,cl,name) =
414         let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
415        match o with
416            C.InductiveDefinition (tl,_,paramsno,_) ->
417             let (name,_,ity,cl) = List.nth tl i in
418              (List.length tl = 1, paramsno, ity, cl, name)
419          | _ ->
420            raise (TypeCheckerFailure
421             (lazy ("Unknown inductive type:" ^ U.string_of_uri uri)))
422       in
423        let (params,arguments) = split tl paramsno in
424        let lifted_params = List.map (CicSubstitution.lift 1) params in
425        let cl' =
426         List.map
427          (fun (_,te) ->
428            instantiate_parameters lifted_params
429             (CicSubstitution.subst_vars exp_named_subst te)
430          ) cl
431        in
432         ok &&
433          List.fold_right
434           (fun x i -> i && does_not_occur context n nn x)
435           arguments true &&
436          (*CSC: MEGAPATCH3 (sara' quella giusta?)*)
437          List.fold_right
438           (fun x i ->
439             i &&
440              weakly_positive
441               ((Some (C.Name name,(Cic.Decl ity)))::context) (n+1) (nn+1) uri
442               x
443           ) cl' true
444    | t -> does_not_occur context n nn t
445
446 (* the inductive type indexes are s.t. n < x <= nn *)
447 and are_all_occurrences_positive context uri indparamsno i n nn te =
448  let module C = Cic in
449   match CicReduction.whd context te with
450      C.Appl ((C.Rel m)::tl) when m = i ->
451       (*CSC: riscrivere fermandosi a 0 *)
452       (* let's check if the inductive type is applied at least to *)
453       (* indparamsno parameters                                   *)
454       let last =
455        List.fold_left
456         (fun k x ->
457           if k = 0 then 0
458           else
459            match CicReduction.whd context x with
460               C.Rel m when m = n - (indparamsno - k) -> k - 1
461             | _ ->
462               raise (TypeCheckerFailure
463                (lazy 
464                ("Non-positive occurence in mutual inductive definition(s) [1]" ^
465                 UriManager.string_of_uri uri)))
466         ) indparamsno tl
467       in
468        if last = 0 then
469         List.fold_right (fun x i -> i && does_not_occur context n nn x) tl true
470        else
471         raise (TypeCheckerFailure
472          (lazy ("Non-positive occurence in mutual inductive definition(s) [2]"^
473           UriManager.string_of_uri uri)))
474    | C.Rel m when m = i ->
475       if indparamsno = 0 then
476        true
477       else
478         raise (TypeCheckerFailure
479          (lazy ("Non-positive occurence in mutual inductive definition(s) [3]"^
480           UriManager.string_of_uri uri)))
481    | C.Prod (C.Anonymous,source,dest) ->
482       strictly_positive context n nn source &&
483        are_all_occurrences_positive
484         ((Some (C.Anonymous,(C.Decl source)))::context) uri indparamsno
485         (i+1) (n + 1) (nn + 1) dest
486    | C.Prod (name,source,dest) when
487       does_not_occur ((Some (name,(C.Decl source)))::context) 0 n dest ->
488       (* dummy abstraction, so we behave as in the anonimous case *)
489       strictly_positive context n nn source &&
490        are_all_occurrences_positive
491         ((Some (name,(C.Decl source)))::context) uri indparamsno
492         (i+1) (n + 1) (nn + 1) dest
493    | C.Prod (name,source,dest) ->
494       does_not_occur context n nn source &&
495        are_all_occurrences_positive ((Some (name,(C.Decl source)))::context)
496         uri indparamsno (i+1) (n + 1) (nn + 1) dest
497    | _ ->
498      raise
499       (TypeCheckerFailure (lazy ("Malformed inductive constructor type " ^
500         (UriManager.string_of_uri uri))))
501
502 (* Main function to checks the correctness of a mutual *)
503 (* inductive block definition. This is the function    *)
504 (* exported to the proof-engine.                       *)
505 and typecheck_mutual_inductive_defs ~logger uri (itl,_,indparamsno) ugraph =
506  let module U = UriManager in
507   (* let's check if the arity of the inductive types are well *)
508   (* formed                                                   *)
509   let ugrap1 = List.fold_left 
510    (fun ugraph (_,_,x,_) -> let _,ugraph' = 
511       type_of ~logger x ugraph in ugraph') 
512    ugraph itl in
513
514   (* let's check if the types of the inductive constructors  *)
515   (* are well formed.                                        *)
516   (* In order not to use type_of_aux we put the types of the *)
517   (* mutual inductive types at the head of the types of the  *)
518   (* constructors using Prods                                *)
519   let len = List.length itl in
520   let tys =
521     List.map (fun (n,_,ty,_) -> Some (Cic.Name n,(Cic.Decl ty))) itl in
522   let _,ugraph2 =
523     List.fold_right
524       (fun (_,_,_,cl) (i,ugraph) ->
525         let ugraph'' = 
526           List.fold_left
527             (fun ugraph (name,te) -> 
528               let debrujinedte = debrujin_constructor uri len te in
529               let augmented_term =
530                 List.fold_right
531                   (fun (name,_,ty,_) i -> Cic.Prod (Cic.Name name, ty, i))
532                   itl debrujinedte
533               in
534               let _,ugraph' = type_of ~logger augmented_term ugraph in
535               (* let's check also the positivity conditions *)
536               if
537                 not
538                   (are_all_occurrences_positive tys uri indparamsno i 0 len
539                      debrujinedte)
540               then
541                 raise
542                   (TypeCheckerFailure
543                     (lazy ("Non positive occurence in " ^ U.string_of_uri uri)))
544               else
545                 ugraph'
546             ) ugraph cl in
547         (i + 1),ugraph''
548       ) itl (1,ugraph)
549   in
550   ugraph2
551
552 (* Main function to checks the correctness of a mutual *)
553 (* inductive block definition.                         *)
554 and check_mutual_inductive_defs uri obj ugraph =
555   match obj with
556       Cic.InductiveDefinition (itl, params, indparamsno, _) ->
557         typecheck_mutual_inductive_defs uri (itl,params,indparamsno) ugraph 
558     | _ ->
559         raise (TypeCheckerFailure (
560                 lazy ("Unknown mutual inductive definition:" ^
561                  UriManager.string_of_uri uri)))
562
563 and type_of_mutual_inductive_defs ~logger uri i ugraph =
564  let module C = Cic in
565  let module R = CicReduction in
566  let module U = UriManager in
567   let cobj,ugraph1 =
568    match CicEnvironment.is_type_checked ~trust:true ugraph uri with
569        CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph'
570      | CicEnvironment.UncheckedObj uobj ->
571          logger#log (`Start_type_checking uri) ;
572          let ugraph1_dust = 
573            check_mutual_inductive_defs ~logger uri uobj ugraph 
574          in
575            (* TASSI: FIXME: check ugraph1 == ugraph ritornato da env *)
576            try 
577              CicEnvironment.set_type_checking_info uri ;
578              logger#log (`Type_checking_completed uri) ;
579              (match CicEnvironment.is_type_checked ~trust:false ugraph uri with
580                   CicEnvironment.CheckedObj (cobj,ugraph') -> (cobj,ugraph')
581                 | CicEnvironment.UncheckedObj _ -> raise CicEnvironmentError
582              )
583            with
584                Invalid_argument s ->
585                  (*debug_print (lazy s);*)
586                  uobj,ugraph1_dust
587   in
588     match cobj with
589         C.InductiveDefinition (dl,_,_,_) ->
590           let (_,_,arity,_) = List.nth dl i in
591             arity,ugraph1
592       | _ ->
593           raise (TypeCheckerFailure
594            (lazy ("Unknown mutual inductive definition:" ^ U.string_of_uri uri)))
595             
596 and type_of_mutual_inductive_constr ~logger uri i j ugraph =
597  let module C = Cic in
598  let module R = CicReduction in
599  let module U = UriManager in
600   let cobj,ugraph1 =
601     match CicEnvironment.is_type_checked ~trust:true ugraph uri with
602         CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph'
603       | CicEnvironment.UncheckedObj uobj ->
604           logger#log (`Start_type_checking uri) ;
605           let ugraph1_dust = 
606             check_mutual_inductive_defs ~logger uri uobj ugraph 
607           in
608             (* check ugraph1 validity ??? == ugraph' *)
609             try
610               CicEnvironment.set_type_checking_info uri ;
611               logger#log (`Type_checking_completed uri) ;
612               (match 
613                  CicEnvironment.is_type_checked ~trust:false ugraph uri 
614                with
615                  CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph' 
616                | CicEnvironment.UncheckedObj _ -> 
617                        raise CicEnvironmentError)
618             with
619                 Invalid_argument s ->
620                   (*debug_print (lazy s);*)
621                   uobj,ugraph1_dust
622   in
623     match cobj with
624         C.InductiveDefinition (dl,_,_,_) ->
625           let (_,_,_,cl) = List.nth dl i in
626           let (_,ty) = List.nth cl (j-1) in
627             ty,ugraph1
628       | _ ->
629           raise (TypeCheckerFailure
630            (lazy ("Unknown mutual inductive definition:" ^ UriManager.string_of_uri uri)))
631
632 and recursive_args context n nn te =
633  let module C = Cic in
634   match CicReduction.whd context te with
635      C.Rel _ -> []
636    | C.Var _
637    | C.Meta _
638    | C.Sort _
639    | C.Implicit _
640    | C.Cast _ (*CSC ??? *) ->
641       raise (AssertFailure (lazy "3")) (* due to type-checking *)
642    | C.Prod (name,so,de) ->
643       (not (does_not_occur context n nn so)) ::
644        (recursive_args ((Some (name,(C.Decl so)))::context) (n+1) (nn + 1) de)
645    | C.Lambda _
646    | C.LetIn _ ->
647       raise (AssertFailure (lazy "4")) (* due to type-checking *)
648    | C.Appl _ -> []
649    | C.Const _ -> raise (AssertFailure (lazy "5"))
650    | C.MutInd _
651    | C.MutConstruct _
652    | C.MutCase _
653    | C.Fix _
654    | C.CoFix _ -> raise (AssertFailure (lazy "6")) (* due to type-checking *)
655
656 and get_new_safes ~subst context p c rl safes n nn x =
657  let module C = Cic in
658  let module U = UriManager in
659  let module R = CicReduction in
660   match (R.whd ~subst context c, R.whd ~subst context p, rl) with
661      (C.Prod (_,so,ta1), C.Lambda (name,_,ta2), b::tl) ->
662        (* we are sure that the two sources are convertible because we *)
663        (* have just checked this. So let's go along ...               *)
664        let safes' =
665         List.map (fun x -> x + 1) safes
666        in
667         let safes'' =
668          if b then 1::safes' else safes'
669         in
670          get_new_safes ~subst ((Some (name,(C.Decl so)))::context)
671           ta2 ta1 tl safes'' (n+1) (nn+1) (x+1)
672    | (C.Prod _, (C.MutConstruct _ as e), _)
673    | (C.Prod _, (C.Rel _ as e), _)
674    | (C.MutInd _, e, [])
675    | (C.Appl _, e, []) -> (e,safes,n,nn,x,context)
676    | (c,p,l) ->
677       (* CSC: If the next exception is raised, it just means that   *)
678       (* CSC: the proof-assistant allows to use very strange things *)
679       (* CSC: as a branch of a case whose type is a Prod. In        *)
680       (* CSC: particular, this means that a new (C.Prod, x,_) case  *)
681       (* CSC: must be considered in this match. (e.g. x = MutCase)  *)
682       raise
683        (AssertFailure (lazy
684          (Printf.sprintf "Get New Safes: c=%s ; p=%s"
685            (CicPp.ppterm c) (CicPp.ppterm p))))
686
687 and split_prods ~subst context n te =
688  let module C = Cic in
689  let module R = CicReduction in
690   match (n, R.whd ~subst context te) with
691      (0, _) -> context,te
692    | (n, C.Prod (name,so,ta)) when n > 0 ->
693        split_prods ~subst ((Some (name,(C.Decl so)))::context) (n - 1) ta
694    | (_, _) -> raise (AssertFailure (lazy "8"))
695
696 and eat_lambdas ~subst context n te =
697  let module C = Cic in
698  let module R = CicReduction in
699   match (n, R.whd ~subst context te) with
700      (0, _) -> (te, 0, context)
701    | (n, C.Lambda (name,so,ta)) when n > 0 ->
702       let (te, k, context') =
703        eat_lambdas ~subst ((Some (name,(C.Decl so)))::context) (n - 1) ta
704       in
705        (te, k + 1, context')
706    | (n, te) ->
707        raise (AssertFailure (lazy (sprintf "9 (%d, %s)" n (CicPp.ppterm te))))
708
709 (*CSC: Tutto quello che segue e' l'intuzione di luca ;-) *) 
710 and check_is_really_smaller_arg ~subst context n nn kl x safes te =
711  (*CSC: forse la whd si puo' fare solo quando serve veramente. *)
712  (*CSC: cfr guarded_by_destructors                             *)
713  let module C = Cic in
714  let module U = UriManager in
715  match CicReduction.whd ~subst context te with
716      C.Rel m when List.mem m safes -> true
717    | C.Rel _ -> false
718    | C.Var _
719    | C.Meta _
720    | C.Sort _
721    | C.Implicit _
722    | C.Cast _
723 (*   | C.Cast (te,ty) ->
724       check_is_really_smaller_arg ~subst n nn kl x safes te &&
725        check_is_really_smaller_arg ~subst n nn kl x safes ty*)
726 (*   | C.Prod (_,so,ta) ->
727       check_is_really_smaller_arg ~subst n nn kl x safes so &&
728        check_is_really_smaller_arg ~subst (n+1) (nn+1) kl (x+1)
729         (List.map (fun x -> x + 1) safes) ta*)
730    | C.Prod _ -> raise (AssertFailure (lazy "10"))
731    | C.Lambda (name,so,ta) ->
732       check_is_really_smaller_arg ~subst context n nn kl x safes so &&
733        check_is_really_smaller_arg ~subst ((Some (name,(C.Decl so)))::context)
734         (n+1) (nn+1) kl (x+1) (List.map (fun x -> x + 1) safes) ta
735    | C.LetIn (name,so,ta) ->
736       check_is_really_smaller_arg ~subst context n nn kl x safes so &&
737        check_is_really_smaller_arg ~subst ((Some (name,(C.Def (so,None))))::context)
738         (n+1) (nn+1) kl (x+1) (List.map (fun x -> x + 1) safes) ta
739    | C.Appl (he::_) ->
740       (*CSC: sulla coda ci vogliono dei controlli? secondo noi no, ma *)
741       (*CSC: solo perche' non abbiamo trovato controesempi            *)
742       check_is_really_smaller_arg ~subst context n nn kl x safes he
743    | C.Appl [] -> raise (AssertFailure (lazy "11"))
744    | C.Const _
745    | C.MutInd _ -> raise (AssertFailure (lazy "12"))
746    | C.MutConstruct _ -> false
747    | C.MutCase (uri,i,outtype,term,pl) ->
748       (match term with
749           C.Rel m when List.mem m safes || m = x ->
750            let (tys,len,isinductive,paramsno,cl) =
751             let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
752             match o with
753                C.InductiveDefinition (tl,_,paramsno,_) ->
754                 let tys =
755                  List.map
756                   (fun (n,_,ty,_) -> Some (Cic.Name n,(Cic.Decl ty))) tl
757                 in
758                  let (_,isinductive,_,cl) = List.nth tl i in
759                   let cl' =
760                    List.map
761                     (fun (id,ty) ->
762                       (id, snd (split_prods ~subst tys paramsno ty))) cl
763                   in
764                    (tys,List.length tl,isinductive,paramsno,cl')
765              | _ ->
766                 raise (TypeCheckerFailure
767                   (lazy ("Unknown mutual inductive definition:" ^
768                   UriManager.string_of_uri uri)))
769            in
770             if not isinductive then
771               List.fold_right
772                (fun p i ->
773                  i && check_is_really_smaller_arg ~subst context n nn kl x safes p)
774                pl true
775             else
776              let pl_and_cl =
777               try
778                List.combine pl cl
779               with
780                Invalid_argument _ ->
781                 raise (TypeCheckerFailure (lazy "not enough patterns"))
782              in
783               List.fold_right
784                (fun (p,(_,c)) i ->
785                  let rl' =
786                   let debrujinedte = debrujin_constructor uri len c in
787                    recursive_args tys 0 len debrujinedte
788                  in
789                   let (e,safes',n',nn',x',context') =
790                    get_new_safes ~subst context p c rl' safes n nn x
791                   in
792                    i &&
793                    check_is_really_smaller_arg ~subst context' n' nn' kl x' safes' e
794                ) pl_and_cl true
795         | C.Appl ((C.Rel m)::tl) when List.mem m safes || m = x ->
796            let (tys,len,isinductive,paramsno,cl) =
797             let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
798             match o with
799                C.InductiveDefinition (tl,_,paramsno,_) ->
800                 let (_,isinductive,_,cl) = List.nth tl i in
801                  let tys =
802                   List.map (fun (n,_,ty,_) ->
803                    Some(Cic.Name n,(Cic.Decl ty))) tl
804                  in
805                   let cl' =
806                    List.map
807                     (fun (id,ty) ->
808                       (id, snd (split_prods ~subst tys paramsno ty))) cl
809                   in
810                    (tys,List.length tl,isinductive,paramsno,cl')
811              | _ ->
812                 raise (TypeCheckerFailure
813                   (lazy ("Unknown mutual inductive definition:" ^
814                   UriManager.string_of_uri uri)))
815            in
816             if not isinductive then
817               List.fold_right
818                (fun p i ->
819                  i && check_is_really_smaller_arg ~subst context n nn kl x safes p)
820                pl true
821             else
822              let pl_and_cl =
823               try
824                List.combine pl cl
825               with
826                Invalid_argument _ ->
827                 raise (TypeCheckerFailure (lazy "not enough patterns"))
828              in
829               (*CSC: supponiamo come prima che nessun controllo sia necessario*)
830               (*CSC: sugli argomenti di una applicazione                      *)
831               List.fold_right
832                (fun (p,(_,c)) i ->
833                  let rl' =
834                   let debrujinedte = debrujin_constructor uri len c in
835                    recursive_args tys 0 len debrujinedte
836                  in
837                   let (e, safes',n',nn',x',context') =
838                    get_new_safes ~subst context p c rl' safes n nn x
839                   in
840                    i &&
841                    check_is_really_smaller_arg ~subst context' n' nn' kl x' safes' e
842                ) pl_and_cl true
843         | _ ->
844           List.fold_right
845            (fun p i ->
846              i && check_is_really_smaller_arg ~subst context n nn kl x safes p
847            ) pl true
848       )
849    | C.Fix (_, fl) ->
850       let len = List.length fl in
851        let n_plus_len = n + len
852        and nn_plus_len = nn + len
853        and x_plus_len = x + len
854        and tys = List.map (fun (n,_,ty,_) -> Some (C.Name n,(C.Decl ty))) fl
855        and safes' = List.map (fun x -> x + len) safes in
856         List.fold_right
857          (fun (_,_,ty,bo) i ->
858            i &&
859             check_is_really_smaller_arg ~subst (tys@context) n_plus_len nn_plus_len kl
860              x_plus_len safes' bo
861          ) fl true
862    | C.CoFix (_, fl) ->
863       let len = List.length fl in
864        let n_plus_len = n + len
865        and nn_plus_len = nn + len
866        and x_plus_len = x + len
867        and tys = List.map (fun (n,ty,_) -> Some (C.Name n,(C.Decl ty))) fl
868        and safes' = List.map (fun x -> x + len) safes in
869         List.fold_right
870          (fun (_,ty,bo) i ->
871            i &&
872             check_is_really_smaller_arg ~subst (tys@context) n_plus_len nn_plus_len kl
873              x_plus_len safes' bo
874          ) fl true
875
876 and guarded_by_destructors ~subst context n nn kl x safes =
877  let module C = Cic in
878  let module U = UriManager in
879   function
880      C.Rel m when m > n && m <= nn -> false
881    | C.Rel m ->
882       (match List.nth context (n-1) with
883           Some (_,C.Decl _) -> true
884         | Some (_,C.Def (bo,_)) ->
885            guarded_by_destructors ~subst context m nn kl x safes
886             (CicSubstitution.lift m bo)
887         | None -> raise (TypeCheckerFailure (lazy "Reference to deleted hypothesis"))
888       )
889    | C.Meta _
890    | C.Sort _
891    | C.Implicit _ -> true
892    | C.Cast (te,ty) ->
893       guarded_by_destructors ~subst context n nn kl x safes te &&
894        guarded_by_destructors ~subst context n nn kl x safes ty
895    | C.Prod (name,so,ta) ->
896       guarded_by_destructors ~subst context n nn kl x safes so &&
897        guarded_by_destructors ~subst ((Some (name,(C.Decl so)))::context)
898         (n+1) (nn+1) kl (x+1) (List.map (fun x -> x + 1) safes) ta
899    | C.Lambda (name,so,ta) ->
900       guarded_by_destructors ~subst context n nn kl x safes so &&
901        guarded_by_destructors ~subst ((Some (name,(C.Decl so)))::context)
902         (n+1) (nn+1) kl (x+1) (List.map (fun x -> x + 1) safes) ta
903    | C.LetIn (name,so,ta) ->
904       guarded_by_destructors ~subst context n nn kl x safes so &&
905        guarded_by_destructors ~subst ((Some (name,(C.Def (so,None))))::context)
906         (n+1) (nn+1) kl (x+1) (List.map (fun x -> x + 1) safes) ta
907    | C.Appl ((C.Rel m)::tl) when m > n && m <= nn ->
908       let k = List.nth kl (m - n - 1) in
909        if not (List.length tl > k) then false
910        else
911         List.fold_right
912          (fun param i ->
913            i && guarded_by_destructors ~subst context n nn kl x safes param
914          ) tl true &&
915          check_is_really_smaller_arg ~subst context n nn kl x safes (List.nth tl k)
916    | C.Appl tl ->
917       List.fold_right
918        (fun t i -> i && guarded_by_destructors ~subst context n nn kl x safes t)
919        tl true
920    | C.Var (_,exp_named_subst)
921    | C.Const (_,exp_named_subst)
922    | C.MutInd (_,_,exp_named_subst)
923    | C.MutConstruct (_,_,_,exp_named_subst) ->
924       List.fold_right
925        (fun (_,t) i -> i && guarded_by_destructors ~subst context n nn kl x safes t)
926        exp_named_subst true
927    | C.MutCase (uri,i,outtype,term,pl) ->
928       (match CicReduction.whd ~subst context term with
929           C.Rel m when List.mem m safes || m = x ->
930            let (tys,len,isinductive,paramsno,cl) =
931             let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
932             match o with
933                C.InductiveDefinition (tl,_,paramsno,_) ->
934                 let len = List.length tl in
935                  let (_,isinductive,_,cl) = List.nth tl i in
936                   let tys =
937                    List.map (fun (n,_,ty,_) ->
938                     Some(Cic.Name n,(Cic.Decl ty))) tl
939                   in
940                    let cl' =
941                     List.map
942                      (fun (id,ty) ->
943                       let debrujinedty = debrujin_constructor uri len ty in
944                        (id, snd (split_prods ~subst tys paramsno ty),
945                         snd (split_prods ~subst tys paramsno debrujinedty)
946                        )) cl
947                    in
948                     (tys,len,isinductive,paramsno,cl')
949              | _ ->
950                 raise (TypeCheckerFailure
951                   (lazy ("Unknown mutual inductive definition:" ^
952                   UriManager.string_of_uri uri)))
953            in
954             if not isinductive then
955              guarded_by_destructors ~subst context n nn kl x safes outtype &&
956               guarded_by_destructors ~subst context n nn kl x safes term &&
957               (*CSC: manca ??? il controllo sul tipo di term? *)
958               List.fold_right
959                (fun p i ->
960                  i && guarded_by_destructors ~subst context n nn kl x safes p)
961                pl true
962             else
963              let pl_and_cl =
964               try
965                List.combine pl cl
966               with
967                Invalid_argument _ ->
968                 raise (TypeCheckerFailure (lazy "not enough patterns"))
969              in
970              guarded_by_destructors ~subst context n nn kl x safes outtype &&
971               (*CSC: manca ??? il controllo sul tipo di term? *)
972               List.fold_right
973                (fun (p,(_,c,brujinedc)) i ->
974                  let rl' = recursive_args tys 0 len brujinedc in
975                   let (e,safes',n',nn',x',context') =
976                    get_new_safes ~subst context p c rl' safes n nn x
977                   in
978                    i &&
979                    guarded_by_destructors ~subst context' n' nn' kl x' safes' e
980                ) pl_and_cl true
981         | C.Appl ((C.Rel m)::tl) when List.mem m safes || m = x ->
982            let (tys,len,isinductive,paramsno,cl) =
983             let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
984             match o with
985                C.InductiveDefinition (tl,_,paramsno,_) ->
986                 let (_,isinductive,_,cl) = List.nth tl i in
987                  let tys =
988                   List.map
989                    (fun (n,_,ty,_) -> Some(Cic.Name n,(Cic.Decl ty))) tl
990                  in
991                   let cl' =
992                    List.map
993                     (fun (id,ty) ->
994                       (id, snd (split_prods ~subst tys paramsno ty))) cl
995                   in
996                    (tys,List.length tl,isinductive,paramsno,cl')
997              | _ ->
998                 raise (TypeCheckerFailure
999                   (lazy ("Unknown mutual inductive definition:" ^
1000                   UriManager.string_of_uri uri)))
1001            in
1002             if not isinductive then
1003              guarded_by_destructors ~subst context n nn kl x safes outtype &&
1004               guarded_by_destructors ~subst context n nn kl x safes term &&
1005               (*CSC: manca ??? il controllo sul tipo di term? *)
1006               List.fold_right
1007                (fun p i ->
1008                  i && guarded_by_destructors ~subst context n nn kl x safes p)
1009                pl true
1010             else
1011              let pl_and_cl =
1012               try
1013                List.combine pl cl
1014               with
1015                Invalid_argument _ ->
1016                 raise (TypeCheckerFailure (lazy "not enough patterns"))
1017              in
1018              guarded_by_destructors ~subst context n nn kl x safes outtype &&
1019               (*CSC: manca ??? il controllo sul tipo di term? *)
1020               List.fold_right
1021                (fun t i ->
1022                  i && guarded_by_destructors ~subst context n nn kl x safes t)
1023                tl true &&
1024               List.fold_right
1025                (fun (p,(_,c)) i ->
1026                  let rl' =
1027                   let debrujinedte = debrujin_constructor uri len c in
1028                    recursive_args tys 0 len debrujinedte
1029                  in
1030                   let (e, safes',n',nn',x',context') =
1031                    get_new_safes ~subst context p c rl' safes n nn x
1032                   in
1033                    i &&
1034                    guarded_by_destructors ~subst context' n' nn' kl x' safes' e
1035                ) pl_and_cl true
1036         | _ ->
1037           guarded_by_destructors ~subst context n nn kl x safes outtype &&
1038            guarded_by_destructors ~subst context n nn kl x safes term &&
1039            (*CSC: manca ??? il controllo sul tipo di term? *)
1040            List.fold_right
1041             (fun p i -> i && guarded_by_destructors ~subst context n nn kl x safes p)
1042             pl true
1043       )
1044    | C.Fix (_, fl) ->
1045       let len = List.length fl in
1046        let n_plus_len = n + len
1047        and nn_plus_len = nn + len
1048        and x_plus_len = x + len
1049        and tys = List.map (fun (n,_,ty,_) -> Some (C.Name n,(C.Decl ty))) fl
1050        and safes' = List.map (fun x -> x + len) safes in
1051         List.fold_right
1052          (fun (_,_,ty,bo) i ->
1053            i && guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
1054             guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
1055              x_plus_len safes' bo
1056          ) fl true
1057    | C.CoFix (_, fl) ->
1058       let len = List.length fl in
1059        let n_plus_len = n + len
1060        and nn_plus_len = nn + len
1061        and x_plus_len = x + len
1062        and tys = List.map (fun (n,ty,_) -> Some (C.Name n,(C.Decl ty))) fl
1063        and safes' = List.map (fun x -> x + len) safes in
1064         List.fold_right
1065          (fun (_,ty,bo) i ->
1066            i &&
1067             guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
1068             guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
1069              x_plus_len safes' bo
1070          ) fl true
1071
1072 (* the boolean h means already protected *)
1073 (* args is the list of arguments the type of the constructor that may be *)
1074 (* found in head position must be applied to.                            *)
1075 and guarded_by_constructors ~subst context n nn h te args coInductiveTypeURI =
1076  let module C = Cic in
1077   (*CSC: There is a lot of code replication between the cases X and    *)
1078   (*CSC: (C.Appl X tl). Maybe it will be better to define a function   *)
1079   (*CSC: that maps X into (C.Appl X []) when X is not already a C.Appl *)
1080   match CicReduction.whd ~subst context te with
1081      C.Rel m when m > n && m <= nn -> h
1082    | C.Rel _ -> true
1083    | C.Meta _
1084    | C.Sort _
1085    | C.Implicit _
1086    | C.Cast _
1087    | C.Prod _
1088    | C.LetIn _ ->
1089       (* the term has just been type-checked *)
1090       raise (AssertFailure (lazy "17"))
1091    | C.Lambda (name,so,de) ->
1092       does_not_occur ~subst context n nn so &&
1093        guarded_by_constructors ~subst ((Some (name,(C.Decl so)))::context)
1094         (n + 1) (nn + 1) h de args coInductiveTypeURI
1095    | C.Appl ((C.Rel m)::tl) when m > n && m <= nn ->
1096       h &&
1097        List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) tl true
1098    | C.Appl ((C.MutConstruct (uri,i,j,exp_named_subst))::tl) ->
1099       let consty =
1100         let obj,_ = 
1101           try 
1102             CicEnvironment.get_cooked_obj ~trust:false CicUniv.empty_ugraph uri
1103           with Not_found -> assert false
1104         in
1105        match obj with
1106           C.InductiveDefinition (itl,_,_,_) ->
1107            let (_,_,_,cl) = List.nth itl i in
1108             let (_,cons) = List.nth cl (j - 1) in
1109              CicSubstitution.subst_vars exp_named_subst cons
1110         | _ ->
1111             raise (TypeCheckerFailure
1112              (lazy ("Unknown mutual inductive definition:" ^ UriManager.string_of_uri uri)))
1113       in
1114        let rec analyse_branch context ty te =
1115         match CicReduction.whd ~subst context ty with
1116            C.Meta _ -> raise (AssertFailure (lazy "34"))
1117          | C.Rel _
1118          | C.Var _
1119          | C.Sort _ ->
1120             does_not_occur ~subst context n nn te
1121          | C.Implicit _
1122          | C.Cast _ ->
1123             raise (AssertFailure (lazy "24"))(* due to type-checking *)
1124          | C.Prod (name,so,de) ->
1125             analyse_branch ((Some (name,(C.Decl so)))::context) de te
1126          | C.Lambda _
1127          | C.LetIn _ ->
1128             raise (AssertFailure (lazy "25"))(* due to type-checking *)
1129          | C.Appl ((C.MutInd (uri,_,_))::_) as ty
1130             when uri == coInductiveTypeURI -> 
1131              guarded_by_constructors ~subst context n nn true te []
1132               coInductiveTypeURI
1133          | C.Appl ((C.MutInd (uri,_,_))::_) as ty -> 
1134             guarded_by_constructors ~subst context n nn true te tl
1135              coInductiveTypeURI
1136          | C.Appl _ ->
1137             does_not_occur ~subst context n nn te
1138          | C.Const _ -> raise (AssertFailure (lazy "26"))
1139          | C.MutInd (uri,_,_) when uri == coInductiveTypeURI ->
1140             guarded_by_constructors ~subst context n nn true te []
1141              coInductiveTypeURI
1142          | C.MutInd _ ->
1143             does_not_occur ~subst context n nn te
1144          | C.MutConstruct _ -> raise (AssertFailure (lazy "27"))
1145          (*CSC: we do not consider backbones with a MutCase, Fix, Cofix *)
1146          (*CSC: in head position.                                       *)
1147          | C.MutCase _
1148          | C.Fix _
1149          | C.CoFix _ ->
1150             raise (AssertFailure (lazy "28"))(* due to type-checking *)
1151        in
1152        let rec analyse_instantiated_type context ty l =
1153         match CicReduction.whd ~subst context ty with
1154            C.Rel _
1155          | C.Var _
1156          | C.Meta _
1157          | C.Sort _
1158          | C.Implicit _
1159          | C.Cast _ -> raise (AssertFailure (lazy "29"))(* due to type-checking *)
1160          | C.Prod (name,so,de) ->
1161             begin
1162              match l with
1163                 [] -> true
1164               | he::tl ->
1165                  analyse_branch context so he &&
1166                   analyse_instantiated_type
1167                    ((Some (name,(C.Decl so)))::context) de tl
1168             end
1169          | C.Lambda _
1170          | C.LetIn _ ->
1171             raise (AssertFailure (lazy "30"))(* due to type-checking *)
1172          | C.Appl _ -> 
1173             List.fold_left
1174              (fun i x -> i && does_not_occur ~subst context n nn x) true l
1175          | C.Const _ -> raise (AssertFailure (lazy "31"))
1176          | C.MutInd _ ->
1177             List.fold_left
1178              (fun i x -> i && does_not_occur ~subst context n nn x) true l
1179          | C.MutConstruct _ -> raise (AssertFailure (lazy "32"))
1180          (*CSC: we do not consider backbones with a MutCase, Fix, Cofix *)
1181          (*CSC: in head position.                                       *)
1182          | C.MutCase _
1183          | C.Fix _
1184          | C.CoFix _ ->
1185             raise (AssertFailure (lazy "33"))(* due to type-checking *)
1186        in
1187         let rec instantiate_type args consty =
1188          function
1189             [] -> true
1190           | tlhe::tltl as l ->
1191              let consty' = CicReduction.whd ~subst context consty in
1192               match args with 
1193                  he::tl ->
1194                   begin
1195                    match consty' with
1196                       C.Prod (_,_,de) ->
1197                        let instantiated_de = CicSubstitution.subst he de in
1198                         (*CSC: siamo sicuri che non sia troppo forte? *)
1199                         does_not_occur ~subst context n nn tlhe &
1200                          instantiate_type tl instantiated_de tltl
1201                     | _ ->
1202                       (*CSC:We do not consider backbones with a MutCase, a    *)
1203                       (*CSC:FixPoint, a CoFixPoint and so on in head position.*)
1204                       raise (AssertFailure (lazy "23"))
1205                   end
1206                | [] -> analyse_instantiated_type context consty' l
1207                   (* These are all the other cases *)
1208        in
1209         instantiate_type args consty tl
1210    | C.Appl ((C.CoFix (_,fl))::tl) ->
1211       List.fold_left (fun i x -> i && does_not_occur ~subst context n nn x) true tl &&
1212        let len = List.length fl in
1213         let n_plus_len = n + len
1214         and nn_plus_len = nn + len
1215         (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
1216         and tys = List.map (fun (n,ty,_) -> Some (C.Name n,(C.Decl ty))) fl in
1217          List.fold_right
1218           (fun (_,ty,bo) i ->
1219             i && does_not_occur ~subst context n nn ty &&
1220              guarded_by_constructors ~subst (tys@context) n_plus_len nn_plus_len
1221               h bo args coInductiveTypeURI
1222           ) fl true
1223    | C.Appl ((C.MutCase (_,_,out,te,pl))::tl) ->
1224        List.fold_left (fun i x -> i && does_not_occur ~subst context n nn x) true tl &&
1225         does_not_occur ~subst context n nn out &&
1226          does_not_occur ~subst context n nn te &&
1227           List.fold_right
1228            (fun x i ->
1229              i &&
1230              guarded_by_constructors ~subst context n nn h x args
1231               coInductiveTypeURI
1232            ) pl true
1233    | C.Appl l ->
1234       List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) l true
1235    | C.Var (_,exp_named_subst)
1236    | C.Const (_,exp_named_subst) ->
1237       List.fold_right
1238        (fun (_,x) i -> i && does_not_occur ~subst context n nn x) exp_named_subst true
1239    | C.MutInd _ -> assert false
1240    | C.MutConstruct (_,_,_,exp_named_subst) ->
1241       List.fold_right
1242        (fun (_,x) i -> i && does_not_occur ~subst context n nn x) exp_named_subst true
1243    | C.MutCase (_,_,out,te,pl) ->
1244        does_not_occur ~subst context n nn out &&
1245         does_not_occur ~subst context n nn te &&
1246          List.fold_right
1247           (fun x i ->
1248             i &&
1249              guarded_by_constructors ~subst context n nn h x args
1250               coInductiveTypeURI
1251           ) pl true
1252    | C.Fix (_,fl) ->
1253       let len = List.length fl in
1254        let n_plus_len = n + len
1255        and nn_plus_len = nn + len
1256        (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
1257        and tys = List.map (fun (n,_,ty,_)-> Some (C.Name n,(C.Decl ty))) fl in
1258         List.fold_right
1259          (fun (_,_,ty,bo) i ->
1260            i && does_not_occur ~subst context n nn ty &&
1261             does_not_occur ~subst (tys@context) n_plus_len nn_plus_len bo
1262          ) fl true
1263    | C.CoFix (_,fl) ->
1264       let len = List.length fl in
1265        let n_plus_len = n + len
1266        and nn_plus_len = nn + len
1267        (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
1268        and tys = List.map (fun (n,ty,_) -> Some (C.Name n,(C.Decl ty))) fl in
1269         List.fold_right
1270          (fun (_,ty,bo) i ->
1271            i && does_not_occur ~subst context n nn ty &&
1272             guarded_by_constructors ~subst (tys@context) n_plus_len nn_plus_len
1273              h bo
1274              args coInductiveTypeURI
1275          ) fl true
1276
1277 and check_allowed_sort_elimination ~subst ~metasenv ~logger context uri i
1278   need_dummy ind arity1 arity2 ugraph =
1279  let module C = Cic in
1280  let module U = UriManager in
1281   let arity1 = CicReduction.whd ~subst context arity1 in
1282   let rec check_allowed_sort_elimination_aux ugraph context arity2 need_dummy =
1283    match arity1, CicReduction.whd ~subst context arity2 with
1284      (C.Prod (_,so1,de1), C.Prod (_,so2,de2)) ->
1285        let b,ugraph1 =
1286         CicReduction.are_convertible ~subst ~metasenv context so1 so2 ugraph in
1287        if b then
1288          check_allowed_sort_elimination ~subst ~metasenv ~logger context uri i
1289           need_dummy (C.Appl [CicSubstitution.lift 1 ind ; C.Rel 1]) de1 de2
1290           ugraph1
1291        else
1292          false,ugraph1
1293    | (C.Sort _, C.Prod (name,so,ta)) when not need_dummy ->
1294        let b,ugraph1 =
1295         CicReduction.are_convertible ~subst ~metasenv context so ind ugraph in
1296        if not b then
1297          false,ugraph1
1298        else
1299         check_allowed_sort_elimination_aux ugraph1
1300          ((Some (name,C.Decl so))::context) ta true
1301    | (C.Sort C.Prop, C.Sort C.Prop) when need_dummy -> true,ugraph
1302    | (C.Sort C.Prop, C.Sort C.Set)
1303    | (C.Sort C.Prop, C.Sort C.CProp)
1304    | (C.Sort C.Prop, C.Sort (C.Type _) ) when need_dummy ->
1305        (let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1306          match o with
1307          C.InductiveDefinition (itl,_,paramsno,_) ->
1308            let itl_len = List.length itl in
1309            let (name,_,ty,cl) = List.nth itl i in
1310            let cl_len = List.length cl in
1311             if (cl_len = 0 || (itl_len = 1 && cl_len = 1)) then
1312              let non_informative,ugraph =
1313               if cl_len = 0 then true,ugraph
1314               else
1315                is_non_informative ~logger [Some (C.Name name,C.Decl ty)]
1316                 paramsno (snd (List.nth cl 0)) ugraph
1317              in
1318               (* is it a singleton or empty non recursive and non informative
1319                  definition? *)
1320               non_informative, ugraph
1321             else
1322               false,ugraph
1323          | _ ->
1324              raise (TypeCheckerFailure 
1325                      (lazy ("Unknown mutual inductive definition:" ^
1326                        UriManager.string_of_uri uri)))
1327        )
1328    | (C.Sort C.Set, C.Sort C.Prop) when need_dummy -> true , ugraph
1329    | (C.Sort C.CProp, C.Sort C.Prop) when need_dummy -> true , ugraph
1330    | (C.Sort C.Set, C.Sort C.Set) when need_dummy -> true , ugraph
1331    | (C.Sort C.Set, C.Sort C.CProp) when need_dummy -> true , ugraph
1332    | (C.Sort C.CProp, C.Sort C.Set) when need_dummy -> true , ugraph
1333    | (C.Sort C.CProp, C.Sort C.CProp) when need_dummy -> true , ugraph
1334    | ((C.Sort C.Set, C.Sort (C.Type _)) | (C.Sort C.CProp, C.Sort (C.Type _)))
1335       when need_dummy ->
1336        (let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1337          match o with
1338            C.InductiveDefinition (itl,_,paramsno,_) ->
1339             let tys =
1340              List.map (fun (n,_,ty,_) -> Some (Cic.Name n,(Cic.Decl ty))) itl
1341             in
1342              let (_,_,_,cl) = List.nth itl i in
1343               (List.fold_right
1344                (fun (_,x) (i,ugraph) -> 
1345                  if i then
1346                    is_small ~logger tys paramsno x ugraph
1347                  else
1348                    false,ugraph
1349                     ) cl (true,ugraph))
1350            | _ ->
1351             raise (TypeCheckerFailure
1352              (lazy ("Unknown mutual inductive definition:" ^
1353               UriManager.string_of_uri uri)))
1354        )
1355    | (C.Sort (C.Type _), C.Sort _) when need_dummy -> true , ugraph
1356    | (_,_) -> false,ugraph
1357  in
1358   check_allowed_sort_elimination_aux ugraph context arity2 need_dummy
1359          
1360 and type_of_branch ~subst context argsno need_dummy outtype term constype =
1361  let module C = Cic in
1362  let module R = CicReduction in
1363   match R.whd ~subst context constype with
1364      C.MutInd (_,_,_) ->
1365       if need_dummy then
1366        outtype
1367       else
1368        C.Appl [outtype ; term]
1369    | C.Appl (C.MutInd (_,_,_)::tl) ->
1370       let (_,arguments) = split tl argsno
1371       in
1372        if need_dummy && arguments = [] then
1373         outtype
1374        else
1375         C.Appl (outtype::arguments@(if need_dummy then [] else [term]))
1376    | C.Prod (name,so,de) ->
1377       let term' =
1378        match CicSubstitution.lift 1 term with
1379           C.Appl l -> C.Appl (l@[C.Rel 1])
1380         | t -> C.Appl [t ; C.Rel 1]
1381       in
1382        C.Prod (C.Anonymous,so,type_of_branch ~subst
1383         ((Some (name,(C.Decl so)))::context) argsno need_dummy
1384         (CicSubstitution.lift 1 outtype) term' de)
1385   | _ -> raise (AssertFailure (lazy "20"))
1386
1387 (* check_metasenv_consistency checks that the "canonical" context of a
1388 metavariable is consitent - up to relocation via the relocation list l -
1389 with the actual context *)
1390
1391
1392 and check_metasenv_consistency ~logger ~subst metasenv context 
1393   canonical_context l ugraph 
1394 =
1395   let module C = Cic in
1396   let module R = CicReduction in
1397   let module S = CicSubstitution in
1398   let lifted_canonical_context = 
1399     let rec aux i =
1400      function
1401          [] -> []
1402        | (Some (n,C.Decl t))::tl ->
1403            (Some (n,C.Decl (S.subst_meta l (S.lift i t))))::(aux (i+1) tl)
1404        | (Some (n,C.Def (t,None)))::tl ->
1405            (Some (n,C.Def ((S.subst_meta l (S.lift i t)),None)))::(aux (i+1) tl)
1406        | None::tl -> None::(aux (i+1) tl)
1407        | (Some (n,C.Def (t,Some ty)))::tl ->
1408            (Some (n,C.Def ((S.subst_meta l (S.lift i t)),Some (S.subst_meta l (S.lift i ty)))))::(aux (i+1) tl)
1409     in
1410      aux 1 canonical_context
1411    in
1412    List.fold_left2 
1413      (fun ugraph t ct -> 
1414        match (t,ct) with
1415        | _,None -> ugraph
1416        | Some t,Some (_,C.Def (ct,_)) ->
1417            let b,ugraph1 = 
1418              R.are_convertible ~subst ~metasenv context t ct ugraph 
1419            in
1420            if not b then
1421              raise 
1422                (TypeCheckerFailure 
1423                   (lazy (sprintf "Not well typed metavariable local context: expected a term convertible with %s, found %s" (CicPp.ppterm ct) (CicPp.ppterm t))))
1424            else
1425              ugraph1
1426        | Some t,Some (_,C.Decl ct) ->
1427            let type_t,ugraph1 = 
1428              type_of_aux' ~logger ~subst metasenv context t ugraph 
1429            in
1430            let b,ugraph2 = 
1431              R.are_convertible ~subst ~metasenv context type_t ct ugraph1 
1432            in
1433            if not b then
1434              raise (TypeCheckerFailure 
1435                      (lazy (sprintf "Not well typed metavariable local context: expected a term of type %s, found %s of type %s" 
1436                          (CicPp.ppterm ct) (CicPp.ppterm t)
1437                          (CicPp.ppterm type_t))))
1438            else
1439              ugraph2
1440        | None, _  ->
1441            raise (TypeCheckerFailure
1442                    (lazy ("Not well typed metavariable local context: "^
1443                      "an hypothesis, that is not hidden, is not instantiated")))
1444      ) ugraph l lifted_canonical_context 
1445      
1446
1447 (* 
1448    type_of_aux' is just another name (with a different scope) 
1449    for type_of_aux 
1450 *)
1451
1452 and type_of_aux' ~logger ?(subst = []) metasenv context t ugraph =
1453  let rec type_of_aux ~logger context t ugraph =
1454   let module C = Cic in
1455   let module R = CicReduction in
1456   let module S = CicSubstitution in
1457   let module U = UriManager in
1458    match t with
1459       C.Rel n ->
1460        (try
1461          match List.nth context (n - 1) with
1462             Some (_,C.Decl t) -> S.lift n t,ugraph
1463           | Some (_,C.Def (_,Some ty)) -> S.lift n ty,ugraph
1464           | Some (_,C.Def (bo,None)) ->
1465              debug_print (lazy "##### CASO DA INVESTIGARE E CAPIRE") ;
1466               type_of_aux ~logger context (S.lift n bo) ugraph
1467           | None -> raise 
1468               (TypeCheckerFailure (lazy "Reference to deleted hypothesis"))
1469         with
1470         _ ->
1471           raise (TypeCheckerFailure (lazy "unbound variable"))
1472        )
1473     | C.Var (uri,exp_named_subst) ->
1474       incr fdebug ;
1475         let ugraph1 = 
1476           check_exp_named_subst ~logger ~subst context exp_named_subst ugraph 
1477         in 
1478         let ty,ugraph2 = type_of_variable ~logger uri ugraph1 in
1479         let ty1 = CicSubstitution.subst_vars exp_named_subst ty in
1480           decr fdebug ;
1481           ty1,ugraph2
1482     | C.Meta (n,l) -> 
1483        (try
1484           let (canonical_context,term,ty) = CicUtil.lookup_subst n subst in
1485           let ugraph1 =
1486             check_metasenv_consistency ~logger
1487               ~subst metasenv context canonical_context l ugraph
1488           in
1489             (* assuming subst is well typed !!!!! *)
1490             ((CicSubstitution.subst_meta l ty), ugraph1)
1491               (* type_of_aux context (CicSubstitution.subst_meta l term) *)
1492         with CicUtil.Subst_not_found _ ->
1493           let (_,canonical_context,ty) = CicUtil.lookup_meta n metasenv in
1494           let ugraph1 = 
1495             check_metasenv_consistency ~logger
1496               ~subst metasenv context canonical_context l ugraph
1497           in
1498             ((CicSubstitution.subst_meta l ty),ugraph1))
1499       (* TASSI: CONSTRAINTS *)
1500     | C.Sort (C.Type t) -> 
1501        let t' = CicUniv.fresh() in
1502        let ugraph1 = CicUniv.add_gt t' t ugraph in
1503          (C.Sort (C.Type t')),ugraph1
1504       (* TASSI: CONSTRAINTS *)
1505     | C.Sort s -> (C.Sort (C.Type (CicUniv.fresh ()))),ugraph
1506     | C.Implicit _ -> raise (AssertFailure (lazy "21"))
1507     | C.Cast (te,ty) as t ->
1508        let _,ugraph1 = type_of_aux ~logger context ty ugraph in
1509        let ty_te,ugraph2 = type_of_aux ~logger context te ugraph1 in
1510        let b,ugraph3 = 
1511          R.are_convertible ~subst ~metasenv context ty_te ty ugraph2 
1512        in
1513          if b then
1514            ty,ugraph3
1515          else
1516            raise (TypeCheckerFailure
1517                     (lazy (sprintf "Invalid cast %s" (CicPp.ppterm t))))
1518     | C.Prod (name,s,t) ->
1519        let sort1,ugraph1 = type_of_aux ~logger context s ugraph in
1520        let sort2,ugraph2 = 
1521          type_of_aux ~logger  ((Some (name,(C.Decl s)))::context) t ugraph1 
1522        in
1523        sort_of_prod ~subst context (name,s) (sort1,sort2) ugraph2
1524    | C.Lambda (n,s,t) ->
1525        let sort1,ugraph1 = type_of_aux ~logger context s ugraph in
1526        (match R.whd ~subst context sort1 with
1527            C.Meta _
1528          | C.Sort _ -> ()
1529          | _ ->
1530            raise
1531             (TypeCheckerFailure (lazy (sprintf
1532               "Not well-typed lambda-abstraction: the source %s should be a type; instead it is a term of type %s" (CicPp.ppterm s)
1533                 (CicPp.ppterm sort1))))
1534        ) ;
1535        let type2,ugraph2 = 
1536          type_of_aux ~logger ((Some (n,(C.Decl s)))::context) t ugraph1 
1537        in
1538          (C.Prod (n,s,type2)),ugraph2
1539    | C.LetIn (n,s,t) ->
1540       (* only to check if s is well-typed *)
1541       let ty,ugraph1 = type_of_aux ~logger context s ugraph in
1542        (* The type of a LetIn is a LetIn. Extremely slow since the computed
1543           LetIn is later reduced and maybe also re-checked.
1544        (C.LetIn (n,s, type_of_aux ((Some (n,(C.Def s)))::context) t))
1545        *)
1546        (* The type of the LetIn is reduced. Much faster than the previous
1547           solution. Moreover the inferred type is probably very different
1548           from the expected one.
1549        (CicReduction.whd ~subst context
1550         (C.LetIn (n,s, type_of_aux ((Some (n,(C.Def s)))::context) t)))
1551        *)
1552        (* One-step LetIn reduction. Even faster than the previous solution.
1553           Moreover the inferred type is closer to the expected one. *)
1554        let ty1,ugraph2 = 
1555          type_of_aux ~logger 
1556            ((Some (n,(C.Def (s,Some ty))))::context) t ugraph1 
1557        in
1558        (CicSubstitution.subst s ty1),ugraph2
1559    | C.Appl (he::tl) when List.length tl > 0 ->
1560        let hetype,ugraph1 = type_of_aux ~logger context he ugraph in
1561        let tlbody_and_type,ugraph2 = 
1562          List.fold_right (
1563            fun x (l,ugraph) -> 
1564              let ty,ugraph1 = type_of_aux ~logger context x ugraph in
1565              let _,ugraph1 = type_of_aux ~logger  context ty ugraph1 in
1566                ((x,ty)::l,ugraph1)) 
1567            tl ([],ugraph1) 
1568        in
1569          (* TASSI: questa c'era nel mio... ma non nel CVS... *)
1570          (* let _,ugraph2 = type_of_aux context hetype ugraph2 in *)
1571          eat_prods ~subst context hetype tlbody_and_type ugraph2
1572    | C.Appl _ -> raise (AssertFailure (lazy "Appl: no arguments"))
1573    | C.Const (uri,exp_named_subst) ->
1574        incr fdebug ;
1575        let ugraph1 = 
1576          check_exp_named_subst ~logger ~subst  context exp_named_subst ugraph 
1577        in
1578        let cty,ugraph2 = type_of_constant ~logger uri ugraph1 in
1579        let cty1 =
1580          CicSubstitution.subst_vars exp_named_subst cty
1581        in
1582          decr fdebug ;
1583          cty1,ugraph2
1584    | C.MutInd (uri,i,exp_named_subst) ->
1585       incr fdebug ;
1586        let ugraph1 = 
1587          check_exp_named_subst ~logger  ~subst context exp_named_subst ugraph 
1588        in
1589          (* TASSI: da me c'era anche questa, ma in CVS no *)
1590        let mty,ugraph2 = type_of_mutual_inductive_defs ~logger uri i ugraph1 in
1591          (* fine parte dubbia *)
1592        let cty =
1593          CicSubstitution.subst_vars exp_named_subst mty
1594        in
1595          decr fdebug ;
1596          cty,ugraph2
1597    | C.MutConstruct (uri,i,j,exp_named_subst) ->
1598        let ugraph1 = 
1599          check_exp_named_subst ~logger ~subst context exp_named_subst ugraph 
1600        in
1601          (* TASSI: idem come sopra *)
1602        let mty,ugraph2 = 
1603          type_of_mutual_inductive_constr ~logger uri i j ugraph1 
1604        in
1605        let cty =
1606          CicSubstitution.subst_vars exp_named_subst mty
1607        in
1608          cty,ugraph2
1609    | C.MutCase (uri,i,outtype,term,pl) ->
1610       let outsort,ugraph1 = type_of_aux ~logger context outtype ugraph in
1611       let (need_dummy, k) =
1612       let rec guess_args context t =
1613         let outtype = CicReduction.whd ~subst context t in
1614           match outtype with
1615               C.Sort _ -> (true, 0)
1616             | C.Prod (name, s, t) ->
1617                 let (b, n) = 
1618                   guess_args ((Some (name,(C.Decl s)))::context) t in
1619                   if n = 0 then
1620                   (* last prod before sort *)
1621                     match CicReduction.whd ~subst context s with
1622 (*CSC: for _ see comment below about the missing named_exp_subst ?????????? *)
1623                         C.MutInd (uri',i',_) when U.eq uri' uri && i' = i ->
1624                           (false, 1)
1625 (*CSC: for _ see comment below about the missing named_exp_subst ?????????? *)
1626                       | C.Appl ((C.MutInd (uri',i',_)) :: _)
1627                           when U.eq uri' uri && i' = i -> (false, 1)
1628                       | _ -> (true, 1)
1629                   else
1630                     (b, n + 1)
1631             | _ ->
1632                 raise 
1633                   (TypeCheckerFailure 
1634                      (lazy (sprintf
1635                         "Malformed case analasys' output type %s" 
1636                         (CicPp.ppterm outtype))))
1637       in
1638 (*
1639       let (parameters, arguments, exp_named_subst),ugraph2 =
1640         let ty,ugraph2 = type_of_aux context term ugraph1 in
1641           match R.whd ~subst context ty with
1642            (*CSC manca il caso dei CAST *)
1643 (*CSC: ma servono i parametri (uri,i)? Se si', perche' non serve anche il *)
1644 (*CSC: parametro exp_named_subst? Se no, perche' non li togliamo?         *)
1645 (*CSC: Hint: nella DTD servono per gli stylesheet.                        *)
1646               C.MutInd (uri',i',exp_named_subst) as typ ->
1647                 if U.eq uri uri' && i = i' then 
1648                   ([],[],exp_named_subst),ugraph2
1649                 else 
1650                   raise 
1651                     (TypeCheckerFailure 
1652                       (lazy (sprintf
1653                           ("Case analysys: analysed term type is %s, but is expected to be (an application of) %s#1/%d{_}")
1654                           (CicPp.ppterm typ) (U.string_of_uri uri) i)))
1655             | C.Appl 
1656                 ((C.MutInd (uri',i',exp_named_subst) as typ):: tl) as typ' ->
1657                 if U.eq uri uri' && i = i' then
1658                   let params,args =
1659                     split tl (List.length tl - k)
1660                   in (params,args,exp_named_subst),ugraph2
1661                 else 
1662                   raise 
1663                     (TypeCheckerFailure 
1664                       (lazy (sprintf 
1665                           ("Case analysys: analysed term type is %s, "^
1666                            "but is expected to be (an application of) "^
1667                            "%s#1/%d{_}")
1668                           (CicPp.ppterm typ') (U.string_of_uri uri) i)))
1669             | _ ->
1670                 raise 
1671                   (TypeCheckerFailure 
1672                     (lazy (sprintf
1673                         ("Case analysis: "^
1674                          "analysed term %s is not an inductive one")
1675                         (CicPp.ppterm term))))
1676 *)
1677       let (b, k) = guess_args context outsort in
1678           if not b then (b, k - 1) else (b, k) in
1679       let (parameters, arguments, exp_named_subst),ugraph2 =
1680         let ty,ugraph2 = type_of_aux ~logger context term ugraph1 in
1681         match R.whd ~subst context ty with
1682             C.MutInd (uri',i',exp_named_subst) as typ ->
1683               if U.eq uri uri' && i = i' then 
1684                 ([],[],exp_named_subst),ugraph2
1685               else raise 
1686                 (TypeCheckerFailure 
1687                   (lazy (sprintf
1688                       ("Case analysys: analysed term type is %s (%s#1/%d{_}), but is expected to be (an application of) %s#1/%d{_}")
1689                       (CicPp.ppterm typ) (U.string_of_uri uri') i' (U.string_of_uri uri) i)))
1690           | C.Appl 
1691               ((C.MutInd (uri',i',exp_named_subst) as typ):: tl) as typ' ->
1692               if U.eq uri uri' && i = i' then
1693                 let params,args =
1694                   split tl (List.length tl - k)
1695                 in (params,args,exp_named_subst),ugraph2
1696               else raise 
1697                 (TypeCheckerFailure 
1698                   (lazy (sprintf
1699                       ("Case analysys: analysed term type is %s (%s#1/%d{_}), but is expected to be (an application of) %s#1/%d{_}")
1700                       (CicPp.ppterm typ) (U.string_of_uri uri') i' (U.string_of_uri uri) i)))
1701           | _ ->
1702               raise 
1703                 (TypeCheckerFailure 
1704                   (lazy (sprintf
1705                       "Case analysis: analysed term %s is not an inductive one"
1706                       (CicPp.ppterm term))))
1707       in
1708         (* 
1709            let's control if the sort elimination is allowed: 
1710            [(I q1 ... qr)|B] 
1711         *)
1712       let sort_of_ind_type =
1713         if parameters = [] then
1714           C.MutInd (uri,i,exp_named_subst)
1715         else
1716           C.Appl ((C.MutInd (uri,i,exp_named_subst))::parameters)
1717       in
1718       let type_of_sort_of_ind_ty,ugraph3 = 
1719         type_of_aux ~logger context sort_of_ind_type ugraph2 in
1720       let b,ugraph4 = 
1721         check_allowed_sort_elimination ~subst ~metasenv ~logger  context uri i
1722           need_dummy sort_of_ind_type type_of_sort_of_ind_ty outsort ugraph3 
1723       in
1724         if not b then
1725         raise
1726           (TypeCheckerFailure (lazy ("Case analasys: sort elimination not allowed")));
1727         (* let's check if the type of branches are right *)
1728       let parsno =
1729         let obj,_ =
1730           try
1731             CicEnvironment.get_cooked_obj ~trust:false CicUniv.empty_ugraph uri
1732           with Not_found -> assert false
1733         in
1734         match obj with
1735             C.InductiveDefinition (_,_,parsno,_) -> parsno
1736           | _ ->
1737               raise (TypeCheckerFailure
1738                 (lazy ("Unknown mutual inductive definition:" ^
1739                   UriManager.string_of_uri uri)))
1740         in
1741       let (_,branches_ok,ugraph5) =
1742         List.fold_left
1743           (fun (j,b,ugraph) p ->
1744             if b then
1745               let cons =
1746                 if parameters = [] then
1747                   (C.MutConstruct (uri,i,j,exp_named_subst))
1748                 else
1749                   (C.Appl 
1750                      (C.MutConstruct (uri,i,j,exp_named_subst)::parameters))
1751               in
1752               let ty_p,ugraph1 = type_of_aux ~logger context p ugraph in
1753               let ty_cons,ugraph3 = type_of_aux ~logger context cons ugraph1 in
1754               (* 2 is skipped *)
1755               let ty_branch = 
1756                 type_of_branch ~subst context parsno need_dummy outtype cons 
1757                   ty_cons in
1758               let b1,ugraph4 =
1759                 R.are_convertible 
1760                   ~subst ~metasenv context ty_p ty_branch ugraph3 
1761               in 
1762               if not b1 then
1763                 debug_print (lazy
1764                   ("#### " ^ CicPp.ppterm ty_p ^ 
1765                   " <==> " ^ CicPp.ppterm ty_branch));
1766               (j + 1,b1,ugraph4)
1767             else
1768               (j,false,ugraph)
1769           ) (1,true,ugraph4) pl
1770          in
1771           if not branches_ok then
1772            raise
1773             (TypeCheckerFailure (lazy "Case analysys: wrong branch type"));
1774           let arguments' =
1775            if not need_dummy then outtype::arguments@[term]
1776            else outtype::arguments in
1777           let outtype =
1778            if need_dummy && arguments = [] then outtype
1779            else CicReduction.head_beta_reduce (C.Appl arguments')
1780           in
1781            outtype,ugraph5
1782    | C.Fix (i,fl) ->
1783       let types_times_kl,ugraph1 =
1784         (* WAS: list rev list map *)
1785         List.fold_left
1786           (fun (l,ugraph) (n,k,ty,_) ->
1787             let _,ugraph1 = type_of_aux ~logger context ty ugraph in
1788             ((Some (C.Name n,(C.Decl ty)),k)::l,ugraph1)
1789           ) ([],ugraph) fl
1790       in
1791       let (types,kl) = List.split types_times_kl in
1792       let len = List.length types in
1793       let ugraph2 = 
1794         List.fold_left
1795           (fun ugraph (name,x,ty,bo) ->
1796              let ty_bo,ugraph1 = 
1797                type_of_aux ~logger (types@context) bo ugraph 
1798              in
1799              let b,ugraph2 = 
1800                R.are_convertible ~subst ~metasenv (types@context) 
1801                  ty_bo (CicSubstitution.lift len ty) ugraph1 in
1802                if b then
1803                  begin
1804                    let (m, eaten, context') =
1805                      eat_lambdas ~subst (types @ context) (x + 1) bo
1806                    in
1807                      (*
1808                        let's control the guarded by 
1809                        destructors conditions D{f,k,x,M}
1810                      *)
1811                      if not (guarded_by_destructors ~subst context' eaten 
1812                                (len + eaten) kl 1 [] m) then
1813                        raise
1814                          (TypeCheckerFailure 
1815                            (lazy ("Fix: not guarded by destructors")))
1816                      else
1817                        ugraph2
1818                  end
1819                else
1820                  raise (TypeCheckerFailure (lazy ("Fix: ill-typed bodies")))
1821           ) ugraph1 fl in
1822         (*CSC: controlli mancanti solo su D{f,k,x,M} *)
1823       let (_,_,ty,_) = List.nth fl i in
1824         ty,ugraph2
1825    | C.CoFix (i,fl) ->
1826        let types,ugraph1 =
1827          List.fold_left
1828            (fun (l,ugraph) (n,ty,_) -> 
1829               let _,ugraph1 = 
1830                 type_of_aux ~logger context ty ugraph in 
1831                 (Some (C.Name n,(C.Decl ty))::l,ugraph1)
1832            ) ([],ugraph) fl
1833        in
1834        let len = List.length types in
1835        let ugraph2 = 
1836          List.fold_left
1837            (fun ugraph (_,ty,bo) ->
1838               let ty_bo,ugraph1 = 
1839                 type_of_aux ~logger (types @ context) bo ugraph 
1840               in
1841               let b,ugraph2 = 
1842                 R.are_convertible ~subst ~metasenv (types @ context) ty_bo
1843                   (CicSubstitution.lift len ty) ugraph1 
1844               in
1845                 if b then
1846                   begin
1847                     (* let's control that the returned type is coinductive *)
1848                     match returns_a_coinductive ~subst context ty with
1849                         None ->
1850                           raise
1851                           (TypeCheckerFailure
1852                             (lazy "CoFix: does not return a coinductive type"))
1853                       | Some uri ->
1854                           (*
1855                             let's control the guarded by constructors 
1856                             conditions C{f,M}
1857                           *)
1858                           if not (guarded_by_constructors ~subst
1859                               (types @ context) 0 len false bo [] uri) then
1860                             raise
1861                               (TypeCheckerFailure 
1862                                 (lazy "CoFix: not guarded by constructors"))
1863                           else
1864                           ugraph2
1865                   end
1866                 else
1867                   raise
1868                     (TypeCheckerFailure (lazy "CoFix: ill-typed bodies"))
1869            ) ugraph1 fl 
1870        in
1871        let (_,ty,_) = List.nth fl i in
1872          ty,ugraph2
1873
1874  and check_exp_named_subst ~logger ~subst context ugraph =
1875    let rec check_exp_named_subst_aux ~logger esubsts l ugraph =
1876      match l with
1877          [] -> ugraph
1878        | ((uri,t) as item)::tl ->
1879            let ty_uri,ugraph1 = type_of_variable ~logger uri ugraph in 
1880            let typeofvar =
1881              CicSubstitution.subst_vars esubsts ty_uri in
1882            let typeoft,ugraph2 = type_of_aux ~logger context t ugraph1 in
1883            let b,ugraph3 =
1884              CicReduction.are_convertible ~subst ~metasenv
1885                context typeoft typeofvar ugraph2 
1886            in
1887              if b then
1888                check_exp_named_subst_aux ~logger (esubsts@[item]) tl ugraph3
1889              else
1890                begin
1891                  CicReduction.fdebug := 0 ;
1892                  ignore 
1893                    (CicReduction.are_convertible 
1894                       ~subst ~metasenv context typeoft typeofvar ugraph2) ;
1895                  fdebug := 0 ;
1896                  debug typeoft [typeofvar] ;
1897                  raise (TypeCheckerFailure (lazy "Wrong Explicit Named Substitution"))
1898                end
1899    in
1900      check_exp_named_subst_aux ~logger [] ugraph 
1901        
1902  and sort_of_prod ~subst context (name,s) (t1, t2) ugraph =
1903   let module C = Cic in
1904    let t1' = CicReduction.whd ~subst context t1 in
1905    let t2' = CicReduction.whd ~subst ((Some (name,C.Decl s))::context) t2 in
1906    match (t1', t2') with
1907       (C.Sort s1, C.Sort s2)
1908         when (s2 = C.Prop or s2 = C.Set or s2 = C.CProp) -> 
1909          (* different from Coq manual!!! *)
1910          C.Sort s2,ugraph
1911     | (C.Sort (C.Type t1), C.Sort (C.Type t2)) -> 
1912       (* TASSI: CONSRTAINTS: the same in doubletypeinference, cicrefine *)
1913        let t' = CicUniv.fresh() in
1914        let ugraph1 = CicUniv.add_ge t' t1 ugraph in
1915        let ugraph2 = CicUniv.add_ge t' t2 ugraph1 in
1916        C.Sort (C.Type t'),ugraph2
1917     | (C.Sort _,C.Sort (C.Type t1)) -> 
1918         (* TASSI: CONSRTAINTS: the same in doubletypeinference, cicrefine *)
1919         C.Sort (C.Type t1),ugraph (* c'e' bisogno di un fresh? *)
1920     | (C.Meta _, C.Sort _) -> t2',ugraph
1921     | (C.Meta _, (C.Meta (_,_) as t))
1922     | (C.Sort _, (C.Meta (_,_) as t)) when CicUtil.is_closed t ->
1923         t2',ugraph
1924     | (_,_) -> raise (TypeCheckerFailure (lazy (sprintf
1925         "Prod: expected two sorts, found = %s, %s" (CicPp.ppterm t1')
1926           (CicPp.ppterm t2'))))
1927
1928  and eat_prods ~subst context hetype l ugraph =
1929    (*CSC: siamo sicuri che le are_convertible non lavorino con termini non *)
1930    (*CSC: cucinati                                                         *)
1931    match l with
1932        [] -> hetype,ugraph
1933      | (hete, hety)::tl ->
1934          (match (CicReduction.whd ~subst context hetype) with 
1935               Cic.Prod (n,s,t) ->
1936                 let b,ugraph1 = 
1937                   CicReduction.are_convertible 
1938                     ~subst ~metasenv context hety s ugraph 
1939                 in      
1940                   if b then
1941                     begin
1942                       CicReduction.fdebug := -1 ;
1943                       eat_prods ~subst context 
1944                         (CicSubstitution.subst hete t) tl ugraph1
1945                         (*TASSI: not sure *)
1946                     end
1947                   else
1948                     begin
1949                       CicReduction.fdebug := 0 ;
1950                       ignore (CicReduction.are_convertible 
1951                                 ~subst ~metasenv context s hety ugraph) ;
1952                       fdebug := 0 ;
1953                       debug s [hety] ;
1954                       raise 
1955                         (TypeCheckerFailure 
1956                           (lazy (sprintf
1957                               ("Appl: wrong parameter-type, expected %s, found %s")
1958                               (CicPp.ppterm hetype) (CicPp.ppterm s))))
1959                     end
1960             | _ ->
1961                 raise (TypeCheckerFailure
1962                         (lazy "Appl: this is not a function, it cannot be applied"))
1963          )
1964
1965  and returns_a_coinductive ~subst context ty =
1966   let module C = Cic in
1967    match CicReduction.whd ~subst context ty with
1968       C.MutInd (uri,i,_) ->
1969        (*CSC: definire una funzioncina per questo codice sempre replicato *)
1970         let obj,_ =
1971           try
1972             CicEnvironment.get_cooked_obj ~trust:false CicUniv.empty_ugraph uri
1973           with Not_found -> assert false
1974         in
1975         (match obj with
1976            C.InductiveDefinition (itl,_,_,_) ->
1977             let (_,is_inductive,_,_) = List.nth itl i in
1978              if is_inductive then None else (Some uri)
1979          | _ ->
1980             raise (TypeCheckerFailure
1981               (lazy ("Unknown mutual inductive definition:" ^
1982               UriManager.string_of_uri uri)))
1983         )
1984     | C.Appl ((C.MutInd (uri,i,_))::_) ->
1985        (let o,_ = CicEnvironment.get_obj CicUniv.empty_ugraph uri in
1986          match o with
1987            C.InductiveDefinition (itl,_,_,_) ->
1988             let (_,is_inductive,_,_) = List.nth itl i in
1989              if is_inductive then None else (Some uri)
1990          | _ ->
1991             raise (TypeCheckerFailure
1992               (lazy ("Unknown mutual inductive definition:" ^
1993               UriManager.string_of_uri uri)))
1994         )
1995     | C.Prod (n,so,de) ->
1996        returns_a_coinductive ~subst ((Some (n,C.Decl so))::context) de
1997     | _ -> None
1998
1999  in
2000 (*CSC
2001 debug_print (lazy ("INIZIO TYPE_OF_AUX " ^ CicPp.ppterm t)) ; flush stderr ;
2002 let res =
2003 *)
2004   type_of_aux ~logger context t ugraph
2005 (*
2006 in debug_print (lazy "FINE TYPE_OF_AUX") ; flush stderr ; res
2007 *)
2008
2009 (* is a small constructor? *)
2010 (*CSC: ottimizzare calcolando staticamente *)
2011 and is_small_or_non_informative ~condition ~logger context paramsno c ugraph =
2012  let rec is_small_or_non_informative_aux ~logger context c ugraph =
2013   let module C = Cic in
2014    match CicReduction.whd context c with
2015       C.Prod (n,so,de) ->
2016        let s,ugraph1 = type_of_aux' ~logger [] context so ugraph in
2017        let b = condition s in
2018        if b then
2019          is_small_or_non_informative_aux
2020           ~logger ((Some (n,(C.Decl so)))::context) de ugraph1
2021        else 
2022          false,ugraph1
2023     | _ -> true,ugraph (*CSC: we trust the type-checker *)
2024  in
2025   let (context',dx) = split_prods ~subst:[] context paramsno c in
2026    is_small_or_non_informative_aux ~logger context' dx ugraph
2027
2028 and is_small ~logger =
2029  is_small_or_non_informative
2030   ~condition:(fun s -> s=Cic.Sort Cic.Prop || s=Cic.Sort Cic.Set)
2031   ~logger
2032
2033 and is_non_informative ~logger =
2034  is_small_or_non_informative
2035   ~condition:(fun s -> s=Cic.Sort Cic.Prop)
2036   ~logger
2037
2038 and type_of ~logger t ugraph =
2039 (*CSC
2040 debug_print (lazy ("INIZIO TYPE_OF_AUX' " ^ CicPp.ppterm t)) ; flush stderr ;
2041 let res =
2042 *)
2043  type_of_aux' ~logger [] [] t ugraph 
2044 (*CSC
2045 in debug_print (lazy "FINE TYPE_OF_AUX'") ; flush stderr ; res
2046 *)
2047 ;;
2048
2049 let typecheck_obj0 ~logger uri ugraph =
2050  let module C = Cic in
2051   function
2052      C.Constant (_,Some te,ty,_,_) ->
2053       let _,ugraph = type_of ~logger ty ugraph in
2054       let ty_te,ugraph = type_of ~logger te ugraph in
2055       let b,ugraph = (CicReduction.are_convertible [] ty_te ty ugraph) in
2056        if not b then
2057          raise (TypeCheckerFailure
2058           (lazy "the type of the body is not the one expected"))
2059        else
2060         ugraph
2061    | C.Constant (_,None,ty,_,_) ->
2062       (* only to check that ty is well-typed *)
2063       let _,ugraph = type_of ~logger ty ugraph in
2064        ugraph
2065    | C.CurrentProof (_,conjs,te,ty,_,_) ->
2066       let _,ugraph =
2067        List.fold_left
2068         (fun (metasenv,ugraph) ((_,context,ty) as conj) ->
2069           let _,ugraph = 
2070            type_of_aux' ~logger metasenv context ty ugraph 
2071           in
2072            metasenv @ [conj],ugraph
2073         ) ([],ugraph) conjs
2074       in
2075        let _,ugraph = type_of_aux' ~logger conjs [] ty ugraph in
2076        let type_of_te,ugraph = 
2077         type_of_aux' ~logger conjs [] te ugraph
2078        in
2079        let b,ugraph = CicReduction.are_convertible [] type_of_te ty ugraph in
2080         if not b then
2081           raise (TypeCheckerFailure (lazy (sprintf
2082            "the current proof is not well typed because the type %s of the body is not convertible to the declared type %s"
2083            (CicPp.ppterm type_of_te) (CicPp.ppterm ty))))
2084         else
2085          ugraph
2086    | C.Variable (_,bo,ty,_,_) ->
2087       (* only to check that ty is well-typed *)
2088       let _,ugraph = type_of ~logger ty ugraph in
2089        (match bo with
2090            None -> ugraph
2091          | Some bo ->
2092             let ty_bo,ugraph = type_of ~logger bo ugraph in
2093             let b,ugraph = CicReduction.are_convertible [] ty_bo ty ugraph in
2094              if not b then
2095               raise (TypeCheckerFailure
2096                (lazy "the body is not the one expected"))
2097              else
2098               ugraph
2099             )
2100    | (C.InductiveDefinition _ as obj) ->
2101       check_mutual_inductive_defs ~logger uri obj ugraph
2102
2103 let typecheck uri =
2104  let module C = Cic in
2105  let module R = CicReduction in
2106  let module U = UriManager in
2107  let logger = new CicLogger.logger in
2108    (* ??? match CicEnvironment.is_type_checked ~trust:true uri with ???? *)
2109    match CicEnvironment.is_type_checked ~trust:false CicUniv.empty_ugraph uri with
2110      CicEnvironment.CheckedObj (cobj,ugraph') -> 
2111        (* debug_print (lazy ("NON-INIZIO A TYPECHECKARE " ^ U.string_of_uri uri));*)
2112        cobj,ugraph'
2113    | CicEnvironment.UncheckedObj uobj ->
2114       (* let's typecheck the uncooked object *)
2115       logger#log (`Start_type_checking uri) ;
2116       (* debug_print (lazy ("INIZIO A TYPECHECKARE " ^ U.string_of_uri uri)); *)
2117       let ugraph = typecheck_obj0 ~logger uri CicUniv.empty_ugraph uobj in
2118         try
2119           CicEnvironment.set_type_checking_info uri;
2120           logger#log (`Type_checking_completed uri);
2121           match CicEnvironment.is_type_checked ~trust:false ugraph uri with
2122               CicEnvironment.CheckedObj (cobj,ugraph') -> cobj,ugraph'
2123             | _ -> raise CicEnvironmentError
2124         with
2125             (*
2126               this is raised if set_type_checking_info is called on an object
2127               that has no associated universe file. If we are in univ_maker 
2128               phase this is OK since univ_maker will properly commit the 
2129               object.
2130             *)
2131             Invalid_argument s -> 
2132               (*debug_print (lazy s);*)
2133               uobj,ugraph
2134 ;;
2135
2136 let typecheck_obj ~logger uri obj =
2137  let ugraph = typecheck_obj0 ~logger uri CicUniv.empty_ugraph obj in
2138  let ugraph, univlist, obj = CicUnivUtils.clean_and_fill uri obj ugraph in
2139   CicEnvironment.add_type_checked_obj uri (obj,ugraph,univlist)
2140
2141 (** wrappers which instantiate fresh loggers *)
2142
2143 let type_of_aux' ?(subst = []) metasenv context t ugraph =
2144   let logger = new CicLogger.logger in
2145   type_of_aux' ~logger ~subst metasenv context t ugraph
2146
2147 let typecheck_obj uri obj =
2148  let logger = new CicLogger.logger in
2149  typecheck_obj ~logger uri obj
2150
2151 (* check_allowed_sort_elimination uri i s1 s2
2152    This function is used outside the kernel to determine in advance whether
2153    a MutCase will be allowed or not.
2154    [uri,i] is the type of the term to match
2155    [s1] is the sort of the term to eliminate (i.e. the head of the arity
2156         of the inductive type [uri,i])
2157    [s2] is the sort of the goal (i.e. the head of the type of the outtype
2158         of the MutCase) *)
2159 let check_allowed_sort_elimination uri i s1 s2 =
2160  fst (check_allowed_sort_elimination ~subst:[] ~metasenv:[]
2161   ~logger:(new CicLogger.logger) [] uri i true
2162   (Cic.Implicit None) (* never used *) (Cic.Sort s1) (Cic.Sort s2)
2163   CicUniv.empty_ugraph)