]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicTypeChecker.ml
better error message
[helm.git] / helm / software / components / ng_kernel / nCicTypeChecker.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: nCicReduction.ml 8250 2008-03-25 17:56:20Z tassi $ *)
13
14 (* web interface stuff *)
15
16 let logger = 
17   ref (function (`Start_type_checking _|`Type_checking_completed _) -> ())
18 ;;
19
20 let set_logger f = logger := f;;
21
22 exception TypeCheckerFailure of string Lazy.t
23 exception AssertFailure of string Lazy.t
24
25 let shift_k e (c,rf,x,safes) =
26   e::c,List.map (fun (k,v) -> k+1,v) rf,x+1,List.map ((+)1) safes
27 ;;
28
29 (* $Id: cicTypeChecker.ml 8213 2008-03-13 18:48:26Z sacerdot $ *)
30
31
32
33 (*
34 (* the boolean h means already protected *)
35 (* args is the list of arguments the type of the constructor that may be *)
36 (* found in head position must be applied to.                            *)
37 and guarded_by_constructors ~subst context n nn h te args coInductiveTypeURI =
38  let module C = Cic in
39   (*CSC: There is a lot of code replication between the cases X and    *)
40   (*CSC: (C.Appl X tl). Maybe it will be better to define a function   *)
41   (*CSC: that maps X into (C.Appl X []) when X is not already a C.Appl *)
42   match CicReduction.whd ~subst context te with
43      C.Rel m when m > n && m <= nn -> h
44    | C.Rel _ -> true
45    | C.Meta _
46    | C.Sort _
47    | C.Implicit _
48    | C.Cast _
49    | C.Prod _
50    | C.LetIn _ ->
51       (* the term has just been type-checked *)
52       raise (AssertFailure (lazy "17"))
53    | C.Lambda (name,so,de) ->
54       does_not_occur ~subst context n nn so &&
55        guarded_by_constructors ~subst ((Some (name,(C.Decl so)))::context)
56         (n + 1) (nn + 1) h de args coInductiveTypeURI
57    | C.Appl ((C.Rel m)::tl) when m > n && m <= nn ->
58       h &&
59        List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) tl true
60    | C.Appl ((C.MutConstruct (uri,i,j,exp_named_subst))::tl) ->
61       let consty =
62         let obj,_ = 
63           try 
64             CicEnvironment.get_cooked_obj ~trust:false CicUniv.empty_ugraph uri
65           with Not_found -> assert false
66         in
67        match obj with
68           C.InductiveDefinition (itl,_,_,_) ->
69            let (_,_,_,cl) = List.nth itl i in
70             let (_,cons) = List.nth cl (j - 1) in
71              CicSubstitution.subst_vars exp_named_subst cons
72         | _ ->
73             raise (TypeCheckerFailure
74              (lazy ("Unknown mutual inductive definition:" ^ UriManager.string_of_uri uri)))
75       in
76        let rec analyse_branch context ty te =
77         match CicReduction.whd ~subst context ty with
78            C.Meta _ -> raise (AssertFailure (lazy "34"))
79          | C.Rel _
80          | C.Var _
81          | C.Sort _ ->
82             does_not_occur ~subst context n nn te
83          | C.Implicit _
84          | C.Cast _ ->
85             raise (AssertFailure (lazy "24"))(* due to type-checking *)
86          | C.Prod (name,so,de) ->
87             analyse_branch ((Some (name,(C.Decl so)))::context) de te
88          | C.Lambda _
89          | C.LetIn _ ->
90             raise (AssertFailure (lazy "25"))(* due to type-checking *)
91          | C.Appl ((C.MutInd (uri,_,_))::_) when uri == coInductiveTypeURI -> 
92              guarded_by_constructors ~subst context n nn true te []
93               coInductiveTypeURI
94          | C.Appl ((C.MutInd (uri,_,_))::_) -> 
95             guarded_by_constructors ~subst context n nn true te tl
96              coInductiveTypeURI
97          | C.Appl _ ->
98             does_not_occur ~subst context n nn te
99          | C.Const _ -> raise (AssertFailure (lazy "26"))
100          | C.MutInd (uri,_,_) when uri == coInductiveTypeURI ->
101             guarded_by_constructors ~subst context n nn true te []
102              coInductiveTypeURI
103          | C.MutInd _ ->
104             does_not_occur ~subst context n nn te
105          | C.MutConstruct _ -> raise (AssertFailure (lazy "27"))
106          (*CSC: we do not consider backbones with a MutCase, Fix, Cofix *)
107          (*CSC: in head position.                                       *)
108          | C.MutCase _
109          | C.Fix _
110          | C.CoFix _ ->
111             raise (AssertFailure (lazy "28"))(* due to type-checking *)
112        in
113        let rec analyse_instantiated_type context ty l =
114         match CicReduction.whd ~subst context ty with
115            C.Rel _
116          | C.Var _
117          | C.Meta _
118          | C.Sort _
119          | C.Implicit _
120          | C.Cast _ -> raise (AssertFailure (lazy "29"))(* due to type-checking *)
121          | C.Prod (name,so,de) ->
122             begin
123              match l with
124                 [] -> true
125               | he::tl ->
126                  analyse_branch context so he &&
127                   analyse_instantiated_type
128                    ((Some (name,(C.Decl so)))::context) de tl
129             end
130          | C.Lambda _
131          | C.LetIn _ ->
132             raise (AssertFailure (lazy "30"))(* due to type-checking *)
133          | C.Appl _ -> 
134             List.fold_left
135              (fun i x -> i && does_not_occur ~subst context n nn x) true l
136          | C.Const _ -> raise (AssertFailure (lazy "31"))
137          | C.MutInd _ ->
138             List.fold_left
139              (fun i x -> i && does_not_occur ~subst context n nn x) true l
140          | C.MutConstruct _ -> raise (AssertFailure (lazy "32"))
141          (*CSC: we do not consider backbones with a MutCase, Fix, Cofix *)
142          (*CSC: in head position.                                       *)
143          | C.MutCase _
144          | C.Fix _
145          | C.CoFix _ ->
146             raise (AssertFailure (lazy "33"))(* due to type-checking *)
147        in
148         let rec instantiate_type args consty =
149          function
150             [] -> true
151           | tlhe::tltl as l ->
152              let consty' = CicReduction.whd ~subst context consty in
153               match args with 
154                  he::tl ->
155                   begin
156                    match consty' with
157                       C.Prod (_,_,de) ->
158                        let instantiated_de = CicSubstitution.subst he de in
159                         (*CSC: siamo sicuri che non sia troppo forte? *)
160                         does_not_occur ~subst context n nn tlhe &
161                          instantiate_type tl instantiated_de tltl
162                     | _ ->
163                       (*CSC:We do not consider backbones with a MutCase, a    *)
164                       (*CSC:FixPoint, a CoFixPoint and so on in head position.*)
165                       raise (AssertFailure (lazy "23"))
166                   end
167                | [] -> analyse_instantiated_type context consty' l
168                   (* These are all the other cases *)
169        in
170         instantiate_type args consty tl
171    | C.Appl ((C.CoFix (_,fl))::tl) ->
172       List.fold_left (fun i x -> i && does_not_occur ~subst context n nn x) true tl &&
173        let len = List.length fl in
174         let n_plus_len = n + len
175         and nn_plus_len = nn + len
176         (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
177         and tys,_ =
178           List.fold_left
179             (fun (types,len) (n,ty,_) ->
180                (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
181                 len+1)
182             ) ([],0) fl
183         in
184          List.fold_right
185           (fun (_,ty,bo) i ->
186             i && does_not_occur ~subst context n nn ty &&
187              guarded_by_constructors ~subst (tys@context) n_plus_len nn_plus_len
188               h bo args coInductiveTypeURI
189           ) fl true
190    | C.Appl ((C.MutCase (_,_,out,te,pl))::tl) ->
191        List.fold_left (fun i x -> i && does_not_occur ~subst context n nn x) true tl &&
192         does_not_occur ~subst context n nn out &&
193          does_not_occur ~subst context n nn te &&
194           List.fold_right
195            (fun x i ->
196              i &&
197              guarded_by_constructors ~subst context n nn h x args
198               coInductiveTypeURI
199            ) pl true
200    | C.Appl l ->
201       List.fold_right (fun x i -> i && does_not_occur ~subst context n nn x) l true
202    | C.Var (_,exp_named_subst)
203    | C.Const (_,exp_named_subst) ->
204       List.fold_right
205        (fun (_,x) i -> i && does_not_occur ~subst context n nn x) exp_named_subst true
206    | C.MutInd _ -> assert false
207    | C.MutConstruct (_,_,_,exp_named_subst) ->
208       List.fold_right
209        (fun (_,x) i -> i && does_not_occur ~subst context n nn x) exp_named_subst true
210    | C.MutCase (_,_,out,te,pl) ->
211        does_not_occur ~subst context n nn out &&
212         does_not_occur ~subst context n nn te &&
213          List.fold_right
214           (fun x i ->
215             i &&
216              guarded_by_constructors ~subst context n nn h x args
217               coInductiveTypeURI
218           ) pl true
219    | C.Fix (_,fl) ->
220       let len = List.length fl in
221        let n_plus_len = n + len
222        and nn_plus_len = nn + len
223        (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
224        and tys,_ =
225         List.fold_left
226           (fun (types,len) (n,_,ty,_) ->
227              (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
228               len+1)
229           ) ([],0) fl
230        in
231         List.fold_right
232          (fun (_,_,ty,bo) i ->
233            i && does_not_occur ~subst context n nn ty &&
234             does_not_occur ~subst (tys@context) n_plus_len nn_plus_len bo
235          ) fl true
236    | C.CoFix (_,fl) ->
237       let len = List.length fl in
238        let n_plus_len = n + len
239        and nn_plus_len = nn + len
240        (*CSC: Is a Decl of the ty ok or should I use Def of a Fix? *)
241        and tys,_ =
242         List.fold_left
243           (fun (types,len) (n,ty,_) ->
244              (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
245               len+1)
246           ) ([],0) fl
247        in
248         List.fold_right
249          (fun (_,ty,bo) i ->
250            i && does_not_occur ~subst context n nn ty &&
251             guarded_by_constructors ~subst (tys@context) n_plus_len nn_plus_len
252              h bo
253              args coInductiveTypeURI
254          ) fl true
255
256  in
257   type_of_aux ~logger context t ugraph
258
259 ;;
260
261 (** wrappers which instantiate fresh loggers *)
262
263 (* check_allowed_sort_elimination uri i s1 s2
264    This function is used outside the kernel to determine in advance whether
265    a MutCase will be allowed or not.
266    [uri,i] is the type of the term to match
267    [s1] is the sort of the term to eliminate (i.e. the head of the arity
268         of the inductive type [uri,i])
269    [s2] is the sort of the goal (i.e. the head of the type of the outtype
270         of the MutCase) *)
271 let check_allowed_sort_elimination uri i s1 s2 =
272  fst (check_allowed_sort_elimination ~subst:[] ~metasenv:[]
273   ~logger:(new CicLogger.logger) [] uri i true
274   (Cic.Implicit None) (* never used *) (Cic.Sort s1) (Cic.Sort s2)
275   CicUniv.empty_ugraph)
276 ;;
277
278 Deannotate.type_of_aux' := fun context t -> fst (type_of_aux' [] context t CicUniv.oblivion_ugraph);;
279
280 *)
281
282 module C = NCic 
283 module R = NCicReduction
284 module Ref = NReference
285 module S = NCicSubstitution 
286 module U = NCicUtils
287 module E = NCicEnvironment
288
289 let rec split_prods ~subst context n te =
290   match (n, R.whd ~subst context te) with
291    | (0, _) -> context,te
292    | (n, C.Prod (name,so,ta)) when n > 0 ->
293        split_prods ~subst ((name,(C.Decl so))::context) (n - 1) ta
294    | (_, _) -> raise (AssertFailure (lazy "split_prods"))
295 ;;
296
297 let debruijn ?(cb=fun _ _ -> ()) uri number_of_types = 
298  let rec aux k t =
299   let res =
300    match t with
301     | C.Meta (i,(s,C.Ctx l)) ->
302        let l1 = NCicUtils.sharing_map (aux (k-s)) l in
303        if l1 == l then t else C.Meta (i,(s,C.Ctx l1))
304     | C.Meta _ -> t
305     | C.Const (Ref.Ref (_,uri1,(Ref.Fix (no,_) | Ref.CoFix no))) 
306     | C.Const (Ref.Ref (_,uri1,Ref.Ind no)) when NUri.eq uri uri1 ->
307        C.Rel (k + number_of_types - no)
308     | t -> NCicUtils.map (fun _ k -> k+1) k aux t
309   in
310    cb t res; res
311  in
312   aux 0
313 ;;
314
315 let sort_of_prod ~metasenv ~subst context (name,s) (t1, t2) =
316    let t1 = R.whd ~subst context t1 in
317    let t2 = R.whd ~subst ((name,C.Decl s)::context) t2 in
318    match t1, t2 with
319    | C.Sort s1, C.Sort C.Prop -> t2
320    | C.Sort (C.Type u1), C.Sort (C.Type u2) -> C.Sort (C.Type (max u1 u2)) 
321    | C.Sort _,C.Sort (C.Type _) -> t2
322    | C.Sort (C.Type _) , C.Sort C.CProp -> t1
323    | C.Sort _, C.Sort C.CProp -> t2
324    | C.Meta _, C.Sort _
325    | C.Meta _, C.Meta _
326    | C.Sort _, C.Meta _ when U.is_closed t2 -> t2
327    | _ -> 
328       raise (TypeCheckerFailure (lazy (Printf.sprintf
329         "Prod: expected two sorts, found = %s, %s" 
330          (NCicPp.ppterm ~subst ~metasenv ~context t1) 
331          (NCicPp.ppterm ~subst ~metasenv ~context t2))))
332 ;;
333
334 let eat_prods ~subst ~metasenv context he ty_he args_with_ty = 
335   let rec aux ty_he = function 
336   | [] -> ty_he
337   | (arg, ty_arg)::tl ->
338       match R.whd ~subst context ty_he with 
339       | C.Prod (n,s,t) ->
340 (*
341           prerr_endline (NCicPp.ppterm ~subst ~metasenv ~context s ^ " - Vs - "
342           ^ NCicPp.ppterm ~subst ~metasenv
343           ~context ty_arg);
344           prerr_endline (NCicPp.ppterm ~subst ~metasenv ~context (S.subst ~avoid_beta_redexes:true arg t));
345 *)
346           if R.are_convertible ~subst ~metasenv context ty_arg s then
347             aux (S.subst ~avoid_beta_redexes:true arg t) tl
348           else
349             raise 
350               (TypeCheckerFailure 
351                 (lazy (Printf.sprintf
352                   ("Appl: wrong application of %s: the parameter %s has type"^^
353                    "\n%s\nbut it should have type \n%s\n")
354                   (NCicPp.ppterm ~subst ~metasenv ~context he)
355                   (NCicPp.ppterm ~subst ~metasenv ~context arg)
356                   (NCicPp.ppterm ~subst ~metasenv ~context ty_arg)
357                   (NCicPp.ppterm ~subst ~metasenv ~context s))))
358        | _ ->
359           raise 
360             (TypeCheckerFailure
361               (lazy (Printf.sprintf
362                 "Appl: %s is not a function, it cannot be applied"
363                 (NCicPp.ppterm ~subst ~metasenv ~context
364                  (let res = List.length tl in
365                   let eaten = List.length args_with_ty - res in
366                    (NCic.Appl
367                     (he::List.map fst
368                      (fst (HExtlib.split_nth eaten args_with_ty)))))))))
369   in
370     aux ty_he args_with_ty
371 ;;
372
373 let fix_lefts_in_constrs ~subst uri paramsno tyl i =
374   let len = List.length tyl in
375   let _,_,arity,cl = List.nth tyl i in
376   let tys = List.map (fun (_,n,ty,_) -> n,C.Decl ty) tyl in
377   let cl' =
378    List.map
379     (fun (_,id,ty) ->
380       let debruijnedty = debruijn uri len ty in
381       id, snd (split_prods ~subst tys paramsno ty),
382        snd (split_prods ~subst tys paramsno debruijnedty))
383     cl 
384   in
385   let lefts = fst (split_prods ~subst [] paramsno arity) in
386   lefts@tys, len, cl'
387 ;;
388
389 exception DoesOccur;;
390
391 let does_not_occur ~subst context n nn t = 
392   let rec aux (context,n,nn as k) _ = function
393     | C.Rel m when m > n && m <= nn -> raise DoesOccur
394     | C.Rel m ->
395         (try (match List.nth context (m-1) with
396           | _,C.Def (bo,_) -> aux k () (S.lift m bo)
397           | _ -> ())
398          with Failure _ -> assert false)
399     | C.Meta (_,(_,(C.Irl 0 | C.Ctx []))) -> (* closed meta *) ()
400     | C.Meta (mno,(s,l)) ->
401          (try
402            let _,_,term,_ = U.lookup_subst mno subst in
403            aux (context,n+s,nn+s) () (S.subst_meta (0,l) term)
404           with CicUtil.Subst_not_found _ -> match l with
405           | C.Irl len -> if not (n >= s+len || s > nn) then raise DoesOccur
406           | C.Ctx lc -> List.iter (aux (context,n+s,nn+s) ()) lc)
407     | t -> U.fold (fun e (ctx,n,nn) -> (e::ctx,n+1,nn+1)) k aux () t
408   in
409    try aux (context,n,nn) () t; true
410    with DoesOccur -> false
411 ;;
412
413 (*CSC l'indice x dei tipi induttivi e' t.c. n < x <= nn *)
414 (*CSC questa funzione e' simile alla are_all_occurrences_positive, ma fa *)
415 (*CSC dei controlli leggermente diversi. Viene invocata solamente dalla  *)
416 (*CSC strictly_positive                                                  *)
417 (*CSC definizione (giusta???) tratta dalla mail di Hugo ;-)              *)
418 let rec weakly_positive ~subst context n nn uri te =
419 (*CSC: Che schifo! Bisogna capire meglio e trovare una soluzione ragionevole!*)
420   let dummy_mutind = C.Implicit `Hole in
421   (*CSC: mettere in cicSubstitution *)
422   let rec subst_inductive_type_with_dummy_mutind _ = function
423     | C.Const (Ref.Ref (_,uri',Ref.Ind 0)) when NUri.eq uri' uri -> dummy_mutind
424     | C.Appl ((C.Const (Ref.Ref (_,uri',Ref.Ind 0)))::tl) when NUri.eq uri' uri ->
425        dummy_mutind
426     | t -> U.map (fun _ x->x) () subst_inductive_type_with_dummy_mutind t
427   in
428   match R.whd context te with
429    | C.Const (Ref.Ref (_,uri',Ref.Ind _))
430    | C.Appl ((C.Const (Ref.Ref (_,uri',Ref.Ind _)))::_) when NUri.eq uri' uri -> true
431    | C.Prod (name,source,dest) when
432       does_not_occur ~subst ((name,C.Decl source)::context) 0 1 dest ->
433        (* dummy abstraction, so we behave as in the anonimous case *)
434        strictly_positive ~subst context n nn
435         (subst_inductive_type_with_dummy_mutind () source) &&
436          weakly_positive ~subst ((name,C.Decl source)::context)
437          (n + 1) (nn + 1) uri dest
438    | C.Prod (name,source,dest) ->
439        does_not_occur ~subst context n nn
440          (subst_inductive_type_with_dummy_mutind () source)&&
441          weakly_positive ~subst ((name,C.Decl source)::context)
442          (n + 1) (nn + 1) uri dest
443    | _ ->
444      raise (TypeCheckerFailure (lazy "Malformed inductive constructor type"))
445
446 (* instantiate_parameters ps (x1:T1)...(xn:Tn)C                             *)
447 (* returns ((x_|ps|:T_|ps|)...(xn:Tn)C){ps_1 / x1 ; ... ; ps_|ps| / x_|ps|} *)
448 and instantiate_parameters params c =
449   match c, params with
450   | c,[] -> c
451   | C.Prod (_,_,ta), he::tl -> instantiate_parameters tl (S.subst he ta)
452   | t,l -> raise (AssertFailure (lazy "1"))
453
454 and strictly_positive ~subst context n nn te =
455   match R.whd context te with
456    | t when does_not_occur ~subst context n nn t -> true
457    | C.Rel _ -> true
458    | C.Prod (name,so,ta) ->
459       does_not_occur ~subst context n nn so &&
460        strictly_positive ~subst ((name,C.Decl so)::context) (n+1) (nn+1) ta
461    | C.Appl ((C.Rel m)::tl) when m > n && m <= nn ->
462       List.for_all (does_not_occur ~subst context n nn) tl
463    | C.Appl (C.Const (Ref.Ref (_,uri,Ref.Ind i) as r)::tl) -> 
464       let _,paramsno,tyl,_,i = E.get_checked_indtys r in
465       let _,name,ity,cl = List.nth tyl i in
466       let ok = List.length tyl = 1 in
467       let params, arguments = HExtlib.split_nth paramsno tl in
468       let lifted_params = List.map (S.lift 1) params in
469       let cl =
470         List.map (fun (_,_,te) -> instantiate_parameters lifted_params te) cl 
471       in
472       ok &&
473       List.for_all (does_not_occur ~subst context n nn) arguments &&
474       List.for_all 
475         (weakly_positive ~subst ((name,C.Decl ity)::context) (n+1) (nn+1) uri) cl
476    | _ -> false
477        
478 (* the inductive type indexes are s.t. n < x <= nn *)
479 and are_all_occurrences_positive ~subst context uri indparamsno i n nn te =
480   match R.whd context te with
481   |  C.Appl ((C.Rel m)::tl) as reduct when m = i ->
482       let last =
483        List.fold_left
484         (fun k x ->
485           if k = 0 then 0
486           else
487            match R.whd context x with
488            |  C.Rel m when m = n - (indparamsno - k) -> k - 1
489            | y -> raise (TypeCheckerFailure (lazy 
490               ("Argument "^string_of_int (indparamsno - k + 1) ^ " (of " ^
491               string_of_int indparamsno ^ " fixed) is not homogeneous in "^
492               "appl:\n"^ NCicPp.ppterm ~context ~subst ~metasenv:[] reduct))))
493         indparamsno tl
494       in
495        if last = 0 then
496         List.for_all (does_not_occur ~subst context n nn) tl
497        else
498         raise (TypeCheckerFailure
499          (lazy ("Non-positive occurence in mutual inductive definition(s) [2]"^
500           NUri.string_of_uri uri)))
501   | C.Rel m when m = i ->
502       if indparamsno = 0 then
503        true
504       else
505         raise (TypeCheckerFailure
506          (lazy ("Non-positive occurence in mutual inductive definition(s) [3]"^
507           NUri.string_of_uri uri)))
508   | C.Prod (name,source,dest) when
509       does_not_occur ~subst ((name,C.Decl source)::context) 0 1 dest ->
510       strictly_positive ~subst context n nn source &&
511        are_all_occurrences_positive ~subst 
512         ((name,C.Decl source)::context) uri indparamsno
513         (i+1) (n + 1) (nn + 1) dest
514    | C.Prod (name,source,dest) ->
515        if not (does_not_occur ~subst context n nn source) then
516          raise (TypeCheckerFailure (lazy ("Non-positive occurrence in "^
517          NCicPp.ppterm ~context ~metasenv:[] ~subst te)));
518        are_all_occurrences_positive ~subst ((name,C.Decl source)::context)
519         uri indparamsno (i+1) (n + 1) (nn + 1) dest
520    | _ ->
521      raise
522       (TypeCheckerFailure (lazy ("Malformed inductive constructor type " ^
523         (NUri.string_of_uri uri))))
524 ;;
525
526 exception NotGuarded of string Lazy.t;;
527
528 let rec typeof ~subst ~metasenv context term =
529   let rec typeof_aux context = 
530     fun t -> (*prerr_endline (NCicPp.ppterm ~context t); *)
531     match t with
532     | C.Rel n ->
533        (try
534          match List.nth context (n - 1) with
535          | (_,C.Decl ty) -> S.lift n ty
536          | (_,C.Def (_,ty)) -> S.lift n ty
537         with Failure _ -> raise (TypeCheckerFailure (lazy "unbound variable")))
538     | C.Sort (C.Type i) -> C.Sort (C.Type (i+1))
539     | C.Sort s -> C.Sort (C.Type 0)
540     | C.Implicit _ -> raise (AssertFailure (lazy "Implicit found"))
541     | C.Meta (n,l) as t -> 
542        let canonical_ctx,ty =
543         try
544          let _,c,_,ty = U.lookup_subst n subst in c,ty
545         with U.Subst_not_found _ -> try
546          let _,_,c,ty = U.lookup_meta n metasenv in c,ty
547         with U.Meta_not_found _ ->
548          raise (AssertFailure (lazy (Printf.sprintf
549           "%s not found" (NCicPp.ppterm ~subst ~metasenv ~context t))))
550        in
551         check_metasenv_consistency t ~subst ~metasenv context canonical_ctx l;
552         S.subst_meta l ty
553     | C.Const ref -> type_of_constant ref
554     | C.Prod (name,s,t) ->
555        let sort1 = typeof_aux context s in
556        let sort2 = typeof_aux ((name,(C.Decl s))::context) t in
557        sort_of_prod ~metasenv ~subst context (name,s) (sort1,sort2)
558     | C.Lambda (n,s,t) ->
559        let sort = typeof_aux context s in
560        (match R.whd ~subst context sort with
561        | C.Meta _ | C.Sort _ -> ()
562        | _ ->
563          raise
564            (TypeCheckerFailure (lazy (Printf.sprintf
565              ("Not well-typed lambda-abstraction: " ^^
566              "the source %s should be a type; instead it is a term " ^^ 
567              "of type %s") (NCicPp.ppterm ~subst ~metasenv ~context s)
568              (NCicPp.ppterm ~subst ~metasenv ~context sort)))));
569        let ty = typeof_aux ((n,(C.Decl s))::context) t in
570          C.Prod (n,s,ty)
571     | C.LetIn (n,ty,t,bo) ->
572        let ty_t = typeof_aux context t in
573        let _ = typeof_aux context ty in
574        if not (R.are_convertible ~subst ~metasenv context ty ty_t) then
575          raise 
576           (TypeCheckerFailure 
577             (lazy (Printf.sprintf
578               "The type of %s is %s but it is expected to be %s" 
579                 (NCicPp.ppterm ~subst ~metasenv ~context t) 
580                 (NCicPp.ppterm ~subst ~metasenv ~context ty_t) 
581                 (NCicPp.ppterm ~subst ~metasenv ~context ty))))
582        else
583          let ty_bo = typeof_aux  ((n,C.Def (t,ty))::context) bo in
584          S.subst ~avoid_beta_redexes:true t ty_bo
585     | C.Appl (he::(_::_ as args)) ->
586        let ty_he = typeof_aux context he in
587        let args_with_ty = List.map (fun t -> t, typeof_aux context t) args in
588 (*
589        prerr_endline ("HEAD: " ^ NCicPp.ppterm ~subst ~metasenv ~context ty_he);
590        prerr_endline ("TARGS: " ^ String.concat " | " (List.map (NCicPp.ppterm
591        ~subst ~metasenv ~context) (List.map snd args_with_ty)));
592        prerr_endline ("ARGS: " ^ String.concat " | " (List.map (NCicPp.ppterm
593        ~subst ~metasenv ~context) (List.map fst args_with_ty)));
594 *)
595        eat_prods ~subst ~metasenv context he ty_he args_with_ty
596    | C.Appl _ -> raise (AssertFailure (lazy "Appl of length < 2"))
597    | C.Match (Ref.Ref (_,_,Ref.Ind tyno) as r,outtype,term,pl) ->
598       let outsort = typeof_aux context outtype in
599       let inductive,leftno,itl,_,_ = E.get_checked_indtys r in
600       let constructorsno =
601         let _,_,_,cl = List.nth itl tyno in List.length cl
602       in
603       let parameters, arguments =
604         let ty = R.whd ~subst context (typeof_aux context term) in
605         let r',tl =
606          match ty with
607             C.Const (Ref.Ref (_,_,Ref.Ind _) as r') -> r',[]
608           | C.Appl (C.Const (Ref.Ref (_,_,Ref.Ind _) as r') :: tl) -> r',tl
609           | _ ->
610              raise 
611                (TypeCheckerFailure (lazy (Printf.sprintf
612                  "Case analysis: analysed term %s is not an inductive one"
613                  (NCicPp.ppterm ~subst ~metasenv ~context term)))) in
614         if not (Ref.eq r r') then
615          raise
616           (TypeCheckerFailure (lazy (Printf.sprintf
617             ("Case analysys: analysed term type is %s, but is expected " ^^
618              "to be (an application of) %s")
619             (NCicPp.ppterm ~subst ~metasenv ~context ty) 
620             (NCicPp.ppterm ~subst ~metasenv ~context (C.Const r')))))
621         else
622          try HExtlib.split_nth leftno tl
623          with
624           Failure _ ->
625            raise (TypeCheckerFailure (lazy (Printf.sprintf 
626            "%s is partially applied" 
627            (NCicPp.ppterm  ~subst ~metasenv ~context ty)))) in
628       (* let's control if the sort elimination is allowed: [(I q1 ... qr)|B] *)
629       let sort_of_ind_type =
630         if parameters = [] then C.Const r
631         else C.Appl ((C.Const r)::parameters) in
632       let type_of_sort_of_ind_ty = typeof_aux context sort_of_ind_type in
633       check_allowed_sort_elimination ~subst ~metasenv r context
634        sort_of_ind_type type_of_sort_of_ind_ty outsort;
635       (* let's check if the type of branches are right *)
636       if List.length pl <> constructorsno then
637        raise (TypeCheckerFailure (lazy ("Wrong number of cases in a match")));
638       let j,branches_ok,p_ty, exp_p_ty =
639         List.fold_left
640           (fun (j,b,old_p_ty,old_exp_p_ty) p ->
641             if b then
642               let cons = 
643                 let cons = Ref.mk_constructor j r in
644                 if parameters = [] then C.Const cons
645                 else C.Appl (C.Const cons::parameters)
646               in
647               let ty_p = typeof_aux context p in
648               let ty_cons = typeof_aux context cons in
649               let ty_branch = 
650                 type_of_branch ~subst context leftno outtype cons ty_cons 0 
651               in
652               j+1, R.are_convertible ~subst ~metasenv context ty_p ty_branch,
653               ty_p, ty_branch
654             else
655               j,false,old_p_ty,old_exp_p_ty
656           ) (1,true,C.Sort C.Prop,C.Sort C.Prop) pl
657       in
658       if not branches_ok then
659         raise
660          (TypeCheckerFailure 
661           (lazy (Printf.sprintf ("Branch for constructor %s :=\n%s\n"^^
662           "has type %s\nnot convertible with %s") 
663           (NCicPp.ppterm  ~subst ~metasenv ~context
664             (C.Const (Ref.mk_constructor (j-1) r)))
665           (NCicPp.ppterm ~metasenv ~subst ~context (List.nth pl (j-2)))
666           (NCicPp.ppterm ~metasenv ~subst ~context p_ty) 
667           (NCicPp.ppterm ~metasenv ~subst ~context exp_p_ty)))); 
668       let res = outtype::arguments@[term] in
669       R.head_beta_reduce (C.Appl res)
670     | C.Match _ -> assert false
671
672   and type_of_branch ~subst context leftno outty cons tycons liftno = 
673     match R.whd ~subst context tycons with
674     | C.Const (Ref.Ref (_,_,Ref.Ind _)) -> C.Appl [S.lift liftno outty ; cons]
675     | C.Appl (C.Const (Ref.Ref (_,_,Ref.Ind _))::tl) ->
676         let _,arguments = HExtlib.split_nth leftno tl in
677         C.Appl (S.lift liftno outty::arguments@[cons])
678     | C.Prod (name,so,de) ->
679         let cons =
680          match S.lift 1 cons with
681          | C.Appl l -> C.Appl (l@[C.Rel 1])
682          | t -> C.Appl [t ; C.Rel 1]
683         in
684          C.Prod (name,so,
685            type_of_branch ~subst ((name,(C.Decl so))::context) 
686             leftno outty cons de (liftno+1))
687     | _ -> raise (AssertFailure (lazy "type_of_branch"))
688
689   (* check_metasenv_consistency checks that the "canonical" context of a
690      metavariable is consitent - up to relocation via the relocation list l -
691      with the actual context *)
692   and check_metasenv_consistency 
693     ~subst ~metasenv term context canonical_context l 
694   =
695    match l with
696     | shift, NCic.Irl n ->
697        let context = snd (HExtlib.split_nth shift context) in
698         let rec compare = function
699          | 0,_,[] -> ()
700          | 0,_,_::_
701          | _,_,[] ->
702             raise (AssertFailure (lazy (Printf.sprintf
703              "Local and canonical context %s have different lengths"
704              (NCicPp.ppterm ~subst ~context ~metasenv term))))
705          | m,[],_::_ ->
706             raise (TypeCheckerFailure (lazy (Printf.sprintf
707              "Unbound variable -%d in %s" m 
708              (NCicPp.ppterm ~subst ~metasenv ~context term))))
709          | m,t::tl,ct::ctl ->
710             (match t,ct with
711                 (_,C.Decl t1), (_,C.Decl t2)
712               | (_,C.Def (t1,_)), (_,C.Def (t2,_))
713               | (_,C.Def (_,t1)), (_,C.Decl t2) ->
714                  if not (R.are_convertible ~subst ~metasenv tl t1 t2) then
715                   raise 
716                       (TypeCheckerFailure 
717                         (lazy (Printf.sprintf 
718                       ("Not well typed metavariable local context for %s: " ^^ 
719                        "%s expected, which is not convertible with %s")
720                       (NCicPp.ppterm ~subst ~metasenv ~context term) 
721                       (NCicPp.ppterm ~subst ~metasenv ~context t2) 
722                       (NCicPp.ppterm ~subst ~metasenv ~context t1))))
723               | _,_ ->
724                raise 
725                    (TypeCheckerFailure (lazy (Printf.sprintf 
726                     ("Not well typed metavariable local context for %s: " ^^ 
727                      "a definition expected, but a declaration found")
728                     (NCicPp.ppterm ~subst ~metasenv ~context term)))));
729             compare (m - 1,tl,ctl)
730         in
731          compare (n,context,canonical_context)
732     | shift, lc_kind ->
733        (* we avoid useless lifting by shortening the context*)
734        let l,context = (0,lc_kind), snd (HExtlib.split_nth shift context) in
735        let lifted_canonical_context = 
736          let rec lift_metas i = function
737            | [] -> []
738            | (n,C.Decl t)::tl ->
739                (n,C.Decl (S.subst_meta l (S.lift i t)))::(lift_metas (i+1) tl)
740            | (n,C.Def (t,ty))::tl ->
741                (n,C.Def ((S.subst_meta l (S.lift i t)),
742                           S.subst_meta l (S.lift i ty)))::(lift_metas (i+1) tl)
743          in
744           lift_metas 1 canonical_context in
745        let l = U.expand_local_context lc_kind in
746        try
747         List.iter2 
748         (fun t ct -> 
749           match (t,ct) with
750           | t, (_,C.Def (ct,_)) ->
751              (*CSC: the following optimization is to avoid a possibly expensive
752                     reduction that can be easily avoided and that is quite
753                     frequent. However, this is better handled using levels to
754                     control reduction *)
755              let optimized_t =
756               match t with
757               | C.Rel n ->
758                   (try
759                     match List.nth context (n - 1) with
760                     | (_,C.Def (te,_)) -> S.lift n te
761                     | _ -> t
762                     with Failure _ -> t)
763               | _ -> t
764              in
765              if not (R.are_convertible ~subst ~metasenv context optimized_t ct)
766              then
767                raise 
768                  (TypeCheckerFailure 
769                    (lazy (Printf.sprintf 
770                      ("Not well typed metavariable local context: " ^^ 
771                       "expected a term convertible with %s, found %s")
772                      (NCicPp.ppterm ~subst ~metasenv ~context ct) 
773                      (NCicPp.ppterm ~subst ~metasenv ~context t))))
774           | t, (_,C.Decl ct) ->
775               let type_t = typeof_aux context t in
776               if not (R.are_convertible ~subst ~metasenv context type_t ct) then
777                 raise (TypeCheckerFailure 
778                  (lazy (Printf.sprintf 
779                   ("Not well typed metavariable local context: "^^
780                   "expected a term of type %s, found %s of type %s") 
781                   (NCicPp.ppterm ~subst ~metasenv ~context ct) 
782                   (NCicPp.ppterm ~subst ~metasenv ~context t) 
783                   (NCicPp.ppterm ~subst ~metasenv ~context type_t))))
784         ) l lifted_canonical_context 
785        with
786         Invalid_argument _ ->
787           raise (AssertFailure (lazy (Printf.sprintf
788            "Local and canonical context %s have different lengths"
789            (NCicPp.ppterm ~subst ~metasenv ~context term))))
790
791   and is_non_informative context paramsno c =
792    let rec aux context c =
793      match R.whd context c with
794       | C.Prod (n,so,de) ->
795          let s = typeof_aux context so in
796          s = C.Sort C.Prop && aux ((n,(C.Decl so))::context) de
797       | _ -> true in
798    let context',dx = split_prods ~subst:[] context paramsno c in
799     aux context' dx
800
801   and check_allowed_sort_elimination ~subst ~metasenv r =
802    let mkapp he arg =
803      match he with
804      | C.Appl l -> C.Appl (l @ [arg])
805      | t -> C.Appl [t;arg] in
806    let rec aux context ind arity1 arity2 =
807     let arity1 = R.whd ~subst context arity1 in
808     let arity2 = R.whd ~subst context arity2 in
809       match arity1,arity2 with
810        | C.Prod (name,so1,de1), C.Prod (_,so2,de2) ->
811           if not (R.are_convertible ~subst ~metasenv context so1 so2) then
812            raise (TypeCheckerFailure (lazy (Printf.sprintf
813             "In outtype: expected %s, found %s"
814             (NCicPp.ppterm ~subst ~metasenv ~context so1)
815             (NCicPp.ppterm ~subst ~metasenv ~context so2)
816             )));
817           aux ((name, C.Decl so1)::context)
818            (mkapp (S.lift 1 ind) (C.Rel 1)) de1 de2
819        | C.Sort _, C.Prod (name,so,ta) ->
820           if not (R.are_convertible ~subst ~metasenv context so ind) then
821            raise (TypeCheckerFailure (lazy (Printf.sprintf
822             "In outtype: expected %s, found %s"
823             (NCicPp.ppterm ~subst ~metasenv ~context ind)
824             (NCicPp.ppterm ~subst ~metasenv ~context so)
825             )));
826           (match arity1,ta with
827             | (C.Sort (C.CProp | C.Type _), C.Sort _)
828             | (C.Sort C.Prop, C.Sort C.Prop) -> ()
829             | (C.Sort C.Prop, C.Sort (C.CProp | C.Type _)) ->
830         (* TODO: we should pass all these parameters since we
831          * have them already *)
832                 let inductive,leftno,itl,_,i = E.get_checked_indtys r in
833                 let itl_len = List.length itl in
834                 let _,name,ty,cl = List.nth itl i in
835                 let cl_len = List.length cl in
836                  (* is it a singleton or empty non recursive and non informative
837                     definition? *)
838                  if not
839                   (cl_len = 0 ||
840                    (itl_len = 1 && cl_len = 1 &&
841                     is_non_informative [name,C.Decl ty] leftno
842                      (let _,_,x = List.nth cl 0 in x)))
843                  then
844                   raise (TypeCheckerFailure (lazy
845                    ("Sort elimination not allowed")));
846           | _,_ -> ())
847        | _,_ -> ()
848    in
849     aux 
850
851  in 
852    typeof_aux context term
853
854 and check_mutual_inductive_defs uri ~metasenv ~subst is_ind leftno tyl = 
855   (* let's check if the arity of the inductive types are well formed *)
856   List.iter (fun (_,_,x,_) -> ignore (typeof ~subst ~metasenv [] x)) tyl;
857   (* let's check if the types of the inductive constructors are well formed. *)
858   let len = List.length tyl in
859   let tys = List.rev (List.map (fun (_,n,ty,_) -> (n,(C.Decl ty))) tyl) in
860   ignore
861    (List.fold_right
862     (fun (_,_,_,cl) i ->
863        List.iter
864          (fun (_,name,te) -> 
865            let debruijnedte = debruijn uri len te in
866            ignore (typeof ~subst ~metasenv tys debruijnedte);
867            (* let's check also the positivity conditions *)
868            if 
869              not
870                (are_all_occurrences_positive ~subst tys uri leftno i 0 len
871                   debruijnedte) 
872            then
873              raise
874                (TypeCheckerFailure
875                  (lazy ("Non positive occurence in "^NUri.string_of_uri uri))))
876          cl;
877         i + 1)
878     tyl 1)
879
880 and eat_lambdas ~subst ~metasenv context n te =
881   match (n, R.whd ~subst context te) with
882   | (0, _) -> (te, context)
883   | (n, C.Lambda (name,so,ta)) when n > 0 ->
884       eat_lambdas ~subst ~metasenv ((name,(C.Decl so))::context) (n - 1) ta
885    | (n, te) ->
886       raise (AssertFailure (lazy (Printf.sprintf "9 (%d, %s)" n 
887         (NCicPp.ppterm ~subst ~metasenv ~context te))))
888
889 and guarded_by_destructors ~subst ~metasenv context recfuns t = 
890  let recursor f k t = NCicUtils.fold shift_k k (fun k () -> f k) () t in
891  let rec aux (context, recfuns, x, safes as k) = function
892   | C.Rel m as t when List.mem_assoc m recfuns -> 
893       raise (NotGuarded (lazy 
894         (NCicPp.ppterm ~subst ~metasenv ~context t ^ " passed around")))
895   | C.Rel m ->
896      (match List.nth context (m-1) with 
897      | _,C.Decl _ -> ()
898      | _,C.Def (bo,_) -> aux (context, recfuns, x, safes) (S.lift m bo))
899   | C.Meta _ -> ()
900   | C.Appl ((C.Rel m)::tl) as t when List.mem_assoc m recfuns ->
901      let rec_no = List.assoc m recfuns in
902      if not (List.length tl > rec_no) then 
903        raise (NotGuarded (lazy 
904          (NCicPp.ppterm ~context ~subst ~metasenv t ^ 
905          " is a partial application of a fix")))
906      else
907        let rec_arg = List.nth tl rec_no in
908        if not (is_really_smaller ~subst ~metasenv k rec_arg) then 
909          raise (NotGuarded (lazy 
910            (NCicPp.ppterm ~context ~subst ~metasenv rec_arg ^ " not smaller")));
911        List.iter (aux k) tl
912   | C.Match (Ref.Ref (_,uri,_) as ref,outtype,term,pl) as t ->
913      (match R.whd ~subst context term with
914      | C.Rel m | C.Appl (C.Rel m :: _ ) as t when List.mem m safes || m = x ->
915         let isinductive, paramsno, tl, _, i = E.get_checked_indtys ref in
916         if not isinductive then recursor aux k t
917         else
918          let c_ctx,len,cl = fix_lefts_in_constrs ~subst uri paramsno tl i in
919          let args = match t with C.Appl (_::tl) -> tl | _ -> [] in
920          aux k outtype; 
921          List.iter (aux k) args; 
922          List.iter2
923            (fun p (_,_,bruijnedc) ->
924              let rl = recursive_args ~subst ~metasenv c_ctx 0 len bruijnedc in
925              let p, k = get_new_safes ~subst k p rl in
926              aux k p) 
927            pl cl
928      | _ -> recursor aux k t)
929   | t -> recursor aux k t
930  in
931   try aux (context, recfuns, 1, []) t
932   with NotGuarded s -> raise (TypeCheckerFailure s)
933
934 (*
935  | C.Fix (_, fl) ->
936     let len = List.length fl in
937      let n_plus_len = n + len
938      and nn_plus_len = nn + len
939      and x_plus_len = x + len
940      and tys,_ =
941       List.fold_left
942         (fun (types,len) (n,_,ty,_) ->
943            (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
944             len+1)
945         ) ([],0) fl
946      and safes' = List.map (fun x -> x + len) safes in
947       List.fold_right
948        (fun (_,_,ty,bo) i ->
949          i && guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
950           guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
951            x_plus_len safes' bo
952        ) fl true
953  | C.CoFix (_, fl) ->
954     let len = List.length fl in
955      let n_plus_len = n + len
956      and nn_plus_len = nn + len
957      and x_plus_len = x + len
958      and tys,_ =
959       List.fold_left
960         (fun (types,len) (n,ty,_) ->
961            (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
962             len+1)
963         ) ([],0) fl
964      and safes' = List.map (fun x -> x + len) safes in
965       List.fold_right
966        (fun (_,ty,bo) i ->
967          i &&
968           guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
969           guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
970            x_plus_len safes' bo
971        ) fl true
972 *)
973
974 and guarded_by_constructors ~subst ~metasenv _ _ _ _ _ _ _ = true
975
976 and recursive_args ~subst ~metasenv context n nn te =
977   match R.whd context te with
978   | C.Rel _ | C.Appl _ -> []
979   | C.Prod (name,so,de) ->
980      (not (does_not_occur ~subst context n nn so)) ::
981       (recursive_args ~subst ~metasenv 
982         ((name,(C.Decl so))::context) (n+1) (nn + 1) de)
983   | t -> 
984      raise (AssertFailure (lazy ("recursive_args:" ^ NCicPp.ppterm ~subst
985      ~metasenv ~context:[] t)))
986
987 and get_new_safes ~subst (context, recfuns, x, safes as k) p rl =
988   match R.whd ~subst context p, rl with
989   | C.Lambda (name,so,ta), b::tl ->
990       let safes = (if b then [0] else []) @ safes in
991       get_new_safes ~subst 
992         (shift_k (name,(C.Decl so)) (context, recfuns, x, safes)) ta tl
993   | C.Meta _ as e, _ | e, [] -> e, k
994   | _ -> raise (AssertFailure (lazy "Ill formed pattern"))
995
996 and split_prods ~subst context n te =
997   match n, R.whd ~subst context te with
998   | 0, _ -> context,te
999   | n, C.Prod (name,so,ta) when n > 0 ->
1000        split_prods ~subst ((name,(C.Decl so))::context) (n - 1) ta
1001   | _ -> raise (AssertFailure (lazy "split_prods"))
1002
1003 and is_really_smaller ~subst ~metasenv (context, recfuns, x, safes as k) te =
1004  match R.whd ~subst context te with
1005  | C.Rel m when List.mem m safes -> true
1006  | C.Rel _ -> false
1007  | C.LetIn _ -> raise (AssertFailure (lazy "letin after whd"))
1008  | C.Sort _ | C.Implicit _ | C.Prod _ | C.Lambda _ 
1009  | C.Const (Ref.Ref (_,_,(Ref.Decl | Ref.Def | Ref.Ind _ | Ref.CoFix _))) ->
1010     raise (AssertFailure (lazy "not a constructor"))
1011  | C.Appl ([]|[_]) -> raise (AssertFailure (lazy "empty/unary appl"))
1012  | C.Appl (he::_) ->
1013     (*CSC: sulla coda ci vogliono dei controlli? secondo noi no, ma *)
1014     (*CSC: solo perche' non abbiamo trovato controesempi            *)
1015     (*TASSI: da capire soprattutto se he รจ un altro fix che non ha ridotto...*)
1016     is_really_smaller ~subst ~metasenv k he
1017  | C.Const (Ref.Ref (_,_,Ref.Con _)) -> false
1018  | C.Const (Ref.Ref (_,_,Ref.Fix _)) -> assert false
1019    (*| C.Fix (_, fl) ->
1020       let len = List.length fl in
1021        let n_plus_len = n + len
1022        and nn_plus_len = nn + len
1023        and x_plus_len = x + len
1024        and tys,_ =
1025         List.fold_left
1026           (fun (types,len) (n,_,ty,_) ->
1027              (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
1028               len+1)
1029           ) ([],0) fl
1030        and safes' = List.map (fun x -> x + len) safes in
1031         List.fold_right
1032          (fun (_,_,ty,bo) i ->
1033            i &&
1034             is_really_smaller ~subst (tys@context) n_plus_len nn_plus_len kl
1035              x_plus_len safes' bo
1036          ) fl true*)
1037  | C.Meta _ -> 
1038      true (* XXX if this check is repeated when the user completes the
1039              definition *)
1040  | C.Match (Ref.Ref (_,uri,_) as ref,outtype,term,pl) ->
1041     (match term with
1042     | C.Rel m | C.Appl (C.Rel m :: _ ) when List.mem m safes || m = x ->
1043         let isinductive, paramsno, tl, _, i = E.get_checked_indtys ref in
1044         if not isinductive then
1045           List.for_all (is_really_smaller ~subst ~metasenv k) pl
1046         else
1047           let c_ctx,len,cl = fix_lefts_in_constrs ~subst uri paramsno tl i in
1048           List.for_all2
1049            (fun p (_,_,debruijnedte) -> 
1050              let rl'=recursive_args ~subst ~metasenv c_ctx 0 len debruijnedte in
1051              let e, k = get_new_safes ~subst k p rl' in
1052              is_really_smaller ~subst ~metasenv k e)
1053            pl cl
1054     | _ -> List.for_all (is_really_smaller ~subst ~metasenv k) pl)
1055
1056 and returns_a_coinductive ~subst context ty =
1057   match R.whd ~subst context ty with
1058   | C.Const (Ref.Ref (_,uri,Ref.Ind _) as ref) 
1059   | C.Appl (C.Const (Ref.Ref (_,uri,Ref.Ind _) as ref)::_) ->
1060      let isinductive, _, _, _, _ = E.get_checked_indtys ref in
1061      if isinductive then None else (Some uri)
1062   | C.Prod (n,so,de) ->
1063      returns_a_coinductive ~subst ((n,C.Decl so)::context) de
1064   | _ -> None
1065
1066 and type_of_constant ((Ref.Ref (_,uri,_)) as ref) = 
1067   let cobj =
1068     match E.get_obj uri with
1069     | true, cobj -> cobj
1070     | false, uobj ->
1071        !logger (`Start_type_checking uri);
1072        check_obj_well_typed uobj;
1073        E.add_obj uobj;
1074        !logger (`Type_checking_completed uri);
1075        uobj
1076   in
1077   match cobj, ref with
1078   | (_,_,_,_,C.Inductive (_,_,tl,_)), Ref.Ref (_,_,Ref.Ind i)  ->
1079       let _,_,arity,_ = List.nth tl i in arity
1080   | (_,_,_,_,C.Inductive (_,_,tl,_)), Ref.Ref (_,_,Ref.Con (i,j))  ->
1081       let _,_,_,cl = List.nth tl i in 
1082       let _,_,arity = List.nth cl (j-1) in 
1083       arity
1084   | (_,_,_,_,C.Fixpoint (_,fl,_)), Ref.Ref (_,_,(Ref.Fix (i,_)|Ref.CoFix i)) ->
1085       let _,_,_,arity,_ = List.nth fl i in
1086       arity
1087   | (_,_,_,_,C.Constant (_,_,_,ty,_)), Ref.Ref (_,_,(Ref.Def |Ref.Decl)) -> ty
1088   | _ -> raise (AssertFailure (lazy "type_of_constant: environment/reference"))
1089
1090 and check_obj_well_typed (uri,height,metasenv,subst,kind) =
1091  (* CSC: here we should typecheck the metasenv and the subst *)
1092  assert (metasenv = [] && subst = []);
1093  match kind with
1094    | C.Constant (_,_,Some te,ty,_) ->
1095 (*
1096       prerr_endline ("TY: " ^ NCicPp.ppterm ~subst ~metasenv ~context:[] ty);
1097       prerr_endline ("BO: " ^ NCicPp.ppterm ~subst ~metasenv ~context:[] te);
1098 *)
1099       let _ = typeof ~subst ~metasenv [] ty in
1100       let ty_te = typeof ~subst ~metasenv [] te in
1101 (*       prerr_endline "XXXX"; *)
1102       if not (R.are_convertible ~subst ~metasenv [] ty_te ty) then
1103        raise (TypeCheckerFailure (lazy (Printf.sprintf
1104         "the type of the body is not the one expected:\n%s\nvs\n%s"
1105         (NCicPp.ppterm ~subst ~metasenv ~context:[] ty_te) 
1106         (NCicPp.ppterm ~subst ~metasenv ~context:[] ty))))
1107    | C.Constant (_,_,None,ty,_) -> ignore (typeof ~subst ~metasenv [] ty)
1108    | C.Inductive (is_ind, leftno, tyl, _) -> 
1109        check_mutual_inductive_defs uri ~metasenv ~subst is_ind leftno tyl
1110    | C.Fixpoint (inductive,fl,_) ->
1111       let types,kl,len =
1112         List.fold_left
1113          (fun (types,kl,len) (_,name,k,ty,_) ->
1114            let _ = typeof ~subst ~metasenv [] ty in
1115             ((name,(C.Decl (S.lift len ty)))::types, k::kl,len+1)
1116          ) ([],[],0) fl
1117       in
1118         List.iter (fun (_,name,x,ty,bo) ->
1119          let bo = debruijn uri len bo in
1120          let ty_bo = typeof ~subst ~metasenv types bo in
1121          if not (R.are_convertible ~subst ~metasenv types ty_bo (S.lift len ty))
1122          then raise (TypeCheckerFailure (lazy ("(Co)Fix: ill-typed bodies")))
1123          else
1124           if inductive then begin
1125             let m, context = eat_lambdas ~subst ~metasenv types (x + 1) bo in
1126             (* guarded by destructors conditions D{f,k,x,M} *)
1127             let rec enum_from k = 
1128               function [] -> [] | v::tl -> (k,v)::enum_from (k+1) tl 
1129             in
1130             guarded_by_destructors 
1131              ~subst ~metasenv context (enum_from (x+2) kl) m
1132           end else
1133            match returns_a_coinductive ~subst [] ty with
1134             | None ->
1135                 raise (TypeCheckerFailure
1136                   (lazy "CoFix: does not return a coinductive type"))
1137             | Some uri ->
1138                 (* guarded by constructors conditions C{f,M} *)
1139                 if not (guarded_by_constructors ~subst ~metasenv
1140                     types 0 len false bo [] uri)
1141                 then
1142                   raise (TypeCheckerFailure
1143                    (lazy "CoFix: not guarded by constructors"))
1144           ) fl
1145
1146 let typecheck_obj = check_obj_well_typed;;
1147
1148 (* EOF *)