]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic/cicUtil.ml
- reimplemented meta_closed in non CPS way (faster!)
[helm.git] / helm / ocaml / cic / cicUtil.ml
1 (* Copyright (C) 2004, HELM Team.
2  * 
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.
6  * 
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.
11  * 
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.
16  *
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,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 exception Meta_not_found of int
27 exception Subst_not_found of int
28
29
30 let lookup_meta index metasenv =
31   try
32     List.find (fun (index', _, _) -> index = index') metasenv
33   with Not_found -> raise (Meta_not_found index)
34
35 let lookup_subst n subst =
36   try
37     List.assoc n subst
38   with Not_found -> raise (Subst_not_found n)
39
40 let exists_meta index = List.exists (fun (index', _, _) -> (index = index'))
41
42 (* clean_up_meta take a substitution, a metasenv a meta_inex and a local
43 context l and clean up l with respect to the hidden hipothesis in the 
44 canonical context *)
45
46 let clean_up_local_context subst metasenv n l =
47   let cc =
48     (try
49        let (cc,_,_) = lookup_subst n subst in cc
50      with Subst_not_found _ ->
51        try
52          let (_,cc,_) = lookup_meta n metasenv in cc
53        with Meta_not_found _ -> assert false) in
54   (try 
55      List.map2
56        (fun t1 t2 ->
57           match t1,t2 with 
58               None , _ -> None
59             | _ , t -> t) cc l
60    with 
61        Invalid_argument _ -> assert false)
62
63 let is_closed =
64  let module C = Cic in
65  let rec is_closed k =
66   function
67       C.Rel m when m > k -> false
68     | C.Rel m -> true
69     | C.Meta (_,l) ->
70        List.fold_left
71         (fun i t -> i && (match t with None -> true | Some t -> is_closed k t)
72         ) true l
73     | C.Sort _ -> true
74     | C.Implicit _ -> assert false
75     | C.Cast (te,ty) -> is_closed k te && is_closed k ty
76     | C.Prod (name,so,dest) -> is_closed k so && is_closed (k+1) dest
77     | C.Lambda (_,so,dest) -> is_closed k so && is_closed (k+1) dest
78     | C.LetIn (_,so,dest) -> is_closed k so && is_closed (k+1) dest
79     | C.Appl l ->
80        List.fold_right (fun x i -> i && is_closed k x) l true
81     | C.Var (_,exp_named_subst)
82     | C.Const (_,exp_named_subst)
83     | C.MutInd (_,_,exp_named_subst)
84     | C.MutConstruct (_,_,_,exp_named_subst) ->
85        List.fold_right (fun (_,x) i -> i && is_closed k x)
86         exp_named_subst true
87     | C.MutCase (_,_,out,te,pl) ->
88        is_closed k out && is_closed k te &&
89         List.fold_right (fun x i -> i && is_closed k x) pl true
90     | C.Fix (_,fl) ->
91        let len = List.length fl in
92         let k_plus_len = k + len in
93          List.fold_right
94           (fun (_,_,ty,bo) i -> i && is_closed k ty && is_closed k_plus_len bo
95           ) fl true
96     | C.CoFix (_,fl) ->
97        let len = List.length fl in
98         let k_plus_len = k + len in
99          List.fold_right
100           (fun (_,ty,bo) i -> i && is_closed k ty && is_closed k_plus_len bo
101           ) fl true
102 in 
103  is_closed 0
104 ;;
105
106 let rec is_meta_closed =
107   function
108       Cic.Rel _ -> true
109     | Cic.Meta _ -> false
110     | Cic.Sort _ -> true
111     | Cic.Implicit _ -> assert false
112     | Cic.Cast (te,ty) -> is_meta_closed te && is_meta_closed ty
113     | Cic.Prod (name,so,dest) -> is_meta_closed so && is_meta_closed dest
114     | Cic.Lambda (_,so,dest) -> is_meta_closed so && is_meta_closed dest
115     | Cic.LetIn (_,so,dest) -> is_meta_closed so && is_meta_closed dest
116     | Cic.Appl l ->
117        List.fold_right (fun x i -> i && is_meta_closed x) l true
118     | Cic.Var (_,exp_named_subst)
119     | Cic.Const (_,exp_named_subst)
120     | Cic.MutInd (_,_,exp_named_subst)
121     | Cic.MutConstruct (_,_,_,exp_named_subst) ->
122        List.fold_right (fun (_,x) i -> i && is_meta_closed x)
123         exp_named_subst true
124     | Cic.MutCase (_,_,out,te,pl) ->
125        is_meta_closed out && is_meta_closed te &&
126         List.fold_right (fun x i -> i && is_meta_closed x) pl true
127     | Cic.Fix (_,fl) ->
128         List.fold_right
129           (fun (_,_,ty,bo) i -> i && is_meta_closed ty && is_meta_closed bo
130           ) fl true
131     | Cic.CoFix (_,fl) ->
132          List.fold_right
133           (fun (_,ty,bo) i -> i && is_meta_closed ty && is_meta_closed bo
134           ) fl true
135 ;;
136
137 let xpointer_RE = Str.regexp "\\([^#]+\\)#xpointer(\\(.*\\))"
138 let slash_RE = Str.regexp "/"
139
140 let term_of_uri s =
141   let uri = UriManager.uri_of_string s in
142   try
143     (if String.sub s (String.length s - 4) 4 = ".con" then
144       Cic.Const (uri, [])
145     else if String.sub s (String.length s - 4) 4 = ".var" then
146       Cic.Var (uri, [])
147     else if not (Str.string_match xpointer_RE s 0) then
148       raise (UriManager.IllFormedUri s)
149     else
150       let (baseuri,xpointer) = (Str.matched_group 1 s, Str.matched_group 2 s) in
151       let baseuri = UriManager.uri_of_string baseuri in
152       (match Str.split slash_RE xpointer with
153       | [_; tyno] -> Cic.MutInd (baseuri, int_of_string tyno - 1, [])
154       | [_; tyno; consno] ->
155           Cic.MutConstruct
156             (baseuri, int_of_string tyno - 1, int_of_string consno, [])
157       | _ -> raise Exit))
158   with
159   | Exit
160   | Failure _
161   | Not_found -> raise (UriManager.IllFormedUri s)
162