]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicEnvironment.ml
02b3baab68e414f102277ea362d68df17323e4db
[helm.git] / helm / software / components / ng_kernel / nCicEnvironment.ml
1 let cache = NUri.UriHash.create 313;;
2
3 let get_checked_obj u =
4   try NUri.UriHash.find cache u
5   with Not_found ->
6     let ouri = NUri.ouri_of_nuri u in
7     let o,_ = 
8       CicEnvironment.get_cooked_obj ~trust:false CicUniv.oblivion_ugraph 
9         ouri in
10     (* FIX: add all objects to the environment and give back the last one *)
11     let no = HExtlib.list_last (OCic2NCic.convert_obj ouri o) in
12     NUri.UriHash.add cache u no;
13     no
14 ;;
15
16 let get_checked_def = function
17   | NReference.Ref (_, uri, NReference.Def) ->
18       (match get_checked_obj uri with
19       | _,height,_,_, NCic.Constant (rlv,name,Some bo,ty,att) ->
20           rlv,name,bo,ty,att,height
21       | _,_,_,_, NCic.Constant (_,_,None,_,_) ->
22           prerr_endline "get_checked_def on an axiom"; assert false
23       | _ -> prerr_endline "get_checked_def on a non def 2"; assert false)
24   | _ -> prerr_endline "get_checked_def on a non def"; assert false
25 ;;
26
27 let get_checked_fix_or_cofix b = function
28   | NReference.Ref (_, uri, NReference.Fix (fixno,_)) ->
29       (match get_checked_obj uri with
30       | _,height,_,_, NCic.Fixpoint (is_fix,funcs,att) when is_fix = b ->
31          let rlv, name, _, ty, bo = List.nth funcs fixno in
32          rlv, name, bo, ty, att, height
33       | _ ->prerr_endline "get_checked_(co)fix on a non (co)fix 2";assert false)
34   | _ -> prerr_endline "get_checked_(co)fix on a non (co)fix"; assert false
35 ;;
36 let get_checked_fix r = get_checked_fix_or_cofix true r;;
37 let get_checked_cofix r = get_checked_fix_or_cofix false r;;
38
39 let get_indty_leftno = function 
40   | NReference.Ref (_, uri, NReference.Ind _) 
41   | NReference.Ref (_, uri, NReference.Con _) ->
42       (match get_checked_obj uri with
43       | _,_,_,_, NCic.Inductive (_,left,_,_) -> left
44       | _ ->prerr_endline "get_indty_leftno called on a non ind 2";assert false)
45   | _ -> prerr_endline "get_indty_leftno called on a non indty";assert false