1 (* Copyright (C) 2004, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
28 exception Meta_not_found of int
29 exception Subst_not_found of int
31 let lookup_meta index metasenv =
33 List.find (fun (index', _, _) -> index = index') metasenv
34 with Not_found -> raise (Meta_not_found index)
36 let lookup_subst n subst =
39 with Not_found -> raise (Subst_not_found n)
41 let exists_meta index = List.exists (fun (index', _, _) -> (index = index'))
43 (* clean_up_meta take a substitution, a metasenv a meta_inex and a local
44 context l and clean up l with respect to the hidden hipothesis in the
47 let clean_up_local_context subst metasenv n l =
50 let (cc,_,_) = lookup_subst n subst in cc
51 with Subst_not_found _ ->
53 let (_,cc,_) = lookup_meta n metasenv in cc
54 with Meta_not_found _ -> assert false) in
62 Invalid_argument _ -> assert false)
68 C.Rel m when m > k -> false
72 (fun i t -> i && (match t with None -> true | Some t -> is_closed k t)
75 | C.Implicit _ -> assert false
76 | C.Cast (te,ty) -> is_closed k te && is_closed k ty
77 | C.Prod (name,so,dest) -> is_closed k so && is_closed (k+1) dest
78 | C.Lambda (_,so,dest) -> is_closed k so && is_closed (k+1) dest
79 | C.LetIn (_,so,dest) -> is_closed k so && is_closed (k+1) dest
81 List.fold_right (fun x i -> i && is_closed k x) l true
82 | C.Var (_,exp_named_subst)
83 | C.Const (_,exp_named_subst)
84 | C.MutInd (_,_,exp_named_subst)
85 | C.MutConstruct (_,_,_,exp_named_subst) ->
86 List.fold_right (fun (_,x) i -> i && is_closed k x)
88 | C.MutCase (_,_,out,te,pl) ->
89 is_closed k out && is_closed k te &&
90 List.fold_right (fun x i -> i && is_closed k x) pl true
92 let len = List.length fl in
93 let k_plus_len = k + len in
95 (fun (_,_,ty,bo) i -> i && is_closed k ty && is_closed k_plus_len bo
98 let len = List.length fl in
99 let k_plus_len = k + len in
101 (fun (_,ty,bo) i -> i && is_closed k ty && is_closed k_plus_len bo
107 let rec is_meta_closed =
110 | Cic.Meta _ -> false
112 | Cic.Implicit _ -> assert false
113 | Cic.Cast (te,ty) -> is_meta_closed te && is_meta_closed ty
114 | Cic.Prod (name,so,dest) -> is_meta_closed so && is_meta_closed dest
115 | Cic.Lambda (_,so,dest) -> is_meta_closed so && is_meta_closed dest
116 | Cic.LetIn (_,so,dest) -> is_meta_closed so && is_meta_closed dest
118 List.fold_right (fun x i -> i && is_meta_closed x) l true
119 | Cic.Var (_,exp_named_subst)
120 | Cic.Const (_,exp_named_subst)
121 | Cic.MutInd (_,_,exp_named_subst)
122 | Cic.MutConstruct (_,_,_,exp_named_subst) ->
123 List.fold_right (fun (_,x) i -> i && is_meta_closed x)
125 | Cic.MutCase (_,_,out,te,pl) ->
126 is_meta_closed out && is_meta_closed te &&
127 List.fold_right (fun x i -> i && is_meta_closed x) pl true
130 (fun (_,_,ty,bo) i -> i && is_meta_closed ty && is_meta_closed bo
132 | Cic.CoFix (_,fl) ->
134 (fun (_,ty,bo) i -> i && is_meta_closed ty && is_meta_closed bo
138 let xpointer_RE = Str.regexp "\\([^#]+\\)#xpointer(\\(.*\\))"
139 let slash_RE = Str.regexp "/"
141 let term_of_uri uri =
142 let s = UriManager.string_of_uri uri in
144 (if UriManager.uri_is_con uri then
146 else if UriManager.uri_is_var uri then
148 else if not (Str.string_match xpointer_RE s 0) then
149 raise (UriManager.IllFormedUri s)
151 let (baseuri,xpointer) = (Str.matched_group 1 s, Str.matched_group 2 s) in
152 let baseuri = UriManager.uri_of_string baseuri in
153 (match Str.split slash_RE xpointer with
154 | [_; tyno] -> Cic.MutInd (baseuri, int_of_string tyno - 1, [])
155 | [_; tyno; consno] ->
157 (baseuri, int_of_string tyno - 1, int_of_string consno, [])
162 | Not_found -> raise (UriManager.IllFormedUri s)
164 let uri_of_term = function
165 | Cic.Const (uri, [])
166 | Cic.Var (uri, []) -> uri
167 | Cic.MutInd (baseuri, tyno, []) ->
168 UriManager.uri_of_string
169 (sprintf "%s#xpointer(1/%d)" (UriManager.string_of_uri baseuri) (tyno+1))
170 | Cic.MutConstruct (baseuri, tyno, consno, []) ->
171 UriManager.uri_of_string
172 (sprintf "%s#xpointer(1/%d/%d)" (UriManager.string_of_uri baseuri)
174 | _ -> raise (Invalid_argument "uri_of_term")
180 (fun term acc -> Cic.Prod (Cic.Anonymous, term, acc))
181 terms (Cic.Sort (Cic.Type (CicUniv.fresh ())))
183 let rec unpack = function
184 | Cic.Prod (Cic.Anonymous, term, Cic.Sort (Cic.Type _)) -> [term]
185 | Cic.Prod (Cic.Anonymous, term, tgt) -> term :: unpack tgt
189 let rec strip_prods n = function
191 | Cic.Prod (_, _, tgt) when n > 0 -> strip_prods (n-1) tgt
192 | _ -> failwith "not enough prods"
194 let params_of_obj = function
195 | Cic.Constant (_, _, _, params, _)
196 | Cic.Variable (_, _, _, params, _)
197 | Cic.CurrentProof (_, _, _, _, params, _)
198 | Cic.InductiveDefinition (_, params, _, _) ->
201 let attributes_of_obj = function
202 | Cic.Constant (_, _, _, _, attributes)
203 | Cic.Variable (_, _, _, _, attributes)
204 | Cic.CurrentProof (_, _, _, _, _, attributes)
205 | Cic.InductiveDefinition (_, _, _, attributes) ->
207 let rec mk_rels howmany from =
210 | _ -> (Cic.Rel (howmany + from)) :: (mk_rels (howmany-1) from)
214 let total = ref 0.0 in
216 let before = Unix.gettimeofday () in
218 let after = Unix.gettimeofday () in
219 total := !total +. (after -. before);
225 ("!! TOTAL TIME SPENT IN " ^ s ^ ": " ^ string_of_float !total));
228 (** WARNING: COMMENT THIS TO ENABLE PROFILING **)
229 let profile _ = let profile f x = f x in profile