]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicTypeChecker.ml
fixed positivity conditions
[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) 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            | _ -> raise (TypeCheckerFailure (lazy 
490               ("Non-positive occurence in mutual inductive definition(s) [1]" ^
491               NUri.string_of_uri uri))))
492         indparamsno tl
493       in
494        if last = 0 then
495         List.for_all (does_not_occur ~subst context n nn) tl
496        else
497         raise (TypeCheckerFailure
498          (lazy ("Non-positive occurence in mutual inductive definition(s) [2]"^
499           NUri.string_of_uri uri)))
500   | C.Rel m when m = i ->
501       if indparamsno = 0 then
502        true
503       else
504         raise (TypeCheckerFailure
505          (lazy ("Non-positive occurence in mutual inductive definition(s) [3]"^
506           NUri.string_of_uri uri)))
507   | C.Prod (name,source,dest) when
508       does_not_occur ~subst ((name,C.Decl source)::context) 0 1 dest ->
509       strictly_positive ~subst context n nn source &&
510        are_all_occurrences_positive ~subst 
511         ((name,C.Decl source)::context) uri indparamsno
512         (i+1) (n + 1) (nn + 1) dest
513    | C.Prod (name,source,dest) ->
514        if not (does_not_occur ~subst context n nn source) then
515          raise (TypeCheckerFailure (lazy ("Non-positive occurrence in "^
516          NCicPp.ppterm ~context ~metasenv:[] ~subst te)));
517        are_all_occurrences_positive ~subst ((name,C.Decl source)::context)
518         uri indparamsno (i+1) (n + 1) (nn + 1) dest
519    | _ ->
520      raise
521       (TypeCheckerFailure (lazy ("Malformed inductive constructor type " ^
522         (NUri.string_of_uri uri))))
523 ;;
524
525 exception NotGuarded of string Lazy.t;;
526
527 let rec typeof ~subst ~metasenv context term =
528   let rec typeof_aux context = 
529     fun t -> (*prerr_endline (NCicPp.ppterm ~context t); *)
530     match t with
531     | C.Rel n ->
532        (try
533          match List.nth context (n - 1) with
534          | (_,C.Decl ty) -> S.lift n ty
535          | (_,C.Def (_,ty)) -> S.lift n ty
536         with Failure _ -> raise (TypeCheckerFailure (lazy "unbound variable")))
537     | C.Sort (C.Type i) -> C.Sort (C.Type (i+1))
538     | C.Sort s -> C.Sort (C.Type 0)
539     | C.Implicit _ -> raise (AssertFailure (lazy "Implicit found"))
540     | C.Meta (n,l) as t -> 
541        let canonical_ctx,ty =
542         try
543          let _,c,_,ty = U.lookup_subst n subst in c,ty
544         with U.Subst_not_found _ -> try
545          let _,_,c,ty = U.lookup_meta n metasenv in c,ty
546         with U.Meta_not_found _ ->
547          raise (AssertFailure (lazy (Printf.sprintf
548           "%s not found" (NCicPp.ppterm ~subst ~metasenv ~context t))))
549        in
550         check_metasenv_consistency t ~subst ~metasenv context canonical_ctx l;
551         S.subst_meta l ty
552     | C.Const ref -> type_of_constant ref
553     | C.Prod (name,s,t) ->
554        let sort1 = typeof_aux context s in
555        let sort2 = typeof_aux ((name,(C.Decl s))::context) t in
556        sort_of_prod ~metasenv ~subst context (name,s) (sort1,sort2)
557     | C.Lambda (n,s,t) ->
558        let sort = typeof_aux context s in
559        (match R.whd ~subst context sort with
560        | C.Meta _ | C.Sort _ -> ()
561        | _ ->
562          raise
563            (TypeCheckerFailure (lazy (Printf.sprintf
564              ("Not well-typed lambda-abstraction: " ^^
565              "the source %s should be a type; instead it is a term " ^^ 
566              "of type %s") (NCicPp.ppterm ~subst ~metasenv ~context s)
567              (NCicPp.ppterm ~subst ~metasenv ~context sort)))));
568        let ty = typeof_aux ((n,(C.Decl s))::context) t in
569          C.Prod (n,s,ty)
570     | C.LetIn (n,ty,t,bo) ->
571        let ty_t = typeof_aux context t in
572        let _ = typeof_aux context ty in
573        if not (R.are_convertible ~subst ~metasenv context ty ty_t) then
574          raise 
575           (TypeCheckerFailure 
576             (lazy (Printf.sprintf
577               "The type of %s is %s but it is expected to be %s" 
578                 (NCicPp.ppterm ~subst ~metasenv ~context t) 
579                 (NCicPp.ppterm ~subst ~metasenv ~context ty_t) 
580                 (NCicPp.ppterm ~subst ~metasenv ~context ty))))
581        else
582          let ty_bo = typeof_aux  ((n,C.Def (t,ty))::context) bo in
583          S.subst ~avoid_beta_redexes:true t ty_bo
584     | C.Appl (he::(_::_ as args)) ->
585        let ty_he = typeof_aux context he in
586        let args_with_ty = List.map (fun t -> t, typeof_aux context t) args in
587 (*
588        prerr_endline ("HEAD: " ^ NCicPp.ppterm ~subst ~metasenv ~context ty_he);
589        prerr_endline ("TARGS: " ^ String.concat " | " (List.map (NCicPp.ppterm
590        ~subst ~metasenv ~context) (List.map snd args_with_ty)));
591        prerr_endline ("ARGS: " ^ String.concat " | " (List.map (NCicPp.ppterm
592        ~subst ~metasenv ~context) (List.map fst args_with_ty)));
593 *)
594        eat_prods ~subst ~metasenv context he ty_he args_with_ty
595    | C.Appl _ -> raise (AssertFailure (lazy "Appl of length < 2"))
596    | C.Match (Ref.Ref (_,_,Ref.Ind tyno) as r,outtype,term,pl) ->
597       let outsort = typeof_aux context outtype in
598       let inductive,leftno,itl,_,_ = E.get_checked_indtys r in
599       let constructorsno =
600         let _,_,_,cl = List.nth itl tyno in List.length cl
601       in
602       let parameters, arguments =
603         let ty = R.whd ~subst context (typeof_aux context term) in
604         let r',tl =
605          match ty with
606             C.Const (Ref.Ref (_,_,Ref.Ind _) as r') -> r',[]
607           | C.Appl (C.Const (Ref.Ref (_,_,Ref.Ind _) as r') :: tl) -> r',tl
608           | _ ->
609              raise 
610                (TypeCheckerFailure (lazy (Printf.sprintf
611                  "Case analysis: analysed term %s is not an inductive one"
612                  (NCicPp.ppterm ~subst ~metasenv ~context term)))) in
613         if not (Ref.eq r r') then
614          raise
615           (TypeCheckerFailure (lazy (Printf.sprintf
616             ("Case analysys: analysed term type is %s, but is expected " ^^
617              "to be (an application of) %s")
618             (NCicPp.ppterm ~subst ~metasenv ~context ty) 
619             (NCicPp.ppterm ~subst ~metasenv ~context (C.Const r')))))
620         else
621          try HExtlib.split_nth leftno tl
622          with
623           Failure _ ->
624            raise (TypeCheckerFailure (lazy (Printf.sprintf 
625            "%s is partially applied" 
626            (NCicPp.ppterm  ~subst ~metasenv ~context ty)))) in
627       (* let's control if the sort elimination is allowed: [(I q1 ... qr)|B] *)
628       let sort_of_ind_type =
629         if parameters = [] then C.Const r
630         else C.Appl ((C.Const r)::parameters) in
631       let type_of_sort_of_ind_ty = typeof_aux context sort_of_ind_type in
632       check_allowed_sort_elimination ~subst ~metasenv r context
633        sort_of_ind_type type_of_sort_of_ind_ty outsort;
634       (* let's check if the type of branches are right *)
635       if List.length pl <> constructorsno then
636        raise (TypeCheckerFailure (lazy ("Wrong number of cases in a match")));
637       let j,branches_ok,p_ty, exp_p_ty =
638         List.fold_left
639           (fun (j,b,old_p_ty,old_exp_p_ty) p ->
640             if b then
641               let cons = 
642                 let cons = Ref.mk_constructor j r in
643                 if parameters = [] then C.Const cons
644                 else C.Appl (C.Const cons::parameters)
645               in
646               let ty_p = typeof_aux context p in
647               let ty_cons = typeof_aux context cons in
648               let ty_branch = 
649                 type_of_branch ~subst context leftno outtype cons ty_cons 0 
650               in
651               j+1, R.are_convertible ~subst ~metasenv context ty_p ty_branch,
652               ty_p, ty_branch
653             else
654               j,false,old_p_ty,old_exp_p_ty
655           ) (1,true,C.Sort C.Prop,C.Sort C.Prop) pl
656       in
657       if not branches_ok then
658         raise
659          (TypeCheckerFailure 
660           (lazy (Printf.sprintf ("Branch for constructor %s :=\n%s\n"^^
661           "has type %s\nnot convertible with %s") 
662           (NCicPp.ppterm  ~subst ~metasenv ~context
663             (C.Const (Ref.mk_constructor (j-1) r)))
664           (NCicPp.ppterm ~metasenv ~subst ~context (List.nth pl (j-2)))
665           (NCicPp.ppterm ~metasenv ~subst ~context p_ty) 
666           (NCicPp.ppterm ~metasenv ~subst ~context exp_p_ty)))); 
667       let res = outtype::arguments@[term] in
668       R.head_beta_reduce (C.Appl res)
669     | C.Match _ -> assert false
670
671   and type_of_branch ~subst context leftno outty cons tycons liftno = 
672     match R.whd ~subst context tycons with
673     | C.Const (Ref.Ref (_,_,Ref.Ind _)) -> C.Appl [S.lift liftno outty ; cons]
674     | C.Appl (C.Const (Ref.Ref (_,_,Ref.Ind _))::tl) ->
675         let _,arguments = HExtlib.split_nth leftno tl in
676         C.Appl (S.lift liftno outty::arguments@[cons])
677     | C.Prod (name,so,de) ->
678         let cons =
679          match S.lift 1 cons with
680          | C.Appl l -> C.Appl (l@[C.Rel 1])
681          | t -> C.Appl [t ; C.Rel 1]
682         in
683          C.Prod (name,so,
684            type_of_branch ~subst ((name,(C.Decl so))::context) 
685             leftno outty cons de (liftno+1))
686     | _ -> raise (AssertFailure (lazy "type_of_branch"))
687
688   (* check_metasenv_consistency checks that the "canonical" context of a
689      metavariable is consitent - up to relocation via the relocation list l -
690      with the actual context *)
691   and check_metasenv_consistency 
692     ~subst ~metasenv term context canonical_context l 
693   =
694    match l with
695     | shift, NCic.Irl n ->
696        let context = snd (HExtlib.split_nth shift context) in
697         let rec compare = function
698          | 0,_,[] -> ()
699          | 0,_,_::_
700          | _,_,[] ->
701             raise (AssertFailure (lazy (Printf.sprintf
702              "Local and canonical context %s have different lengths"
703              (NCicPp.ppterm ~subst ~context ~metasenv term))))
704          | m,[],_::_ ->
705             raise (TypeCheckerFailure (lazy (Printf.sprintf
706              "Unbound variable -%d in %s" m 
707              (NCicPp.ppterm ~subst ~metasenv ~context term))))
708          | m,t::tl,ct::ctl ->
709             (match t,ct with
710                 (_,C.Decl t1), (_,C.Decl t2)
711               | (_,C.Def (t1,_)), (_,C.Def (t2,_))
712               | (_,C.Def (_,t1)), (_,C.Decl t2) ->
713                  if not (R.are_convertible ~subst ~metasenv tl t1 t2) then
714                   raise 
715                       (TypeCheckerFailure 
716                         (lazy (Printf.sprintf 
717                       ("Not well typed metavariable local context for %s: " ^^ 
718                        "%s expected, which is not convertible with %s")
719                       (NCicPp.ppterm ~subst ~metasenv ~context term) 
720                       (NCicPp.ppterm ~subst ~metasenv ~context t2) 
721                       (NCicPp.ppterm ~subst ~metasenv ~context t1))))
722               | _,_ ->
723                raise 
724                    (TypeCheckerFailure (lazy (Printf.sprintf 
725                     ("Not well typed metavariable local context for %s: " ^^ 
726                      "a definition expected, but a declaration found")
727                     (NCicPp.ppterm ~subst ~metasenv ~context term)))));
728             compare (m - 1,tl,ctl)
729         in
730          compare (n,context,canonical_context)
731     | shift, lc_kind ->
732        (* we avoid useless lifting by shortening the context*)
733        let l,context = (0,lc_kind), snd (HExtlib.split_nth shift context) in
734        let lifted_canonical_context = 
735          let rec lift_metas i = function
736            | [] -> []
737            | (n,C.Decl t)::tl ->
738                (n,C.Decl (S.subst_meta l (S.lift i t)))::(lift_metas (i+1) tl)
739            | (n,C.Def (t,ty))::tl ->
740                (n,C.Def ((S.subst_meta l (S.lift i t)),
741                           S.subst_meta l (S.lift i ty)))::(lift_metas (i+1) tl)
742          in
743           lift_metas 1 canonical_context in
744        let l = U.expand_local_context lc_kind in
745        try
746         List.iter2 
747         (fun t ct -> 
748           match (t,ct) with
749           | t, (_,C.Def (ct,_)) ->
750              (*CSC: the following optimization is to avoid a possibly expensive
751                     reduction that can be easily avoided and that is quite
752                     frequent. However, this is better handled using levels to
753                     control reduction *)
754              let optimized_t =
755               match t with
756               | C.Rel n ->
757                   (try
758                     match List.nth context (n - 1) with
759                     | (_,C.Def (te,_)) -> S.lift n te
760                     | _ -> t
761                     with Failure _ -> t)
762               | _ -> t
763              in
764              if not (R.are_convertible ~subst ~metasenv context optimized_t ct)
765              then
766                raise 
767                  (TypeCheckerFailure 
768                    (lazy (Printf.sprintf 
769                      ("Not well typed metavariable local context: " ^^ 
770                       "expected a term convertible with %s, found %s")
771                      (NCicPp.ppterm ~subst ~metasenv ~context ct) 
772                      (NCicPp.ppterm ~subst ~metasenv ~context t))))
773           | t, (_,C.Decl ct) ->
774               let type_t = typeof_aux context t in
775               if not (R.are_convertible ~subst ~metasenv context type_t ct) then
776                 raise (TypeCheckerFailure 
777                  (lazy (Printf.sprintf 
778                   ("Not well typed metavariable local context: "^^
779                   "expected a term of type %s, found %s of type %s") 
780                   (NCicPp.ppterm ~subst ~metasenv ~context ct) 
781                   (NCicPp.ppterm ~subst ~metasenv ~context t) 
782                   (NCicPp.ppterm ~subst ~metasenv ~context type_t))))
783         ) l lifted_canonical_context 
784        with
785         Invalid_argument _ ->
786           raise (AssertFailure (lazy (Printf.sprintf
787            "Local and canonical context %s have different lengths"
788            (NCicPp.ppterm ~subst ~metasenv ~context term))))
789
790   and is_non_informative context paramsno c =
791    let rec aux context c =
792      match R.whd context c with
793       | C.Prod (n,so,de) ->
794          let s = typeof_aux context so in
795          s = C.Sort C.Prop && aux ((n,(C.Decl so))::context) de
796       | _ -> true in
797    let context',dx = split_prods ~subst:[] context paramsno c in
798     aux context' dx
799
800   and check_allowed_sort_elimination ~subst ~metasenv r =
801    let mkapp he arg =
802      match he with
803      | C.Appl l -> C.Appl (l @ [arg])
804      | t -> C.Appl [t;arg] in
805    let rec aux context ind arity1 arity2 =
806     let arity1 = R.whd ~subst context arity1 in
807     let arity2 = R.whd ~subst context arity2 in
808       match arity1,arity2 with
809        | C.Prod (name,so1,de1), C.Prod (_,so2,de2) ->
810           if not (R.are_convertible ~subst ~metasenv context so1 so2) then
811            raise (TypeCheckerFailure (lazy (Printf.sprintf
812             "In outtype: expected %s, found %s"
813             (NCicPp.ppterm ~subst ~metasenv ~context so1)
814             (NCicPp.ppterm ~subst ~metasenv ~context so2)
815             )));
816           aux ((name, C.Decl so1)::context)
817            (mkapp (S.lift 1 ind) (C.Rel 1)) de1 de2
818        | C.Sort _, C.Prod (name,so,ta) ->
819           if not (R.are_convertible ~subst ~metasenv context so ind) then
820            raise (TypeCheckerFailure (lazy (Printf.sprintf
821             "In outtype: expected %s, found %s"
822             (NCicPp.ppterm ~subst ~metasenv ~context ind)
823             (NCicPp.ppterm ~subst ~metasenv ~context so)
824             )));
825           (match arity1,ta with
826             | (C.Sort (C.CProp | C.Type _), C.Sort _)
827             | (C.Sort C.Prop, C.Sort C.Prop) -> ()
828             | (C.Sort C.Prop, C.Sort (C.CProp | C.Type _)) ->
829         (* TODO: we should pass all these parameters since we
830          * have them already *)
831                 let inductive,leftno,itl,_,i = E.get_checked_indtys r in
832                 let itl_len = List.length itl in
833                 let _,name,ty,cl = List.nth itl i in
834                 let cl_len = List.length cl in
835                  (* is it a singleton or empty non recursive and non informative
836                     definition? *)
837                  if not
838                   (cl_len = 0 ||
839                    (itl_len = 1 && cl_len = 1 &&
840                     is_non_informative [name,C.Decl ty] leftno
841                      (let _,_,x = List.nth cl 0 in x)))
842                  then
843                   raise (TypeCheckerFailure (lazy
844                    ("Sort elimination not allowed")));
845           | _,_ -> ())
846        | _,_ -> ()
847    in
848     aux 
849
850  in 
851    typeof_aux context term
852
853 and check_mutual_inductive_defs uri ~metasenv ~subst is_ind leftno tyl = 
854   (* let's check if the arity of the inductive types are well formed *)
855   List.iter (fun (_,_,x,_) -> ignore (typeof ~subst ~metasenv [] x)) tyl;
856   (* let's check if the types of the inductive constructors are well formed. *)
857   let len = List.length tyl in
858   let tys = List.rev (List.map (fun (_,n,ty,_) -> (n,(C.Decl ty))) tyl) in
859   ignore
860    (List.fold_right
861     (fun (_,_,_,cl) i ->
862        List.iter
863          (fun (_,name,te) -> 
864            let debruijnedte = debruijn uri len te in
865            ignore (typeof ~subst ~metasenv tys debruijnedte);
866            (* let's check also the positivity conditions *)
867            if 
868              not
869                (are_all_occurrences_positive ~subst tys uri leftno i 0 len
870                   debruijnedte) 
871            then
872              raise
873                (TypeCheckerFailure
874                  (lazy ("Non positive occurence in "^NUri.string_of_uri uri))))
875          cl;
876         i + 1)
877     tyl 1)
878
879 and eat_lambdas ~subst ~metasenv context n te =
880   match (n, R.whd ~subst context te) with
881   | (0, _) -> (te, context)
882   | (n, C.Lambda (name,so,ta)) when n > 0 ->
883       eat_lambdas ~subst ~metasenv ((name,(C.Decl so))::context) (n - 1) ta
884    | (n, te) ->
885       raise (AssertFailure (lazy (Printf.sprintf "9 (%d, %s)" n 
886         (NCicPp.ppterm ~subst ~metasenv ~context te))))
887
888 and guarded_by_destructors ~subst ~metasenv context recfuns t = 
889  let recursor f k t = NCicUtils.fold shift_k k (fun k () -> f k) () t in
890  let rec aux (context, recfuns, x, safes as k) = function
891   | C.Rel m as t when List.mem_assoc m recfuns -> 
892       raise (NotGuarded (lazy 
893         (NCicPp.ppterm ~subst ~metasenv ~context t ^ " passed around")))
894   | C.Rel m ->
895      (match List.nth context (m-1) with 
896      | _,C.Decl _ -> ()
897      | _,C.Def (bo,_) -> aux (context, recfuns, x, safes) (S.lift m bo))
898   | C.Meta _ -> ()
899   | C.Appl ((C.Rel m)::tl) as t when List.mem_assoc m recfuns ->
900      let rec_no = List.assoc m recfuns in
901      if not (List.length tl > rec_no) then 
902        raise (NotGuarded (lazy 
903          (NCicPp.ppterm ~context ~subst ~metasenv t ^ 
904          " is a partial application of a fix")))
905      else
906        let rec_arg = List.nth tl rec_no in
907        if not (is_really_smaller ~subst ~metasenv k rec_arg) then 
908          raise (NotGuarded (lazy 
909            (NCicPp.ppterm ~context ~subst ~metasenv rec_arg ^ " not smaller")));
910        List.iter (aux k) tl
911   | C.Match (Ref.Ref (_,uri,_) as ref,outtype,term,pl) as t ->
912      (match R.whd ~subst context term with
913      | C.Rel m | C.Appl (C.Rel m :: _ ) as t when List.mem m safes || m = x ->
914         let isinductive, paramsno, tl, _, i = E.get_checked_indtys ref in
915         if not isinductive then recursor aux k t
916         else
917          let c_ctx,len,cl = fix_lefts_in_constrs ~subst uri paramsno tl i in
918          let args = match t with C.Appl (_::tl) -> tl | _ -> [] in
919          aux k outtype; 
920          List.iter (aux k) args; 
921          List.iter2
922            (fun p (_,_,bruijnedc) ->
923              let rl = recursive_args ~subst ~metasenv c_ctx 0 len bruijnedc in
924              let p, k = get_new_safes ~subst k p rl in
925              aux k p) 
926            pl cl
927      | _ -> recursor aux k t)
928   | t -> recursor aux k t
929  in
930   try aux (context, recfuns, 1, []) t
931   with NotGuarded s -> raise (TypeCheckerFailure s)
932
933 (*
934  | C.Fix (_, fl) ->
935     let len = List.length fl in
936      let n_plus_len = n + len
937      and nn_plus_len = nn + len
938      and x_plus_len = x + len
939      and tys,_ =
940       List.fold_left
941         (fun (types,len) (n,_,ty,_) ->
942            (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
943             len+1)
944         ) ([],0) fl
945      and safes' = List.map (fun x -> x + len) safes in
946       List.fold_right
947        (fun (_,_,ty,bo) i ->
948          i && guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
949           guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
950            x_plus_len safes' bo
951        ) fl true
952  | C.CoFix (_, fl) ->
953     let len = List.length fl in
954      let n_plus_len = n + len
955      and nn_plus_len = nn + len
956      and x_plus_len = x + len
957      and tys,_ =
958       List.fold_left
959         (fun (types,len) (n,ty,_) ->
960            (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
961             len+1)
962         ) ([],0) fl
963      and safes' = List.map (fun x -> x + len) safes in
964       List.fold_right
965        (fun (_,ty,bo) i ->
966          i &&
967           guarded_by_destructors ~subst context n nn kl x_plus_len safes' ty &&
968           guarded_by_destructors ~subst (tys@context) n_plus_len nn_plus_len kl
969            x_plus_len safes' bo
970        ) fl true
971 *)
972
973 and guarded_by_constructors ~subst ~metasenv _ _ _ _ _ _ _ = true
974
975 and recursive_args ~subst ~metasenv context n nn te =
976   match R.whd context te with
977   | C.Rel _ | C.Appl _ -> []
978   | C.Prod (name,so,de) ->
979      (not (does_not_occur ~subst context n nn so)) ::
980       (recursive_args ~subst ~metasenv 
981         ((name,(C.Decl so))::context) (n+1) (nn + 1) de)
982   | t -> 
983      raise (AssertFailure (lazy ("recursive_args:" ^ NCicPp.ppterm ~subst
984      ~metasenv ~context:[] t)))
985
986 and get_new_safes ~subst (context, recfuns, x, safes as k) p rl =
987   match R.whd ~subst context p, rl with
988   | C.Lambda (name,so,ta), b::tl ->
989       let safes = (if b then [0] else []) @ safes in
990       get_new_safes ~subst 
991         (shift_k (name,(C.Decl so)) (context, recfuns, x, safes)) ta tl
992   | C.Meta _ as e, _ | e, [] -> e, k
993   | _ -> raise (AssertFailure (lazy "Ill formed pattern"))
994
995 and split_prods ~subst context n te =
996   match n, R.whd ~subst context te with
997   | 0, _ -> context,te
998   | n, C.Prod (name,so,ta) when n > 0 ->
999        split_prods ~subst ((name,(C.Decl so))::context) (n - 1) ta
1000   | _ -> raise (AssertFailure (lazy "split_prods"))
1001
1002 and is_really_smaller ~subst ~metasenv (context, recfuns, x, safes as k) te =
1003  match R.whd ~subst context te with
1004  | C.Rel m when List.mem m safes -> true
1005  | C.Rel _ -> false
1006  | C.LetIn _ -> raise (AssertFailure (lazy "letin after whd"))
1007  | C.Sort _ | C.Implicit _ | C.Prod _ | C.Lambda _ 
1008  | C.Const (Ref.Ref (_,_,(Ref.Decl | Ref.Def | Ref.Ind _ | Ref.CoFix _))) ->
1009     raise (AssertFailure (lazy "not a constructor"))
1010  | C.Appl ([]|[_]) -> raise (AssertFailure (lazy "empty/unary appl"))
1011  | C.Appl (he::_) ->
1012     (*CSC: sulla coda ci vogliono dei controlli? secondo noi no, ma *)
1013     (*CSC: solo perche' non abbiamo trovato controesempi            *)
1014     (*TASSI: da capire soprattutto se he รจ un altro fix che non ha ridotto...*)
1015     is_really_smaller ~subst ~metasenv k he
1016  | C.Const (Ref.Ref (_,_,Ref.Con _)) -> false
1017  | C.Const (Ref.Ref (_,_,Ref.Fix _)) -> assert false
1018    (*| C.Fix (_, fl) ->
1019       let len = List.length fl in
1020        let n_plus_len = n + len
1021        and nn_plus_len = nn + len
1022        and x_plus_len = x + len
1023        and tys,_ =
1024         List.fold_left
1025           (fun (types,len) (n,_,ty,_) ->
1026              (Some (C.Name n,(C.Decl (CicSubstitution.lift len ty)))::types,
1027               len+1)
1028           ) ([],0) fl
1029        and safes' = List.map (fun x -> x + len) safes in
1030         List.fold_right
1031          (fun (_,_,ty,bo) i ->
1032            i &&
1033             is_really_smaller ~subst (tys@context) n_plus_len nn_plus_len kl
1034              x_plus_len safes' bo
1035          ) fl true*)
1036  | C.Meta _ -> 
1037      true (* XXX if this check is repeated when the user completes the
1038              definition *)
1039  | C.Match (Ref.Ref (_,uri,_) as ref,outtype,term,pl) ->
1040     (match term with
1041     | C.Rel m | C.Appl (C.Rel m :: _ ) when List.mem m safes || m = x ->
1042         let isinductive, paramsno, tl, _, i = E.get_checked_indtys ref in
1043         if not isinductive then
1044           List.for_all (is_really_smaller ~subst ~metasenv k) pl
1045         else
1046           let c_ctx,len,cl = fix_lefts_in_constrs ~subst uri paramsno tl i in
1047           List.for_all2
1048            (fun p (_,_,debruijnedte) -> 
1049              let rl'=recursive_args ~subst ~metasenv c_ctx 0 len debruijnedte in
1050              let e, k = get_new_safes ~subst k p rl' in
1051              is_really_smaller ~subst ~metasenv k e)
1052            pl cl
1053     | _ -> List.for_all (is_really_smaller ~subst ~metasenv k) pl)
1054
1055 and returns_a_coinductive ~subst context ty =
1056   match R.whd ~subst context ty with
1057   | C.Const (Ref.Ref (_,uri,Ref.Ind _) as ref) 
1058   | C.Appl (C.Const (Ref.Ref (_,uri,Ref.Ind _) as ref)::_) ->
1059      let isinductive, _, _, _, _ = E.get_checked_indtys ref in
1060      if isinductive then None else (Some uri)
1061   | C.Prod (n,so,de) ->
1062      returns_a_coinductive ~subst ((n,C.Decl so)::context) de
1063   | _ -> None
1064
1065 and type_of_constant ((Ref.Ref (_,uri,_)) as ref) = 
1066   let cobj =
1067     match E.get_obj uri with
1068     | true, cobj -> cobj
1069     | false, uobj ->
1070        !logger (`Start_type_checking uri);
1071        check_obj_well_typed uobj;
1072        E.add_obj uobj;
1073        !logger (`Type_checking_completed uri);
1074        uobj
1075   in
1076   match cobj, ref with
1077   | (_,_,_,_,C.Inductive (_,_,tl,_)), Ref.Ref (_,_,Ref.Ind i)  ->
1078       let _,_,arity,_ = List.nth tl i in arity
1079   | (_,_,_,_,C.Inductive (_,_,tl,_)), Ref.Ref (_,_,Ref.Con (i,j))  ->
1080       let _,_,_,cl = List.nth tl i in 
1081       let _,_,arity = List.nth cl (j-1) in 
1082       arity
1083   | (_,_,_,_,C.Fixpoint (_,fl,_)), Ref.Ref (_,_,(Ref.Fix (i,_)|Ref.CoFix i)) ->
1084       let _,_,_,arity,_ = List.nth fl i in
1085       arity
1086   | (_,_,_,_,C.Constant (_,_,_,ty,_)), Ref.Ref (_,_,(Ref.Def |Ref.Decl)) -> ty
1087   | _ -> raise (AssertFailure (lazy "type_of_constant: environment/reference"))
1088
1089 and check_obj_well_typed (uri,height,metasenv,subst,kind) =
1090  (* CSC: here we should typecheck the metasenv and the subst *)
1091  assert (metasenv = [] && subst = []);
1092  match kind with
1093    | C.Constant (_,_,Some te,ty,_) ->
1094 (*
1095       prerr_endline ("TY: " ^ NCicPp.ppterm ~subst ~metasenv ~context:[] ty);
1096       prerr_endline ("BO: " ^ NCicPp.ppterm ~subst ~metasenv ~context:[] te);
1097 *)
1098       let _ = typeof ~subst ~metasenv [] ty in
1099       let ty_te = typeof ~subst ~metasenv [] te in
1100 (*       prerr_endline "XXXX"; *)
1101       if not (R.are_convertible ~subst ~metasenv [] ty_te ty) then
1102        raise (TypeCheckerFailure (lazy (Printf.sprintf
1103         "the type of the body is not the one expected:\n%s\nvs\n%s"
1104         (NCicPp.ppterm ~subst ~metasenv ~context:[] ty_te) 
1105         (NCicPp.ppterm ~subst ~metasenv ~context:[] ty))))
1106    | C.Constant (_,_,None,ty,_) -> ignore (typeof ~subst ~metasenv [] ty)
1107    | C.Inductive (is_ind, leftno, tyl, _) -> 
1108        check_mutual_inductive_defs uri ~metasenv ~subst is_ind leftno tyl
1109    | C.Fixpoint (inductive,fl,_) ->
1110       let types,kl,len =
1111         List.fold_left
1112          (fun (types,kl,len) (_,name,k,ty,_) ->
1113            let _ = typeof ~subst ~metasenv [] ty in
1114             ((name,(C.Decl (S.lift len ty)))::types, k::kl,len+1)
1115          ) ([],[],0) fl
1116       in
1117         List.iter (fun (_,name,x,ty,bo) ->
1118          let bo = debruijn uri len bo in
1119          let ty_bo = typeof ~subst ~metasenv types bo in
1120          if not (R.are_convertible ~subst ~metasenv types ty_bo (S.lift len ty))
1121          then raise (TypeCheckerFailure (lazy ("(Co)Fix: ill-typed bodies")))
1122          else
1123           if inductive then begin
1124             let m, context = eat_lambdas ~subst ~metasenv types (x + 1) bo in
1125             (* guarded by destructors conditions D{f,k,x,M} *)
1126             let rec enum_from k = 
1127               function [] -> [] | v::tl -> (k,v)::enum_from (k+1) tl 
1128             in
1129             guarded_by_destructors 
1130              ~subst ~metasenv context (enum_from (x+2) kl) m
1131           end else
1132            match returns_a_coinductive ~subst [] ty with
1133             | None ->
1134                 raise (TypeCheckerFailure
1135                   (lazy "CoFix: does not return a coinductive type"))
1136             | Some uri ->
1137                 (* guarded by constructors conditions C{f,M} *)
1138                 if not (guarded_by_constructors ~subst ~metasenv
1139                     types 0 len false bo [] uri)
1140                 then
1141                   raise (TypeCheckerFailure
1142                    (lazy "CoFix: not guarded by constructors"))
1143           ) fl
1144
1145 let typecheck_obj = check_obj_well_typed;;
1146
1147 (* EOF *)