1 (* Copyright (C) 2000, 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://cs.unibo.it/helm/.
28 let unshare ?(fresh_univs=false) t =
33 | C.Var (uri,exp_named_subst) ->
34 let exp_named_subst' =
35 List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
37 C.Var (uri,exp_named_subst')
43 | Some t -> Some (unshare t)
47 | C.Sort s when not fresh_univs -> C.Sort s
48 | C.Sort (C.Type _) -> C.Sort (C.Type (CicUniv.fresh ()))
49 | C.Sort s -> C.Sort s
50 | C.Implicit info -> C.Implicit info
51 | C.Cast (te,ty) -> C.Cast (unshare te, unshare ty)
52 | C.Prod (n,s,t) -> C.Prod (n, unshare s, unshare t)
53 | C.Lambda (n,s,t) -> C.Lambda (n, unshare s, unshare t)
54 | C.LetIn (n,s,ty,t) ->
55 C.LetIn (n, unshare s, unshare ty, unshare t)
56 | C.Appl l -> C.Appl (List.map unshare l)
57 | C.Const (uri,exp_named_subst) ->
58 let exp_named_subst' =
59 List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
61 C.Const (uri,exp_named_subst')
62 | C.MutInd (uri,tyno,exp_named_subst) ->
63 let exp_named_subst' =
64 List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
66 C.MutInd (uri,tyno,exp_named_subst')
67 | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
68 let exp_named_subst' =
69 List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
71 C.MutConstruct (uri,tyno,consno,exp_named_subst')
72 | C.MutCase (sp,i,outty,t,pl) ->
73 C.MutCase (sp, i, unshare outty, unshare t,
78 (fun (name, i, ty, bo) -> (name, i, unshare ty, unshare bo))
85 (fun (name, ty, bo) -> (name, unshare ty, unshare bo))
94 let unchanged = ref true in
95 let rec aux b = function
96 | [] as t -> unchanged := b; t
99 he1 :: aux (b && he1 == he) tl
101 let l1 = aux true l in
102 if !unchanged then l else l1
106 let module C = Cic in
109 | C.Sort (C.Type u) when not (CicUniv.is_anon u) -> C.Sort (C.Type (CicUniv.fresh ()))
110 | C.Sort _ | C.Implicit _ | C.Var _ | C.Rel _ as t -> t
111 | C.Meta (i,l) as orig ->
113 (function None -> None | Some t -> Some (unshare t)) l
115 if l == l' then orig else C.Meta(i,l')
116 | C.Cast (te,ty) as orig ->
117 let te' = unshare te in
118 let ty' = unshare ty in
119 if te' == te && ty' == ty then orig else C.Cast(te', ty')
120 | C.Prod (n,s,t) as orig ->
121 let s' = unshare s in
122 let t' = unshare t in
123 if s' == s && t' == t then orig else C.Prod(n,s',t')
124 | C.Lambda (n,s,t) as orig ->
125 let s' = unshare s in
126 let t' = unshare t in
127 if s' == s && t' == t then orig else C.Lambda(n,s',t')
128 | C.LetIn (n,s,ty,t) as orig ->
129 let s' = unshare s in
130 let t' = unshare t in
131 let ty' = unshare ty in
132 if t' == t && ty' == ty && s' == s then orig else C.LetIn (n, s', ty', t')
133 | C.Appl l as orig ->
134 let l' = sharing_map unshare l in
135 if l == l' then orig else C.Appl l'
136 | C.Const (uri,exp_named_subst) as orig ->
137 let exp_named_subst' =
139 (fun (uri,t as orig) ->
140 let t' = unshare t in
141 if t == t' then orig else (uri,t'))
144 if exp_named_subst' == exp_named_subst then orig
145 else C.Const (uri,exp_named_subst')
146 | C.MutInd (uri,tyno,exp_named_subst) as orig ->
147 let exp_named_subst' =
149 (fun (uri,t as orig) ->
150 let t' = unshare t in
151 if t == t' then orig else (uri,t'))
154 if exp_named_subst' == exp_named_subst then orig
155 else C.MutInd (uri,tyno,exp_named_subst')
156 | C.MutConstruct (uri,tyno,consno,exp_named_subst) as orig ->
157 let exp_named_subst' =
159 (fun (uri,t as orig) ->
160 let t' = unshare t in
161 if t == t' then orig else (uri,t'))
164 if exp_named_subst' == exp_named_subst then orig
165 else C.MutConstruct (uri,tyno,consno,exp_named_subst')
166 | C.MutCase (sp,i,outty,t,pl) as orig ->
167 let t' = unshare t in
168 let pl' = sharing_map unshare pl in
169 let outty' = unshare outty in
170 if t' == t && pl' == pl && outty' == outty then orig
171 else C.MutCase (sp, i, outty', t', pl')
172 | C.Fix (i, fl) as orig ->
175 (fun (name, i, ty, bo as orig) ->
176 let ty' = unshare ty in
177 let bo' = unshare bo in
178 if ty' == ty && bo' == bo then orig else name,i,ty',bo')
181 if fl' == fl then orig else C.Fix (i, fl')
182 | C.CoFix (i, fl) as orig ->
185 (fun (name, ty, bo as orig) ->
186 let ty' = unshare ty in
187 let bo' = unshare bo in
188 if ty' == ty && bo' == bo then orig else name,ty',bo')
191 if fl' == fl then orig else C.CoFix (i, fl')
197 let module C = Cic in
198 let unshare = fresh_univs in
200 | C.Constant (name,te,ty,exp,att) ->
201 C.Constant (name,HExtlib.map_option unshare te,
203 | C.CurrentProof _ -> assert false
204 | C.Variable _ -> assert false
205 | C.InductiveDefinition (itl,u,i,att) ->
206 C.InductiveDefinition
208 (fun (name,b,t,cl) ->
211 (fun (name,t) -> name, unshare t)