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