]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_kernel/nCicEnvironment.ml
2d5f03945f8d1fa69ae85444c2fdf58fbb842a57
[helm.git] / helm / software / components / ng_kernel / nCicEnvironment.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$ *)
13
14 module C = NCic
15 module Ref = NReference
16
17 exception CircularDependency of string Lazy.t;;
18 exception ObjectNotFound of string Lazy.t;;
19 exception BadDependency of string Lazy.t * exn;;
20 exception BadConstraint of string Lazy.t;;
21
22 let get_obj = ref (fun _ -> assert false);;
23 let set_get_obj f = get_obj := f;;
24
25 let type0 = []
26
27 let max l1 l2 =
28  HExtlib.list_uniq ~eq:(fun (b1,u1) (b2,u2) -> b1=b2 && NUri.eq u1 u2)
29   (List.sort (fun (b1,u1) (b2,u2) ->
30     let res = compare b1 b2 in if res = 0 then NUri.compare u1 u2 else res)
31       (l1 @ l2))
32
33 let le_constraints = ref [] (* strict,a,b *)
34
35 let rec le_path_uri avoid strict a b =
36  (not strict && NUri.eq a b) ||
37  List.exists
38   (fun (strict',x,y) ->
39      NUri.eq y b && not (List.exists (NUri.eq x) avoid) &&
40        le_path_uri (x::avoid) (strict && not strict') a x
41   ) !le_constraints
42 ;;
43
44 let leq_path a b = le_path_uri [b] (fst a) (snd a) b;;
45
46 let universe_leq a b = 
47   match a, b with
48   | a,[(false,b)] -> List.for_all (fun a -> leq_path a b) a
49   | _,_ ->
50      raise (BadConstraint
51       (lazy "trying to check if a universe is less or equal than an inferred universe"))
52
53 let universe_eq a b = 
54   match a,b with 
55   | [(false,_)], [(false,_)] -> universe_leq b a && universe_leq a b
56   | _, [(false,_)]
57   | [(false,_)],_ -> false
58   | _ ->
59      raise (BadConstraint
60       (lazy "trying to check if two inferred universes are equal"))
61 ;;
62
63 let pp_constraint b x y =  
64   NUri.name_of_uri x ^ (if b then " < " else " <= ") ^ NUri.name_of_uri y
65 ;;
66
67 let pp_constraints () =
68   String.concat "\n" (List.map (fun (b,x,y) -> pp_constraint b x y) !le_constraints)
69 ;;
70
71 let universes = ref [];;
72
73 let add_constraint strict a b = 
74   match a,b with
75   | [false,a2],[false,b2] -> 
76       if not (le_path_uri [] strict a2 b2) then (
77         if le_path_uri [] (not strict) b2 a2 then
78          (raise(BadConstraint(lazy("universe inconsistency adding "^pp_constraint strict a2 b2
79            ^ " to:\n" ^ pp_constraints ()))));
80         universes := a2 :: b2 :: 
81           List.filter (fun x -> not (NUri.eq x a2 || NUri.eq x b2)) !universes;
82         le_constraints := (strict,a2,b2) :: !le_constraints)
83   | _ -> raise (BadConstraint
84           (lazy "trying to add a constraint on an inferred universe"))
85 ;;
86
87 let sup l =
88   match l with
89   | [false,_] -> Some l
90   | l ->
91    let bigger_than acc (s1,n1) = List.filter (le_path_uri [] s1 n1) acc in
92    let solutions = List.fold_left bigger_than !universes l in
93    let rec aux = function
94      | [] -> None
95      | u :: tl ->
96          if List.exists (fun x -> le_path_uri [] true x u) solutions then aux tl
97          else Some [false,u]
98    in
99     aux solutions
100 ;;
101
102
103
104 let typecheck_obj,already_set = ref (fun _ -> assert false), ref false;;
105 let set_typecheck_obj f =
106  if !already_set then
107   assert false
108  else
109   begin
110    typecheck_obj := f;
111    already_set := true
112   end
113 ;;
114
115 let cache = NUri.UriHash.create 313;;
116 let history = ref [];;
117 let frozen_list = ref [];;
118
119 let invalidate_obj uri =
120  let rec aux to_be_deleted =
121   function
122      [] -> assert false
123    | uri'::tl when NUri.eq uri uri' -> uri'::to_be_deleted,tl
124    | uri'::tl -> aux (uri'::to_be_deleted) tl
125  in
126   let to_be_deleted,h = aux [] !history in
127    history := h;
128    List.iter (fun uri -> NUri.UriHash.remove cache uri) to_be_deleted
129 ;;
130
131 exception Propagate of NUri.uri * exn;;
132
133 let to_exn f x =
134  match f x with
135     `WellTyped o -> o
136   | `Exn e -> raise e
137 ;;
138
139 let check_and_add_obj ((u,_,_,_,_) as obj) =
140  let saved_frozen_list = !frozen_list in
141  try
142    frozen_list := (u,obj)::saved_frozen_list;
143    !typecheck_obj obj;
144    frozen_list := saved_frozen_list;
145    let obj = `WellTyped obj in
146    NUri.UriHash.add cache u obj;
147    history := u::!history;
148    obj
149  with
150     Sys.Break as e ->
151      frozen_list := saved_frozen_list;
152      raise e
153   | Propagate (u',old_exn) as e' ->
154      frozen_list := saved_frozen_list;
155      let exn = `Exn (BadDependency (lazy (NUri.string_of_uri u ^
156        " depends (recursively) on " ^ NUri.string_of_uri u' ^
157        " which is not well-typed"), 
158        match old_exn with BadDependency (_,e) -> e | _ -> old_exn)) in
159      NUri.UriHash.add cache u exn;
160      history := u::!history;
161      if saved_frozen_list = [] then
162       exn
163      else
164       raise e'
165   | e ->
166      frozen_list := saved_frozen_list;
167      let exn = `Exn e in
168      NUri.UriHash.add cache u exn;
169      history := u::!history;
170      if saved_frozen_list = [] then
171       exn
172      else
173       raise (Propagate (u,e))
174 ;;
175
176 let get_checked_obj u =
177  if List.exists (fun (k,_) -> NUri.eq u k) !frozen_list
178  then
179   raise (CircularDependency (lazy (NUri.string_of_uri u)))
180  else
181   try NUri.UriHash.find cache u
182   with Not_found -> check_and_add_obj (!get_obj u)
183 ;;
184
185 let get_checked_obj u = to_exn get_checked_obj u;;
186
187 let check_and_add_obj obj = ignore (to_exn check_and_add_obj obj);;
188
189 let get_checked_decl = function
190   | Ref.Ref (uri, Ref.Decl) ->
191       (match get_checked_obj uri with
192       | _,height,_,_, C.Constant (rlv,name,None,ty,att) ->
193           rlv,name,ty,att,height
194       | _,_,_,_, C.Constant (_,_,Some _,_,_) ->
195           prerr_endline "get_checked_decl on a definition"; assert false
196       | _ -> prerr_endline "get_checked_decl on a non decl 2"; assert false)
197   | _ -> prerr_endline "get_checked_decl on a non decl"; assert false
198 ;;
199
200 let get_checked_def = function
201   | Ref.Ref (uri, Ref.Def _) ->
202       (match get_checked_obj uri with
203       | _,height,_,_, C.Constant (rlv,name,Some bo,ty,att) ->
204           rlv,name,bo,ty,att,height
205       | _,_,_,_, C.Constant (_,_,None,_,_) ->
206           prerr_endline "get_checked_def on an axiom"; assert false
207       | _ -> prerr_endline "get_checked_def on a non def 2"; assert false)
208   | _ -> prerr_endline "get_checked_def on a non def"; assert false
209 ;;
210
211 let get_checked_indtys = function
212   | Ref.Ref (uri, (Ref.Ind (_,n,_)|Ref.Con (n,_,_))) ->
213       (match get_checked_obj uri with
214       | _,_,_,_, C.Inductive (inductive,leftno,tys,att) ->
215         inductive,leftno,tys,att,n
216       | _ -> prerr_endline "get_checked_indtys on a non ind 2"; assert false)
217   | _ -> prerr_endline "get_checked_indtys on a non ind"; assert false
218 ;;
219
220 let get_checked_fixes_or_cofixes = function
221   | Ref.Ref (uri, (Ref.Fix _|Ref.CoFix _))->
222       (match get_checked_obj uri with
223       | _,height,_,_, C.Fixpoint (_,funcs,att) ->
224          funcs, att, height
225       | _ ->prerr_endline "get_checked_(co)fix on a non (co)fix 2";assert false)
226   | _ -> prerr_endline "get_checked_(co)fix on a non (co)fix"; assert false
227 ;;
228
229 let get_relevance (Ref.Ref (_, infos) as r) =
230   match infos with
231      Ref.Def _ -> let res,_,_,_,_,_ = get_checked_def r in res
232    | Ref.Decl -> let res,_,_,_,_ = get_checked_decl r in res
233    | Ref.Ind _ ->
234        let _,_,tl,_,n = get_checked_indtys r in
235        let res,_,_,_ = List.nth tl n in
236          res
237     | Ref.Con (_,i,_) ->
238        let _,_,tl,_,n = get_checked_indtys r in
239        let _,_,_,cl = List.nth tl n in
240        let res,_,_ = List.nth cl (i - 1) in
241          res
242     | Ref.Fix (fixno,_,_)
243     | Ref.CoFix fixno ->
244         let fl,_,_ = get_checked_fixes_or_cofixes r in
245         let res,_,_,_,_ = List.nth fl fixno in
246           res
247 ;;
248
249
250 let invalidate _ = 
251   assert (!frozen_list = []);
252   NUri.UriHash.clear cache
253 ;;