]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_disambiguation/nCicDisambiguate.ml
520db6aca994a6710ba955362387803e8564d7a7
[helm.git] / helm / software / components / ng_disambiguation / nCicDisambiguate.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: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
13
14 open Printf
15
16 open DisambiguateTypes
17 open UriManager
18
19 module Ast = CicNotationPt
20 module NRef = NReference 
21
22 let debug_print _ = ();;
23 (* let debug_print s = prerr_endline (Lazy.force s);; *)
24
25 let cic_name_of_name = function
26   | Ast.Ident (n, None) ->  n
27   | _ -> assert false
28 ;;
29
30 let rec mk_rels howmany from =
31   match howmany with 
32   | 0 -> []
33   | _ -> (NCic.Rel (howmany + from)) :: (mk_rels (howmany-1) from)
34 ;;
35
36 let refine_term 
37  metasenv subst context uri ~coercion_db ~use_coercions term expty _ ~localization_tbl=
38   assert (uri=None);
39   debug_print (lazy (sprintf "TEST_INTERPRETATION: %s" 
40     (NCicPp.ppterm ~metasenv ~subst ~context term)));
41   try
42     let localise t = 
43       try NCicUntrusted.NCicHash.find localization_tbl t
44       with Not_found -> 
45         prerr_endline ("NOT LOCALISED" ^ NCicPp.ppterm ~metasenv ~subst ~context t);
46         (*assert false*) HExtlib.dummy_floc
47     in
48     let metasenv, subst, term, _ = 
49       NCicRefiner.typeof
50         (NCicUnifHint.db ())
51         ~look_for_coercion:(
52           if use_coercions then 
53            NCicCoercion.look_for_coercion coercion_db
54           else (fun _ _ _ _ _ -> []))
55         metasenv subst context term expty ~localise 
56     in
57      Disambiguate.Ok (term, metasenv, subst, ())
58   with
59   | NCicRefiner.Uncertain loc_msg ->
60       debug_print (lazy ("UNCERTAIN: [" ^ snd (Lazy.force loc_msg) ^ "] " ^ 
61         NCicPp.ppterm ~metasenv ~subst ~context term)) ;
62       Disambiguate.Uncertain loc_msg
63   | NCicRefiner.RefineFailure loc_msg ->
64       debug_print (lazy (sprintf "PRUNED:\nterm%s\nmessage:%s"
65         (NCicPp.ppterm ~metasenv ~subst ~context term) (snd(Lazy.force loc_msg))));
66       Disambiguate.Ko loc_msg
67 ;;
68
69 let refine_obj 
70   ~coercion_db metasenv subst context _uri 
71   ~use_coercions obj _ _ugraph ~localization_tbl 
72 =
73   assert (metasenv=[]);
74   assert (subst=[]);
75   let localise t = 
76     try NCicUntrusted.NCicHash.find localization_tbl t
77     with Not_found -> 
78       prerr_endline (NCicPp.ppterm ~metasenv ~subst ~context t);
79       (*assert false*)HExtlib.dummy_floc
80   in
81   try
82     let obj =
83       NCicRefiner.typeof_obj
84         (NCicUnifHint.db ())
85         ~look_for_coercion:(
86           if use_coercions then 
87            NCicCoercion.look_for_coercion coercion_db
88           else (fun _ _ _ _ _ -> []))
89         obj ~localise 
90     in
91       Disambiguate.Ok (obj, [], [], ())
92   with
93   | NCicRefiner.Uncertain loc_msg ->
94       debug_print (lazy ("UNCERTAIN: [" ^ snd (Lazy.force loc_msg) ^ "] " ^ 
95         NCicPp.ppobj obj)) ;
96       Disambiguate.Uncertain loc_msg
97   | NCicRefiner.RefineFailure loc_msg ->
98       debug_print (lazy (sprintf "PRUNED:\nobj: %s\nmessage: %s"
99         (NCicPp.ppobj obj) (snd(Lazy.force loc_msg))));
100       Disambiguate.Ko loc_msg
101 ;;
102   
103
104   (* TODO move it to Cic *)
105 let find_in_context name context =
106   let rec aux acc = function
107     | [] -> raise Not_found
108     | hd :: _ when hd = name -> acc
109     | _ :: tl ->  aux (acc + 1) tl
110   in
111   aux 1 context
112
113 let interpretate_term_and_interpretate_term_option 
114   ?(create_dummy_ids=false) 
115     ~obj_context ~mk_choice ~env ~uri ~is_path ~localization_tbl 
116 =
117   (* create_dummy_ids shouldbe used only for interpretating patterns *)
118   assert (uri = None);
119
120   let rec aux ~localize loc context = function
121     | CicNotationPt.AttributedTerm (`Loc loc, term) ->
122         let res = aux ~localize loc context term in
123         if localize then 
124          NCicUntrusted.NCicHash.add localization_tbl res loc;
125        res
126     | CicNotationPt.AttributedTerm (_, term) -> aux ~localize loc context term
127     | CicNotationPt.Appl (CicNotationPt.Symbol (symb, i) :: args) ->
128         let cic_args = List.map (aux ~localize loc context) args in
129         Disambiguate.resolve ~mk_choice ~env (Symbol (symb, i)) (`Args cic_args)
130     | CicNotationPt.Appl terms ->
131        NCic.Appl (List.map (aux ~localize loc context) terms)
132     | CicNotationPt.Binder (binder_kind, (var, typ), body) ->
133         let cic_type = aux_option ~localize loc context `Type typ in
134         let cic_name = cic_name_of_name var  in
135         let cic_body = aux ~localize loc (cic_name :: context) body in
136         (match binder_kind with
137         | `Lambda -> NCic.Lambda (cic_name, cic_type, cic_body)
138         | `Pi
139         | `Forall -> NCic.Prod (cic_name, cic_type, cic_body)
140         | `Exists ->
141             Disambiguate.resolve ~env ~mk_choice (Symbol ("exists", 0))
142               (`Args [ cic_type; NCic.Lambda (cic_name, cic_type, cic_body) ]))
143     | CicNotationPt.Case (term, indty_ident, outtype, branches) ->
144         let cic_term = aux ~localize loc context term in
145         let cic_outtype = aux_option ~localize loc context `Term outtype in
146         let do_branch ((_, _, args), term) =
147          let rec do_branch' context = function
148            | [] -> aux ~localize loc context term
149            | (name, typ) :: tl ->
150                let cic_name = cic_name_of_name name in
151                let cic_body = do_branch' (cic_name :: context) tl in
152                let typ =
153                  match typ with
154                  | None -> NCic.Implicit `Type
155                  | Some typ -> aux ~localize loc context typ
156                in
157                NCic.Lambda (cic_name, typ, cic_body)
158          in
159           do_branch' context args
160         in
161         if create_dummy_ids then
162          let branches =
163           List.map
164            (function
165                Ast.Wildcard,term -> ("wildcard",None,[]), term
166              | Ast.Pattern _,_ ->
167                 raise (DisambiguateTypes.Invalid_choice 
168                  (lazy (loc, "Syntax error: the left hand side of a "^
169                    "branch pattern must be \"_\"")))
170            ) branches
171          in
172          (*
173           NCic.MutCase (ref, cic_outtype, cic_term,
174             (List.map do_branch branches))
175           *) ignore branches; assert false (* patterns not implemented yet *)
176         else
177          let indtype_ref =
178           match indty_ident with
179           | Some (indty_ident, _) ->
180              (match Disambiguate.resolve ~env ~mk_choice 
181                 (Id indty_ident) (`Args []) with
182               | NCic.Const (NReference.Ref (_,NReference.Ind _) as r) -> r
183               | NCic.Implicit _ ->
184                  raise (Disambiguate.Try_again 
185                   (lazy "The type of the term to be matched is still unknown"))
186               | t ->
187                 raise (DisambiguateTypes.Invalid_choice 
188                   (lazy (loc,"The type of the term to be matched "^
189                           "is not (co)inductive: " ^ NCicPp.ppterm 
190                           ~metasenv:[] ~subst:[] ~context:[] t))))
191           | None ->
192               let rec fst_constructor =
193                 function
194                    (Ast.Pattern (head, _, _), _) :: _ -> head
195                  | (Ast.Wildcard, _) :: tl -> fst_constructor tl
196                  | [] -> raise (Invalid_choice (lazy (loc,"The type "^
197                      "of the term to be matched cannot be determined "^
198                      "because it is an inductive type without constructors "^
199                      "or because all patterns use wildcards")))
200               in
201 (*
202               DisambiguateTypes.Environment.iter
203                   (fun k v ->
204                       prerr_endline
205                         (DisambiguateTypes.string_of_domain_item k ^ " => " ^
206                         description_of_alias v)) env; 
207 *)
208               (match Disambiguate.resolve ~env ~mk_choice
209                 (Id (fst_constructor branches)) (`Args []) with
210               | NCic.Const (NReference.Ref (_,NReference.Con _) as r) -> 
211                    let b,_,_,_,_ = NCicEnvironment.get_checked_indtys r in
212                    NReference.mk_indty b r
213               | NCic.Implicit _ ->
214                  raise (Disambiguate.Try_again 
215                   (lazy "The type of the term to be matched is still unknown"))
216               | t ->
217                 raise (DisambiguateTypes.Invalid_choice 
218                   (lazy (loc, 
219                   "The type of the term to be matched is not (co)inductive: " 
220                   ^ NCicPp.ppterm ~metasenv:[] ~subst:[] ~context:[] t))))
221          in
222          let _,leftsno,itl,_,indtyp_no =
223           NCicEnvironment.get_checked_indtys indtype_ref in
224          let _,_,_,cl =
225           try
226            List.nth itl indtyp_no
227           with _ -> assert false in
228          let rec count_prod t =
229                  match NCicReduction.whd ~subst:[] [] t with
230                NCic.Prod (_, _, t) -> 1 + (count_prod t)
231              | _ -> 0 
232          in 
233          let rec sort branches cl =
234           match cl with
235              [] ->
236               let rec analyze unused unrecognized useless =
237                function
238                   [] ->
239                    if unrecognized != [] then
240                     raise (DisambiguateTypes.Invalid_choice
241                      (lazy
242                        (loc,"Unrecognized constructors: " ^
243                         String.concat " " unrecognized)))
244                    else if useless > 0 then
245                     raise (DisambiguateTypes.Invalid_choice
246                      (lazy
247                        (loc,"The last " ^ string_of_int useless ^
248                         "case" ^ if useless > 1 then "s are" else " is" ^
249                         " unused")))
250                    else
251                     []
252                 | (Ast.Wildcard,_)::tl when not unused ->
253                     analyze true unrecognized useless tl
254                 | (Ast.Pattern (head,_,_),_)::tl when not unused ->
255                     analyze unused (head::unrecognized) useless tl
256                 | _::tl -> analyze unused unrecognized (useless + 1) tl
257               in
258                analyze false [] 0 branches
259            | (_,name,ty)::cltl ->
260               let rec find_and_remove =
261                function
262                   [] ->
263                    raise
264                     (DisambiguateTypes.Invalid_choice
265                      (lazy (loc, "Missing case: " ^ name)))
266                 | ((Ast.Wildcard, _) as branch :: _) as branches ->
267                     branch, branches
268                 | (Ast.Pattern (name',_,_),_) as branch :: tl
269                    when name = name' ->
270                     branch,tl
271                 | branch::tl ->
272                    let found,rest = find_and_remove tl in
273                     found, branch::rest
274               in
275                let branch,tl = find_and_remove branches in
276                match branch with
277                   Ast.Pattern (name,y,args),term ->
278                    if List.length args = count_prod ty - leftsno then
279                     ((name,y,args),term)::sort tl cltl
280                    else
281                     raise
282                      (DisambiguateTypes.Invalid_choice
283                       (lazy (loc,"Wrong number of arguments for " ^ name)))
284                 | Ast.Wildcard,term ->
285                    let rec mk_lambdas =
286                     function
287                        0 -> term
288                      | n ->
289                         CicNotationPt.Binder
290                          (`Lambda, (CicNotationPt.Ident ("_", None), None),
291                            mk_lambdas (n - 1))
292                    in
293                     (("wildcard",None,[]),
294                      mk_lambdas (count_prod ty - leftsno)) :: sort tl cltl
295          in
296           let branches = sort branches cl in
297            NCic.Match (indtype_ref, cic_outtype, cic_term,
298             (List.map do_branch branches))
299     | CicNotationPt.Cast (t1, t2) ->
300         let cic_t1 = aux ~localize loc context t1 in
301         let cic_t2 = aux ~localize loc context t2 in
302         NCic.LetIn ("_",cic_t2,cic_t1, NCic.Rel 1)
303     | CicNotationPt.LetIn ((name, typ), def, body) ->
304         let cic_def = aux ~localize loc context def in
305         let cic_name = cic_name_of_name name in
306         let cic_typ =
307           match typ with
308           | None -> NCic.Implicit `Type
309           | Some t -> aux ~localize loc context t
310         in
311         let cic_body = aux ~localize loc (cic_name :: context) body in
312         NCic.LetIn (cic_name, cic_typ, cic_def, cic_body)
313     | CicNotationPt.LetRec (_kind, _defs, _body) -> NCic.Implicit `Term
314     | CicNotationPt.Ident _
315     | CicNotationPt.Uri _ when is_path -> raise Disambiguate.PathNotWellFormed
316     | CicNotationPt.Ident (name, subst) ->
317        assert (subst = None);
318        (try
319          NCic.Rel (find_in_context name context)
320        with Not_found -> 
321          try NCic.Const (List.assoc name obj_context)
322          with Not_found ->
323            Disambiguate.resolve ~env ~mk_choice (Id name) (`Args []))
324     | CicNotationPt.Uri (name, subst) ->
325        assert (subst = None);
326        (try
327          NCic.Const (NRef.reference_of_string name)
328         with NRef.IllFormedReference _ ->
329          CicNotationPt.fail loc "Ill formed reference")
330     | CicNotationPt.Implicit -> NCic.Implicit `Term
331     | CicNotationPt.UserInput -> NCic.Implicit `Hole
332     | CicNotationPt.Num (num, i) -> 
333         Disambiguate.resolve ~env ~mk_choice (Num i) (`Num_arg num)
334     | CicNotationPt.Meta (index, subst) ->
335         let cic_subst =
336          List.map
337           (function None -> assert false| Some t -> aux ~localize loc context t)
338           subst
339         in
340          NCic.Meta (index, (0, NCic.Ctx cic_subst))
341     | CicNotationPt.Sort `Prop -> NCic.Sort NCic.Prop
342     | CicNotationPt.Sort `Set -> NCic.Sort (NCic.Type
343        [false,NUri.uri_of_string "cic:/matita/pts/Type.univ"])
344     | CicNotationPt.Sort (`Type _u) -> NCic.Sort (NCic.Type
345        [false,NUri.uri_of_string "cic:/matita/pts/Type.univ"])
346     | CicNotationPt.Sort (`NType s) -> NCic.Sort (NCic.Type
347        [false,NUri.uri_of_string ("cic:/matita/pts/Type" ^ s ^ ".univ")])
348     | CicNotationPt.Sort (`CProp _u) -> NCic.Sort (NCic.Type
349        [false,NUri.uri_of_string "cic:/matita/pts/CProp.univ"])
350     | CicNotationPt.Symbol (symbol, instance) ->
351         Disambiguate.resolve ~env ~mk_choice 
352          (Symbol (symbol, instance)) (`Args [])
353     | CicNotationPt.Variable _
354     | CicNotationPt.Magic _
355     | CicNotationPt.Layout _
356     | CicNotationPt.Literal _ -> assert false (* god bless Bologna *)
357   and aux_option ~localize loc context annotation = function
358     | None -> NCic.Implicit annotation
359     | Some (CicNotationPt.AttributedTerm (`Loc loc, term)) ->
360         let res = aux_option ~localize loc context annotation (Some term) in
361         if localize then 
362           NCicUntrusted.NCicHash.add localization_tbl res loc;
363         res
364     | Some (CicNotationPt.AttributedTerm (_, term)) ->
365         aux_option ~localize loc context annotation (Some term)
366     | Some CicNotationPt.Implicit -> NCic.Implicit annotation
367     | Some term -> aux ~localize loc context term
368   in
369    (fun ~context -> aux ~localize:true HExtlib.dummy_floc context),
370    (fun ~context -> aux_option ~localize:true HExtlib.dummy_floc context)
371 ;;
372
373 let interpretate_term ?(create_dummy_ids=false) ~context ~env ~uri ~is_path ast
374      ~obj_context ~localization_tbl ~mk_choice
375 =
376   let context = List.map fst context in
377   fst 
378     (interpretate_term_and_interpretate_term_option 
379       ~obj_context ~mk_choice ~create_dummy_ids ~env ~uri ~is_path ~localization_tbl)
380     ~context ast
381 ;;
382
383 let interpretate_term_option 
384   ?(create_dummy_ids=false) ~context ~env ~uri ~is_path 
385   ~localization_tbl ~mk_choice ~obj_context
386 =
387   let context = List.map fst context in
388   snd 
389     (interpretate_term_and_interpretate_term_option 
390       ~obj_context ~mk_choice ~create_dummy_ids ~env ~uri ~is_path ~localization_tbl)
391     ~context 
392 ;;
393
394 let disambiguate_path path =
395   let localization_tbl = NCicUntrusted.NCicHash.create 23 in
396   fst
397     (interpretate_term_and_interpretate_term_option 
398     ~obj_context:[] ~mk_choice:(fun _ -> assert false)
399     ~create_dummy_ids:true ~env:DisambiguateTypes.Environment.empty
400     ~uri:None ~is_path:true ~localization_tbl) ~context:[] path
401 ;;
402
403 let new_flavour_of_flavour = function 
404   | `Definition -> `Definition
405   | `MutualDefinition -> `Definition 
406   | `Fact -> `Fact
407   | `Lemma -> `Lemma
408   | `Remark -> `Corollary
409   | `Theorem -> `Theorem
410   | `Variant -> `Corollary 
411   | `Axiom -> `Fact
412 ;;
413
414 let ncic_name_of_ident = function
415   | Ast.Ident (name, None) -> name
416   | _ -> assert false
417 ;;
418
419 let interpretate_obj 
420 (*      ?(create_dummy_ids=false)  *)
421      ~context ~env ~uri ~is_path obj ~localization_tbl ~mk_choice 
422 =
423  assert (context = []);
424  assert (is_path = false);
425  let interpretate_term ~obj_context =
426   interpretate_term ~mk_choice ~localization_tbl ~obj_context in
427  let interpretate_term_option ~obj_context =
428    interpretate_term_option ~mk_choice ~localization_tbl ~obj_context in
429  let uri = match uri with | None -> assert false | Some u -> u in
430  match obj with
431  | CicNotationPt.Theorem (flavour, name, ty, bo) ->
432      let ty' = 
433        interpretate_term 
434          ~obj_context:[] ~context:[] ~env ~uri:None ~is_path:false ty 
435      in
436      let height = (* XXX calculate *) 0 in
437      uri, height, [], [], 
438      (match bo,flavour with
439       | None,`Axiom -> 
440           let attrs = `Provided, new_flavour_of_flavour flavour, `Regular in
441           NCic.Constant ([],name,None,ty',attrs)
442       | Some _,`Axiom -> assert false
443       | None,_ ->
444           let attrs = `Provided, new_flavour_of_flavour flavour, `Regular in
445           NCic.Constant ([],name,Some (NCic.Implicit `Term),ty',attrs)
446       | Some bo,_ ->
447         (match bo with
448          | CicNotationPt.LetRec (kind, defs, _) ->
449              let inductive = kind = `Inductive in
450              let _,obj_context =
451                List.fold_left
452                  (fun (i,acc) (_,(name,_),_,k) -> 
453                   (i+1, 
454                     (ncic_name_of_ident name, NReference.reference_of_spec uri 
455                      (if inductive then NReference.Fix (i,k,0)
456                       else NReference.CoFix i)) :: acc))
457                  (0,[]) defs
458              in
459              let inductiveFuns =
460                List.map
461                  (fun (params, (name, typ), body, decr_idx) ->
462                    let add_binders kind t =
463                     List.fold_right
464                      (fun var t -> 
465                         CicNotationPt.Binder (kind, var, t)) params t
466                    in
467                    let cic_body =
468                      interpretate_term 
469                        ~obj_context ~context ~env ~uri:None ~is_path:false
470                        (add_binders `Lambda body) 
471                    in
472                    let cic_type =
473                      interpretate_term_option 
474                        ~obj_context:[]
475                        ~context ~env ~uri:None ~is_path:false `Type
476                        (HExtlib.map_option (add_binders `Pi) typ)
477                    in
478                    ([],ncic_name_of_ident name, decr_idx, cic_type, cic_body))
479                  defs
480              in
481              let attrs = `Provided, new_flavour_of_flavour flavour in
482              NCic.Fixpoint (inductive,inductiveFuns,attrs)
483          | bo -> 
484              let bo = 
485                interpretate_term 
486                 ~obj_context:[] ~context:[] ~env ~uri:None ~is_path:false bo
487              in
488              let attrs = `Provided, new_flavour_of_flavour flavour, `Regular in
489              NCic.Constant ([],name,Some bo,ty',attrs)))
490  | CicNotationPt.Inductive (params,tyl) ->
491     let context,params =
492      let context,res =
493       List.fold_left
494        (fun (context,res) (name,t) ->
495          let t =
496           match t with
497              None -> CicNotationPt.Implicit
498            | Some t -> t in
499          let name = cic_name_of_name name in
500          let t =
501           interpretate_term ~obj_context:[] ~context ~env ~uri:None
502            ~is_path:false t
503          in
504           (name,NCic.Decl t)::context,(name,t)::res
505        ) ([],[]) params
506      in
507       context,List.rev res in
508     let add_params =
509      List.fold_right (fun (name,ty) t -> NCic.Prod (name,ty,t)) params in
510     let leftno = List.length params in
511     let obj_context =
512      snd (
513       List.fold_left
514        (fun (i,res) (name,_,_,_) ->
515          let _,inductive,_,_ =
516           (* ??? *)
517           try List.hd tyl with Failure _ -> assert false in
518          let nref =
519           NReference.reference_of_spec uri (NReference.Ind (inductive,i,leftno))
520          in
521           i+1,(name,nref)::res)
522        (0,[]) tyl) in
523     let tyl =
524      List.map
525       (fun (name,_,ty,cl) ->
526         let ty' =
527          add_params
528          (interpretate_term ~obj_context:[] ~context ~env ~uri:None
529            ~is_path:false ty) in
530         let cl' =
531          List.map
532           (fun (name,ty) ->
533             let ty' =
534              add_params
535               (interpretate_term ~obj_context ~context ~env ~uri:None
536                 ~is_path:false ty) in
537             let relevance = [] in
538              relevance,name,ty'
539           ) cl in
540         let relevance = [] in
541          relevance,name,ty',cl'
542       ) tyl
543     in
544      let height = (* XXX calculate *) 0 in
545      let attrs = `Provided, `Regular in
546      uri, height, [], [], 
547      NCic.Inductive (true,leftno,tyl,attrs)
548  | CicNotationPt.Record (params,name,ty,fields) ->
549     let context,params =
550      let context,res =
551       List.fold_left
552        (fun (context,res) (name,t) ->
553          let t =
554           match t with
555              None -> CicNotationPt.Implicit
556            | Some t -> t in
557          let name = cic_name_of_name name in
558          let t =
559           interpretate_term ~obj_context:[] ~context ~env ~uri:None
560            ~is_path:false t
561          in
562           (name,NCic.Decl t)::context,(name,t)::res
563        ) ([],[]) params
564      in
565       context,List.rev res in
566     let add_params =
567      List.fold_right (fun (name,ty) t -> NCic.Prod (name,ty,t)) params in
568     let leftno = List.length params in
569     let ty' =
570      add_params
571       (interpretate_term ~obj_context:[] ~context ~env ~uri:None
572         ~is_path:false ty) in
573     let fields' =
574      snd (
575       List.fold_left
576        (fun (context,res) (name,ty,_coercion,_arity) ->
577          let ty =
578           interpretate_term ~obj_context:[] ~context ~env ~uri:None
579            ~is_path:false ty in
580          let context' = (name,NCic.Decl ty)::context in
581           context',(name,ty)::res
582        ) (context,[]) fields) in
583     let concl =
584      let nref =
585       NReference.reference_of_spec uri (NReference.Ind (true,0,leftno)) in
586      let mutind = NCic.Const nref in
587      if params = [] then mutind
588      else
589       NCic.Appl
590        (mutind::mk_rels (List.length params) (List.length fields)) in
591     let con =
592      List.fold_left (fun t (name,ty) -> NCic.Prod (name,ty,t)) concl fields' in
593     let con' = add_params con in
594     let relevance = [] in
595     let tyl = [relevance,name,ty',[relevance,"mk_" ^ name,con']] in
596     let field_names = List.map (fun (x,_,y,z) -> x,y,z) fields in
597      let height = (* XXX calculate *) 0 in
598      let attrs = `Provided, `Record field_names in
599      uri, height, [], [], 
600      NCic.Inductive (true,leftno,tyl,attrs)
601 ;;
602
603 let disambiguate_term ~context ~metasenv ~subst ~expty
604    ~mk_implicit ~description_of_alias ~mk_choice
605    ~aliases ~universe ~coercion_db ~lookup_in_library 
606    (text,prefix_len,term) 
607  =
608   let mk_localization_tbl x = NCicUntrusted.NCicHash.create x in
609    let res,b =
610     MultiPassDisambiguator.disambiguate_thing
611      ~freshen_thing:CicNotationUtil.freshen_term
612      ~context ~metasenv ~initial_ugraph:() ~aliases
613      ~mk_implicit ~description_of_alias
614      ~string_context_of_context:(List.map (fun (x,_) -> Some x))
615      ~universe ~uri:None ~pp_thing:CicNotationPp.pp_term
616      ~passes:(MultiPassDisambiguator.passes ())
617      ~lookup_in_library ~domain_of_thing:Disambiguate.domain_of_term
618      ~interpretate_thing:(interpretate_term ~obj_context:[] ~mk_choice (?create_dummy_ids:None))
619      ~refine_thing:(refine_term ~coercion_db) (text,prefix_len,term)
620      ~mk_localization_tbl ~expty ~subst
621    in
622     List.map (function (a,b,c,d,_) -> a,b,c,d) res, b
623 ;;
624
625 let disambiguate_obj 
626    ~mk_implicit ~description_of_alias ~mk_choice
627    ~aliases ~universe ~coercion_db ~lookup_in_library ~uri
628    (text,prefix_len,obj) 
629  =
630   let mk_localization_tbl x = NCicUntrusted.NCicHash.create x in
631    let res,b =
632     MultiPassDisambiguator.disambiguate_thing
633      ~freshen_thing:CicNotationUtil.freshen_obj
634      ~context:[] ~metasenv:[] ~subst:[] ~initial_ugraph:() ~aliases
635      ~mk_implicit ~description_of_alias
636      ~string_context_of_context:(List.map (fun (x,_) -> Some x))
637      ~universe 
638      ~uri:(Some uri)
639      ~pp_thing:(CicNotationPp.pp_obj CicNotationPp.pp_term)
640      ~passes:(MultiPassDisambiguator.passes ())
641      ~lookup_in_library ~domain_of_thing:Disambiguate.domain_of_obj
642      ~interpretate_thing:(interpretate_obj ~mk_choice)
643      ~refine_thing:(refine_obj ~coercion_db) 
644      (text,prefix_len,obj)
645      ~mk_localization_tbl ~expty:None
646    in
647     List.map (function (a,b,c,d,_) -> a,b,c,d) res, b
648 ;;
649 let _ = 
650 let mk_type n = 
651   if n = 0 then
652      [false, NUri.uri_of_string ("cic:/matita/pts/Type.univ")]
653   else
654      [false, NUri.uri_of_string ("cic:/matita/pts/Type"^string_of_int n^".univ")]
655 in
656 let mk_cprop n = 
657   if n = 0 then 
658     [false, NUri.uri_of_string ("cic:/matita/pts/CProp.univ")]
659   else
660     [false, NUri.uri_of_string ("cic:/matita/pts/CProp"^string_of_int n^".univ")]
661 in
662          NCicEnvironment.add_constraint true (mk_type 0) (mk_type 1);
663          NCicEnvironment.add_constraint true (mk_cprop 0) (mk_cprop 1);
664          NCicEnvironment.add_constraint true (mk_cprop 0) (mk_type 1);
665          NCicEnvironment.add_constraint true (mk_type 0) (mk_cprop 1);
666          NCicEnvironment.add_constraint false (mk_cprop 0) (mk_type 0);
667          NCicEnvironment.add_constraint false (mk_type 0) (mk_cprop 0);
668
669          NCicEnvironment.add_constraint true (mk_type 1) (mk_type 2);
670          NCicEnvironment.add_constraint true (mk_cprop 1) (mk_cprop 2);
671          NCicEnvironment.add_constraint true (mk_cprop 1) (mk_type 2);
672          NCicEnvironment.add_constraint true (mk_type 1) (mk_cprop 2);
673          NCicEnvironment.add_constraint false (mk_cprop 1) (mk_type 1);
674          NCicEnvironment.add_constraint false (mk_type 1) (mk_cprop 1);
675
676          NCicEnvironment.add_constraint true (mk_type 2) (mk_type 3);
677          NCicEnvironment.add_constraint true (mk_cprop 2) (mk_cprop 3);
678          NCicEnvironment.add_constraint true (mk_cprop 2) (mk_type 3);
679          NCicEnvironment.add_constraint true (mk_type 2) (mk_cprop 3);
680          NCicEnvironment.add_constraint false (mk_cprop 2) (mk_type 2);
681          NCicEnvironment.add_constraint false (mk_type 2) (mk_cprop 2);
682
683          NCicEnvironment.add_constraint false (mk_cprop 3) (mk_type 3);
684          NCicEnvironment.add_constraint false (mk_type 3) (mk_cprop 3);
685
686 ;;
687