]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_omdoc/doubleTypeInference.ml
Universes introduction
[helm.git] / helm / ocaml / cic_omdoc / doubleTypeInference.ml
1 (* Copyright (C) 2000, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 exception Impossible of int;;
27 exception NotWellTyped of string;;
28 exception WrongUriToConstant of string;;
29 exception WrongUriToVariable of string;;
30 exception WrongUriToMutualInductiveDefinitions of string;;
31 exception ListTooShort;;
32 exception RelToHiddenHypothesis;;
33
34 let syntactic_equality_add_time = ref 0.0;;
35 let type_of_aux'_add_time = ref 0.0;;
36 let number_new_type_of_aux'_double_work = ref 0;;
37 let number_new_type_of_aux' = ref 0;;
38 let number_new_type_of_aux'_prop = ref 0;;
39
40 let double_work = ref 0;;
41
42 let xxx_type_of_aux' m c t =
43  let t1 = Sys.time () in
44  let res = CicTypeChecker.type_of_aux' m c t in
45  let t2 = Sys.time () in
46  type_of_aux'_add_time := !type_of_aux'_add_time +. t2 -. t1 ;
47  res
48 ;;
49
50 type types = {synthesized : Cic.term ; expected : Cic.term option};;
51
52 (* does_not_occur n te                              *)
53 (* returns [true] if [Rel n] does not occur in [te] *)
54 let rec does_not_occur n =
55  let module C = Cic in
56   function
57      C.Rel m when m = n -> false
58    | C.Rel _
59    | C.Meta _
60    | C.Sort _
61    | C.Implicit _ -> true 
62    | C.Cast (te,ty) ->
63       does_not_occur n te && does_not_occur n ty
64    | C.Prod (name,so,dest) ->
65       does_not_occur n so &&
66        does_not_occur (n + 1) dest
67    | C.Lambda (name,so,dest) ->
68       does_not_occur n so &&
69        does_not_occur (n + 1) dest
70    | C.LetIn (name,so,dest) ->
71       does_not_occur n so &&
72        does_not_occur (n + 1) dest
73    | C.Appl l ->
74       List.fold_right (fun x i -> i && does_not_occur n x) l true
75    | C.Var (_,exp_named_subst)
76    | C.Const (_,exp_named_subst)
77    | C.MutInd (_,_,exp_named_subst)
78    | C.MutConstruct (_,_,_,exp_named_subst) ->
79       List.fold_right (fun (_,x) i -> i && does_not_occur n x)
80        exp_named_subst true
81    | C.MutCase (_,_,out,te,pl) ->
82       does_not_occur n out && does_not_occur n te &&
83        List.fold_right (fun x i -> i && does_not_occur n x) pl true
84    | C.Fix (_,fl) ->
85       let len = List.length fl in
86        let n_plus_len = n + len in
87        let tys =
88         List.map (fun (n,_,ty,_) -> Some (C.Name n,(Cic.Decl ty))) fl
89        in
90         List.fold_right
91          (fun (_,_,ty,bo) i ->
92            i && does_not_occur n ty &&
93            does_not_occur n_plus_len bo
94          ) fl true
95    | C.CoFix (_,fl) ->
96       let len = List.length fl in
97        let n_plus_len = n + len in
98        let tys =
99         List.map (fun (n,ty,_) -> Some (C.Name n,(Cic.Decl ty))) fl
100        in
101         List.fold_right
102          (fun (_,ty,bo) i ->
103            i && does_not_occur n ty &&
104            does_not_occur n_plus_len bo
105          ) fl true
106 ;;
107
108 (*CSC: potrebbe creare applicazioni di applicazioni *)
109 (*CSC: ora non e' piu' head, ma completa!!! *)
110 let rec head_beta_reduce =
111  let module S = CicSubstitution in
112  let module C = Cic in
113   function
114       C.Rel _ as t -> t
115     | C.Var (uri,exp_named_subst) ->
116        let exp_named_subst' =
117         List.map (function (i,t) -> i, head_beta_reduce t) exp_named_subst
118        in
119         C.Var (uri,exp_named_subst)
120     | C.Meta (n,l) ->
121        C.Meta (n,
122         List.map
123          (function None -> None | Some t -> Some (head_beta_reduce t)) l
124        )
125     | C.Sort _ as t -> t
126     | C.Implicit _ -> assert false
127     | C.Cast (te,ty) ->
128        C.Cast (head_beta_reduce te, head_beta_reduce ty)
129     | C.Prod (n,s,t) ->
130        C.Prod (n, head_beta_reduce s, head_beta_reduce t)
131     | C.Lambda (n,s,t) ->
132        C.Lambda (n, head_beta_reduce s, head_beta_reduce t)
133     | C.LetIn (n,s,t) ->
134        C.LetIn (n, head_beta_reduce s, head_beta_reduce t)
135     | C.Appl ((C.Lambda (name,s,t))::he::tl) ->
136        let he' = S.subst he t in
137         if tl = [] then
138          head_beta_reduce he'
139         else
140          head_beta_reduce (C.Appl (he'::tl))
141     | C.Appl l ->
142        C.Appl (List.map head_beta_reduce l)
143     | C.Const (uri,exp_named_subst) ->
144        let exp_named_subst' =
145         List.map (function (i,t) -> i, head_beta_reduce t) exp_named_subst
146        in
147         C.Const (uri,exp_named_subst')
148     | C.MutInd (uri,i,exp_named_subst) ->
149        let exp_named_subst' =
150         List.map (function (i,t) -> i, head_beta_reduce t) exp_named_subst
151        in
152         C.MutInd (uri,i,exp_named_subst')
153     | C.MutConstruct (uri,i,j,exp_named_subst) ->
154        let exp_named_subst' =
155         List.map (function (i,t) -> i, head_beta_reduce t) exp_named_subst
156        in
157         C.MutConstruct (uri,i,j,exp_named_subst')
158     | C.MutCase (sp,i,outt,t,pl) ->
159        C.MutCase (sp,i,head_beta_reduce outt,head_beta_reduce t,
160         List.map head_beta_reduce pl)
161     | C.Fix (i,fl) ->
162        let fl' =
163         List.map
164          (function (name,i,ty,bo) ->
165            name,i,head_beta_reduce ty,head_beta_reduce bo
166          ) fl
167        in
168         C.Fix (i,fl')
169     | C.CoFix (i,fl) ->
170        let fl' =
171         List.map
172          (function (name,ty,bo) ->
173            name,head_beta_reduce ty,head_beta_reduce bo
174          ) fl
175        in
176         C.CoFix (i,fl')
177 ;;
178
179 (* syntactic_equality up to the                 *)
180 (* distinction between fake dependent products  *)
181 (* and non-dependent products, alfa-conversion  *)
182 (*CSC: must alfa-conversion be considered or not? *)
183 let syntactic_equality t t' =
184  let module C = Cic in
185  let rec syntactic_equality t t' =
186   if t = t' then true
187   else
188    match t, t' with
189       C.Var (uri,exp_named_subst), C.Var (uri',exp_named_subst') ->
190        UriManager.eq uri uri' &&
191         syntactic_equality_exp_named_subst exp_named_subst exp_named_subst'
192     | C.Cast (te,ty), C.Cast (te',ty') ->
193        syntactic_equality te te' &&
194         syntactic_equality ty ty'
195     | C.Prod (_,s,t), C.Prod (_,s',t') ->
196        syntactic_equality s s' &&
197         syntactic_equality t t'
198     | C.Lambda (_,s,t), C.Lambda (_,s',t') ->
199        syntactic_equality s s' &&
200         syntactic_equality t t'
201     | C.LetIn (_,s,t), C.LetIn(_,s',t') ->
202        syntactic_equality s s' &&
203         syntactic_equality t t'
204     | C.Appl l, C.Appl l' ->
205        List.fold_left2 (fun b t1 t2 -> b && syntactic_equality t1 t2) true l l'
206     | C.Const (uri,exp_named_subst), C.Const (uri',exp_named_subst') ->
207        UriManager.eq uri uri' &&
208         syntactic_equality_exp_named_subst exp_named_subst exp_named_subst'
209     | C.MutInd (uri,i,exp_named_subst), C.MutInd (uri',i',exp_named_subst') ->
210        UriManager.eq uri uri' && i = i' &&
211         syntactic_equality_exp_named_subst exp_named_subst exp_named_subst'
212     | C.MutConstruct (uri,i,j,exp_named_subst),
213       C.MutConstruct (uri',i',j',exp_named_subst') ->
214        UriManager.eq uri uri' && i = i' && j = j' &&
215         syntactic_equality_exp_named_subst exp_named_subst exp_named_subst'
216     | C.MutCase (sp,i,outt,t,pl), C.MutCase (sp',i',outt',t',pl') ->
217        UriManager.eq sp sp' && i = i' &&
218         syntactic_equality outt outt' &&
219          syntactic_equality t t' &&
220           List.fold_left2
221            (fun b t1 t2 -> b && syntactic_equality t1 t2) true pl pl'
222     | C.Fix (i,fl), C.Fix (i',fl') ->
223        i = i' &&
224         List.fold_left2
225          (fun b (_,i,ty,bo) (_,i',ty',bo') ->
226            b && i = i' &&
227             syntactic_equality ty ty' &&
228              syntactic_equality bo bo') true fl fl'
229     | C.CoFix (i,fl), C.CoFix (i',fl') ->
230        i = i' &&
231         List.fold_left2
232          (fun b (_,ty,bo) (_,ty',bo') ->
233            b &&
234             syntactic_equality ty ty' &&
235              syntactic_equality bo bo') true fl fl'
236     | _, _ -> false (* we already know that t != t' *)
237  and syntactic_equality_exp_named_subst exp_named_subst1 exp_named_subst2 =
238   List.fold_left2
239    (fun b (_,t1) (_,t2) -> b && syntactic_equality t1 t2) true
240    exp_named_subst1 exp_named_subst2
241  in
242   try
243    syntactic_equality t t'
244   with
245    _ -> false
246 ;;
247
248 let xxx_syntactic_equality t t' =
249  let t1 = Sys.time () in
250  let res = syntactic_equality t t' in
251  let t2 = Sys.time () in
252  syntactic_equality_add_time := !syntactic_equality_add_time +. t2 -. t1 ;
253  res
254 ;;
255
256
257 let rec split l n =
258  match (l,n) with
259     (l,0) -> ([], l)
260   | (he::tl, n) -> let (l1,l2) = split tl (n-1) in (he::l1,l2)
261   | (_,_) -> raise ListTooShort
262 ;;
263
264 let type_of_constant uri =
265  let module C = Cic in
266  let module R = CicReduction in
267  let module U = UriManager in
268   let cobj =
269    match CicEnvironment.is_type_checked uri with
270       CicEnvironment.CheckedObj cobj -> cobj
271     | CicEnvironment.UncheckedObj uobj ->
272        raise (NotWellTyped "Reference to an unchecked constant")
273   in
274    match cobj with
275       C.Constant (_,_,ty,_) -> ty
276     | C.CurrentProof (_,_,_,ty,_) -> ty
277     | _ -> raise (WrongUriToConstant (U.string_of_uri uri))
278 ;;
279
280 let type_of_variable uri =
281  let module C = Cic in
282  let module R = CicReduction in
283  let module U = UriManager in
284   match CicEnvironment.is_type_checked uri with
285      CicEnvironment.CheckedObj (C.Variable (_,_,ty,_)) -> ty
286    | CicEnvironment.UncheckedObj (C.Variable _) ->
287       raise (NotWellTyped "Reference to an unchecked variable")
288    |  _ -> raise (WrongUriToVariable (UriManager.string_of_uri uri))
289 ;;
290
291 let type_of_mutual_inductive_defs uri i =
292  let module C = Cic in
293  let module R = CicReduction in
294  let module U = UriManager in
295   let cobj =
296    match CicEnvironment.is_type_checked uri with
297       CicEnvironment.CheckedObj cobj -> cobj
298     | CicEnvironment.UncheckedObj uobj ->
299        raise (NotWellTyped "Reference to an unchecked inductive type")
300   in
301    match cobj with
302       C.InductiveDefinition (dl,_,_) ->
303        let (_,_,arity,_) = List.nth dl i in
304         arity
305     | _ -> raise (WrongUriToMutualInductiveDefinitions (U.string_of_uri uri))
306 ;;
307
308 let type_of_mutual_inductive_constr uri i j =
309  let module C = Cic in
310  let module R = CicReduction in
311  let module U = UriManager in
312   let cobj =
313    match CicEnvironment.is_type_checked uri with
314       CicEnvironment.CheckedObj cobj -> cobj
315     | CicEnvironment.UncheckedObj uobj ->
316        raise (NotWellTyped "Reference to an unchecked constructor")
317   in
318    match cobj with
319       C.InductiveDefinition (dl,_,_) ->
320        let (_,_,_,cl) = List.nth dl i in
321         let (_,ty) = List.nth cl (j-1) in
322          ty
323     | _ -> raise (WrongUriToMutualInductiveDefinitions (U.string_of_uri uri))
324 ;;
325
326 module CicHash =
327  Hashtbl.Make
328   (struct
329     type t = Cic.term
330     let equal = (==)
331     let hash = Hashtbl.hash
332    end)
333 ;;
334
335 (* type_of_aux' is just another name (with a different scope) for type_of_aux *)
336 let rec type_of_aux' subterms_to_types metasenv context t expectedty =
337  (* Coscoy's double type-inference algorithm             *)
338  (* It computes the inner-types of every subterm of [t], *)
339  (* even when they are not needed to compute the types   *)
340  (* of other terms.                                      *)
341  let rec type_of_aux context t expectedty =
342   let module C = Cic in
343   let module R = CicReduction in
344   let module S = CicSubstitution in
345   let module U = UriManager in
346    let synthesized =
347     match t with
348        C.Rel n ->
349         (try
350           match List.nth context (n - 1) with
351              Some (_,C.Decl t) -> S.lift n t
352            | Some (_,C.Def (_,Some ty)) -> S.lift n ty
353            | Some (_,C.Def (bo,None)) ->
354               type_of_aux context (S.lift n bo) expectedty
355                  | None -> raise RelToHiddenHypothesis
356          with
357           _ -> raise (NotWellTyped "Not a close term")
358         )
359      | C.Var (uri,exp_named_subst) ->
360         visit_exp_named_subst context uri exp_named_subst ;
361         CicSubstitution.subst_vars exp_named_subst (type_of_variable uri)
362      | C.Meta (n,l) -> 
363         (* Let's visit all the subterms that will not be visited later *)
364         let (_,canonical_context,_) =
365          List.find (function (m,_,_) -> n = m) metasenv
366         in
367          let lifted_canonical_context =
368           let rec aux i =
369            function
370               [] -> []
371             | (Some (n,C.Decl t))::tl ->
372                (Some (n,C.Decl (S.lift_meta l (S.lift i t))))::(aux (i+1) tl)
373             | (Some (n,C.Def (t,None)))::tl ->
374                (Some (n,C.Def ((S.lift_meta l (S.lift i t)),None)))::
375                 (aux (i+1) tl)
376             | None::tl -> None::(aux (i+1) tl)
377             | (Some (_,C.Def (_,Some _)))::_ -> assert false
378           in
379            aux 1 canonical_context
380          in
381           let _ =
382            List.iter2
383             (fun t ct ->
384               match t,ct with
385                  _,None -> ()
386                | Some t,Some (_,C.Def (ct,_)) ->
387                   let expected_type =
388                    R.whd context
389                     (xxx_type_of_aux' metasenv context ct)
390                   in
391                    (* Maybe I am a bit too paranoid, because   *)
392                    (* if the term is well-typed than t and ct  *)
393                    (* are convertible. Nevertheless, I compute *)
394                    (* the expected type.                       *)
395                    ignore (type_of_aux context t (Some expected_type))
396                | Some t,Some (_,C.Decl ct) ->
397                   ignore (type_of_aux context t (Some ct))
398                | _,_ -> assert false (* the term is not well typed!!! *)
399             ) l lifted_canonical_context
400           in
401            let (_,canonical_context,ty) =
402             List.find (function (m,_,_) -> n = m) metasenv
403            in
404             (* Checks suppressed *)
405             CicSubstitution.lift_meta l ty
406      | C.Sort (C.Type t) -> (* TASSI: CONSTRAINT *)
407         let t' = CicUniv.fresh() in
408         if not (CicUniv.add_gt t' t ) then
409           assert false (* t' is fresh! an error in CicUniv *)
410         else
411           C.Sort (C.Type t')
412      | C.Sort _ -> C.Sort (C.Type (CicUniv.fresh())) (* TASSI: CONSTRAINT *)
413      | C.Implicit _ -> raise (Impossible 21)
414      | C.Cast (te,ty) ->
415         (* Let's visit all the subterms that will not be visited later *)
416         let _ = type_of_aux context te (Some (head_beta_reduce ty)) in
417         let _ = type_of_aux context ty None in
418          (* Checks suppressed *)
419          ty
420      | C.Prod (name,s,t) ->
421         let sort1 = type_of_aux context s None
422         and sort2 = type_of_aux ((Some (name,(C.Decl s)))::context) t None in
423          sort_of_prod context (name,s) (sort1,sort2)
424      | C.Lambda (n,s,t) ->
425         (* Let's visit all the subterms that will not be visited later *)
426          let _ = type_of_aux context s None in 
427          let expected_target_type =
428           match expectedty with
429              None -> None
430            | Some expectedty' ->
431               let ty =
432                match R.whd context expectedty' with
433                   C.Prod (_,_,expected_target_type) ->
434                    head_beta_reduce expected_target_type
435                 | _ -> assert false
436               in
437                Some ty
438          in 
439           let type2 =
440            type_of_aux ((Some (n,(C.Decl s)))::context) t expected_target_type
441           in
442            (* Checks suppressed *)
443            C.Prod (n,s,type2)
444      | C.LetIn (n,s,t) ->
445 (*CSC: What are the right expected types for the source and *)
446 (*CSC: target of a LetIn? None used.                        *)
447         (* Let's visit all the subterms that will not be visited later *)
448         let ty = type_of_aux context s None in
449          let t_typ =
450           (* Checks suppressed *)
451           type_of_aux ((Some (n,(C.Def (s,Some ty))))::context) t None
452          in  (* CicSubstitution.subst s t_typ *)
453           if does_not_occur 1 t_typ then
454            (* since [Rel 1] does not occur in typ, substituting any term *)
455            (* in place of [Rel 1] is equivalent to delifting once        *)
456            CicSubstitution.subst (C.Implicit None) t_typ
457           else
458            C.LetIn (n,s,t_typ)
459      | C.Appl (he::tl) when List.length tl > 0 ->
460         (* 
461         let expected_hetype =
462          (* Inefficient, the head is computed twice. But I know *)
463          (* of no other solution. *)                               
464          (head_beta_reduce
465           (R.whd context (xxx_type_of_aux' metasenv context he)))
466         in 
467          let hetype = type_of_aux context he (Some expected_hetype) in 
468          let tlbody_and_type =
469           let rec aux =
470            function
471               _,[] -> []
472             | C.Prod (n,s,t),he::tl ->
473                (he, type_of_aux context he (Some (head_beta_reduce s)))::
474                 (aux (R.whd context (S.subst he t), tl))
475             | _ -> assert false
476           in
477            aux (expected_hetype, tl) *)
478          let hetype = R.whd context (type_of_aux context he None) in 
479          let tlbody_and_type =
480           let rec aux =
481            function
482               _,[] -> []
483             | C.Prod (n,s,t),he::tl ->
484                (he, type_of_aux context he (Some (head_beta_reduce s)))::
485                 (aux (R.whd context (S.subst he t), tl))
486             | _ -> assert false
487           in
488            aux (hetype, tl)
489          in
490           eat_prods context hetype tlbody_and_type
491      | C.Appl _ -> raise (NotWellTyped "Appl: no arguments")
492      | C.Const (uri,exp_named_subst) ->
493         visit_exp_named_subst context uri exp_named_subst ;
494         CicSubstitution.subst_vars exp_named_subst (type_of_constant uri)
495      | C.MutInd (uri,i,exp_named_subst) ->
496         visit_exp_named_subst context uri exp_named_subst ;
497         CicSubstitution.subst_vars exp_named_subst
498          (type_of_mutual_inductive_defs uri i)
499      | C.MutConstruct (uri,i,j,exp_named_subst) ->
500         visit_exp_named_subst context uri exp_named_subst ;
501         CicSubstitution.subst_vars exp_named_subst
502          (type_of_mutual_inductive_constr uri i j)
503      | C.MutCase (uri,i,outtype,term,pl) ->
504         let outsort = type_of_aux context outtype None in
505         let (need_dummy, k) =
506          let rec guess_args context t =
507           match CicReduction.whd context t with
508              C.Sort _ -> (true, 0)
509            | C.Prod (name, s, t) ->
510               let (b, n) = guess_args ((Some (name,(C.Decl s)))::context) t in
511                if n = 0 then
512                 (* last prod before sort *)
513                 match CicReduction.whd context s with
514                    C.MutInd (uri',i',_) when U.eq uri' uri && i' = i ->
515                     (false, 1)
516                  | C.Appl ((C.MutInd (uri',i',_)) :: _)
517                     when U.eq uri' uri && i' = i -> (false, 1)
518                  | _ -> (true, 1)
519                else
520                 (b, n + 1)
521            | _ -> raise (NotWellTyped "MutCase: outtype ill-formed")
522          in
523           let (b, k) = guess_args context outsort in
524            if not b then (b, k - 1) else (b, k)
525         in
526         let (parameters, arguments,exp_named_subst) =
527          let type_of_term =
528           xxx_type_of_aux' metasenv context term
529          in
530           match
531            R.whd context (type_of_aux context term
532             (Some (head_beta_reduce type_of_term)))
533           with
534              (*CSC manca il caso dei CAST *)
535              C.MutInd (uri',i',exp_named_subst) ->
536               (* Checks suppressed *)
537               [],[],exp_named_subst
538            | C.Appl (C.MutInd (uri',i',exp_named_subst) :: tl) ->
539              let params,args =
540               split tl (List.length tl - k)
541              in params,args,exp_named_subst
542            | _ ->
543              raise (NotWellTyped "MutCase: the term is not an inductive one")
544         in
545          (* Checks suppressed *)
546          (* Let's visit all the subterms that will not be visited later *)
547          let (cl,parsno) =
548           match CicEnvironment.get_cooked_obj uri with
549              C.InductiveDefinition (tl,_,parsno) ->
550               let (_,_,_,cl) = List.nth tl i in (cl,parsno)
551            | _ ->
552              raise (WrongUriToMutualInductiveDefinitions (U.string_of_uri uri))
553          in
554           let _ =
555            List.fold_left
556             (fun j (p,(_,c)) ->
557               let cons =
558                if parameters = [] then
559                 (C.MutConstruct (uri,i,j,exp_named_subst))
560                else
561                 (C.Appl (C.MutConstruct (uri,i,j,exp_named_subst)::parameters))
562               in
563                let expectedtype =
564                 type_of_branch context parsno need_dummy outtype cons
565                   (xxx_type_of_aux' metasenv context cons)
566                in
567                 ignore (type_of_aux context p
568                  (Some (head_beta_reduce expectedtype))) ;
569                 j+1
570             ) 1 (List.combine pl cl)
571           in
572            if not need_dummy then
573             C.Appl ((outtype::arguments)@[term])
574            else if arguments = [] then
575             outtype
576            else
577             C.Appl (outtype::arguments)
578      | C.Fix (i,fl) ->
579         (* Let's visit all the subterms that will not be visited later *)
580         let context' =
581          List.rev
582           (List.map
583             (fun (n,_,ty,_) ->
584               let _ = type_of_aux context ty None in
585                (Some (C.Name n,(C.Decl ty)))
586             ) fl
587           ) @
588           context
589         in
590          let _ =
591           List.iter
592            (fun (_,_,ty,bo) ->
593              let expectedty =
594               head_beta_reduce (CicSubstitution.lift (List.length fl) ty)
595              in
596               ignore (type_of_aux context' bo (Some expectedty))
597            ) fl
598          in
599           (* Checks suppressed *)
600           let (_,_,ty,_) = List.nth fl i in
601            ty
602      | C.CoFix (i,fl) ->
603         (* Let's visit all the subterms that will not be visited later *)
604         let context' =
605          List.rev
606           (List.map
607             (fun (n,ty,_) ->
608               let _ = type_of_aux context ty None in
609                (Some (C.Name n,(C.Decl ty)))
610             ) fl
611           ) @
612           context
613         in
614          let _ =
615           List.iter
616            (fun (_,ty,bo) ->
617              let expectedty =
618               head_beta_reduce (CicSubstitution.lift (List.length fl) ty)
619              in
620               ignore (type_of_aux context' bo (Some expectedty))
621            ) fl
622          in
623           (* Checks suppressed *)
624           let (_,ty,_) = List.nth fl i in
625            ty
626    in
627     let synthesized' = head_beta_reduce synthesized in
628      let types,res =
629       match expectedty with
630          None ->
631           (* No expected type *)
632           {synthesized = synthesized' ; expected = None}, synthesized
633        | Some ty when xxx_syntactic_equality synthesized' ty ->
634           (* The expected type is synthactically equal to *)
635           (* the synthesized type. Let's forget it.       *)
636           {synthesized = synthesized' ; expected = None}, synthesized
637        | Some expectedty' ->
638           {synthesized = synthesized' ; expected = Some expectedty'},
639           expectedty'
640      in
641       CicHash.add subterms_to_types t types ;
642       res
643
644  and visit_exp_named_subst context uri exp_named_subst =
645   let uris_and_types =
646    match CicEnvironment.get_cooked_obj uri with
647       Cic.Constant (_,_,_,params)
648     | Cic.CurrentProof (_,_,_,_,params)
649     | Cic.Variable (_,_,_,params)
650     | Cic.InductiveDefinition (_,params,_) ->
651        List.map
652         (function uri ->
653           match CicEnvironment.get_cooked_obj uri with
654              Cic.Variable (_,None,ty,_) -> uri,ty
655            | _ -> assert false (* the theorem is well-typed *)
656         ) params
657   in
658    let rec check uris_and_types subst =
659     match uris_and_types,subst with
660        _,[] -> []
661      | (uri,ty)::tytl,(uri',t)::substtl when uri = uri' ->
662         ignore (type_of_aux context t (Some ty)) ;
663         let tytl' =
664          List.map
665           (function uri,t' -> uri,(CicSubstitution.subst_vars [uri',t] t')) tytl
666         in
667          check tytl' substtl
668      | _,_ -> assert false (* the theorem is well-typed *)
669    in
670     check uris_and_types exp_named_subst
671
672  and sort_of_prod context (name,s) (t1, t2) =
673   let module C = Cic in
674    let t1' = CicReduction.whd context t1 in
675    let t2' = CicReduction.whd ((Some (name,C.Decl s))::context) t2 in
676    match (t1', t2') with
677       (C.Sort _, C.Sort s2)
678         when (s2 = C.Prop or s2 = C.Set or s2 = C.CProp) -> 
679          (* different from Coq manual!!! *)
680          C.Sort s2
681     | (C.Sort (C.Type t1), C.Sort (C.Type t2)) -> 
682        (* TASSI: CONSRTAINTS: the same in cictypechecker,cicrefine *)
683        let t' = CicUniv.fresh() in
684        if not (CicUniv.add_ge t' t1) || not (CicUniv.add_ge t' t2) then
685          assert false ; (* not possible, error in CicUniv *)
686        C.Sort (C.Type t')
687     | (C.Sort _,C.Sort (C.Type t1)) -> 
688         (* TASSI: CONSRTAINTS: the same in cictypechecker,cicrefine *)
689         C.Sort (C.Type t1) (* c'e' bisogno di un fresh? *)
690     | (C.Meta _, C.Sort _) -> t2'
691     | (C.Meta _, (C.Meta (_,_) as t))
692     | (C.Sort _, (C.Meta (_,_) as t)) when CicUtil.is_closed t ->
693         t2'
694     | (_,_) ->
695       raise
696        (NotWellTyped
697         ("Prod: sort1= " ^ CicPp.ppterm t1' ^ " ; sort2= " ^ CicPp.ppterm t2'))
698
699  and eat_prods context hetype =
700   (*CSC: siamo sicuri che le are_convertible non lavorino con termini non *)
701   (*CSC: cucinati                                                         *)
702   function
703      [] -> hetype
704    | (hete, hety)::tl ->
705     (match (CicReduction.whd context hetype) with
706         Cic.Prod (n,s,t) ->
707          (* Checks suppressed *)
708          eat_prods context (CicSubstitution.subst hete t) tl
709       | _ -> raise (NotWellTyped "Appl: wrong Prod-type")
710     )
711
712 and type_of_branch context argsno need_dummy outtype term constype =
713  let module C = Cic in
714  let module R = CicReduction in
715   match R.whd context constype with
716      C.MutInd (_,_,_) ->
717       if need_dummy then
718        outtype
719       else
720        C.Appl [outtype ; term]
721    | C.Appl (C.MutInd (_,_,_)::tl) ->
722       let (_,arguments) = split tl argsno
723       in
724        if need_dummy && arguments = [] then
725         outtype
726        else
727         C.Appl (outtype::arguments@(if need_dummy then [] else [term]))
728    | C.Prod (name,so,de) ->
729       let term' =
730        match CicSubstitution.lift 1 term with
731           C.Appl l -> C.Appl (l@[C.Rel 1])
732         | t -> C.Appl [t ; C.Rel 1]
733       in
734        C.Prod (C.Anonymous,so,type_of_branch
735         ((Some (name,(C.Decl so)))::context) argsno need_dummy
736         (CicSubstitution.lift 1 outtype) term' de)
737   | _ -> raise (Impossible 20)
738
739  in
740   type_of_aux context t expectedty
741 ;;
742
743 let double_type_of metasenv context t expectedty =
744  let subterms_to_types = CicHash.create 503 in
745   ignore (type_of_aux' subterms_to_types metasenv context t expectedty) ;
746   subterms_to_types
747 ;;