author | wenzelm |
Thu, 08 Jul 2004 19:34:10 +0200 | |
changeset 15025 | b2ef0bc6f59f |
parent 14854 | 61bdf2ae4dc5 |
child 15472 | 4674102737e9 |
permissions | -rw-r--r-- |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1 |
(* Title: Pure/term.ML |
0 | 2 |
ID: $Id$ |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright Cambridge University 1992 |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
5 |
|
4444 | 6 |
Simply typed lambda-calculus: types, terms, and basic operations. |
0 | 7 |
*) |
8 |
||
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
9 |
infix 9 $; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
10 |
infixr 5 -->; |
4444 | 11 |
infixr --->; |
12 |
infix aconv; |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
13 |
|
4444 | 14 |
signature BASIC_TERM = |
15 |
sig |
|
16 |
type indexname |
|
17 |
type class |
|
18 |
type sort |
|
14829
cfa5fe01a7b7
moved read_int etc. to library.ML; added type 'arity';
wenzelm
parents:
14786
diff
changeset
|
19 |
type arity |
4444 | 20 |
datatype typ = |
21 |
Type of string * typ list | |
|
22 |
TFree of string * sort | |
|
23 |
TVar of indexname * sort |
|
24 |
val --> : typ * typ -> typ |
|
25 |
val ---> : typ list * typ -> typ |
|
26 |
val is_TVar: typ -> bool |
|
27 |
val domain_type: typ -> typ |
|
4480 | 28 |
val range_type: typ -> typ |
4444 | 29 |
val binder_types: typ -> typ list |
30 |
val body_type: typ -> typ |
|
31 |
val strip_type: typ -> typ list * typ |
|
32 |
datatype term = |
|
33 |
Const of string * typ | |
|
34 |
Free of string * typ | |
|
35 |
Var of indexname * typ | |
|
36 |
Bound of int | |
|
37 |
Abs of string * typ * term | |
|
4493 | 38 |
$ of term * term |
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
39 |
structure Vartab : TABLE |
13000 | 40 |
structure Typtab : TABLE |
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
41 |
structure Termtab : TABLE |
4444 | 42 |
exception TYPE of string * typ list * term list |
43 |
exception TERM of string * term list |
|
7318 | 44 |
val is_Bound: term -> bool |
4444 | 45 |
val is_Const: term -> bool |
46 |
val is_Free: term -> bool |
|
47 |
val is_Var: term -> bool |
|
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
48 |
val dest_Type: typ -> string * typ list |
4444 | 49 |
val dest_Const: term -> string * typ |
50 |
val dest_Free: term -> string * typ |
|
51 |
val dest_Var: term -> indexname * typ |
|
52 |
val type_of: term -> typ |
|
53 |
val type_of1: typ list * term -> typ |
|
54 |
val fastype_of: term -> typ |
|
55 |
val fastype_of1: typ list * term -> typ |
|
10806 | 56 |
val list_abs: (string * typ) list * term -> term |
4444 | 57 |
val strip_abs_body: term -> term |
58 |
val strip_abs_vars: term -> (string * typ) list |
|
59 |
val strip_qnt_body: string -> term -> term |
|
60 |
val strip_qnt_vars: string -> term -> (string * typ) list |
|
61 |
val list_comb: term * term list -> term |
|
62 |
val strip_comb: term -> term * term list |
|
63 |
val head_of: term -> term |
|
64 |
val size_of_term: term -> int |
|
65 |
val map_type_tvar: (indexname * sort -> typ) -> typ -> typ |
|
66 |
val map_type_tfree: (string * sort -> typ) -> typ -> typ |
|
67 |
val map_term_types: (typ -> typ) -> term -> term |
|
68 |
val it_term_types: (typ * 'a -> 'a) -> term * 'a -> 'a |
|
69 |
val map_typ: (class -> class) -> (string -> string) -> typ -> typ |
|
70 |
val map_term: |
|
71 |
(class -> class) -> |
|
72 |
(string -> string) -> (string -> string) -> term -> term |
|
73 |
val foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a |
|
8609 | 74 |
val foldl_term_types: (term -> 'a * typ -> 'a) -> 'a * term -> 'a |
4444 | 75 |
val foldl_types: ('a * typ -> 'a) -> 'a * term -> 'a |
76 |
val foldl_aterms: ('a * term -> 'a) -> 'a * term -> 'a |
|
6548
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
77 |
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term |
15025 | 78 |
val add_term_varnames: indexname list * term -> indexname list |
79 |
val term_varnames: term -> indexname list |
|
4444 | 80 |
val dummyT: typ |
81 |
val itselfT: typ -> typ |
|
82 |
val a_itselfT: typ |
|
83 |
val propT: typ |
|
84 |
val implies: term |
|
85 |
val all: typ -> term |
|
86 |
val equals: typ -> term |
|
87 |
val strip_all_body: term -> term |
|
88 |
val strip_all_vars: term -> (string * typ) list |
|
89 |
val incr_bv: int * int * term -> term |
|
90 |
val incr_boundvars: int -> term -> term |
|
91 |
val add_loose_bnos: term * int * int list -> int list |
|
92 |
val loose_bnos: term -> int list |
|
93 |
val loose_bvar: term * int -> bool |
|
94 |
val loose_bvar1: term * int -> bool |
|
95 |
val subst_bounds: term list * term -> term |
|
96 |
val subst_bound: term * term -> term |
|
97 |
val subst_TVars: (indexname * typ) list -> term -> term |
|
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
98 |
val subst_TVars_Vartab: typ Vartab.table -> term -> term |
4444 | 99 |
val betapply: term * term -> term |
100 |
val eq_ix: indexname * indexname -> bool |
|
101 |
val ins_ix: indexname * indexname list -> indexname list |
|
102 |
val mem_ix: indexname * indexname list -> bool |
|
103 |
val aconv: term * term -> bool |
|
104 |
val aconvs: term list * term list -> bool |
|
105 |
val mem_term: term * term list -> bool |
|
106 |
val subset_term: term list * term list -> bool |
|
107 |
val eq_set_term: term list * term list -> bool |
|
108 |
val ins_term: term * term list -> term list |
|
109 |
val union_term: term list * term list -> term list |
|
5585 | 110 |
val inter_term: term list * term list -> term list |
4444 | 111 |
val could_unify: term * term -> bool |
112 |
val subst_free: (term * term) list -> term -> term |
|
113 |
val subst_atomic: (term * term) list -> term -> term |
|
114 |
val subst_vars: (indexname * typ) list * (indexname * term) list -> term -> term |
|
115 |
val typ_subst_TVars: (indexname * typ) list -> typ -> typ |
|
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
116 |
val typ_subst_TVars_Vartab : typ Vartab.table -> typ -> typ |
4444 | 117 |
val subst_Vars: (indexname * term) list -> term -> term |
118 |
val incr_tvar: int -> typ -> typ |
|
119 |
val xless: (string * int) * indexname -> bool |
|
120 |
val atless: term * term -> bool |
|
121 |
val insert_aterm: term * term list -> term list |
|
122 |
val abstract_over: term * term -> term |
|
11922 | 123 |
val lambda: term -> term -> term |
4444 | 124 |
val absfree: string * typ * term -> term |
125 |
val list_abs_free: (string * typ) list * term -> term |
|
126 |
val list_all_free: (string * typ) list * term -> term |
|
127 |
val list_all: (string * typ) list * term -> term |
|
128 |
val maxidx_of_typ: typ -> int |
|
129 |
val maxidx_of_typs: typ list -> int |
|
130 |
val maxidx_of_term: term -> int |
|
13665 | 131 |
val maxidx_of_terms: term list -> int |
4444 | 132 |
val variant: string list -> string -> string |
133 |
val variantlist: string list * string list -> string list |
|
134 |
val variant_abs: string * typ * term -> string * term |
|
135 |
val rename_wrt_term: term -> (string * typ) list -> (string * typ) list |
|
136 |
val add_new_id: string list * string -> string list |
|
137 |
val add_typ_classes: typ * class list -> class list |
|
138 |
val add_typ_ixns: indexname list * typ -> indexname list |
|
139 |
val add_typ_tfree_names: typ * string list -> string list |
|
140 |
val add_typ_tfrees: typ * (string * sort) list -> (string * sort) list |
|
141 |
val typ_tfrees: typ -> (string * sort) list |
|
142 |
val add_typ_tvars: typ * (indexname * sort) list -> (indexname * sort) list |
|
143 |
val typ_tvars: typ -> (indexname * sort) list |
|
144 |
val add_typ_tycons: typ * string list -> string list |
|
145 |
val add_typ_varnames: typ * string list -> string list |
|
146 |
val add_term_classes: term * class list -> class list |
|
147 |
val add_term_consts: term * string list -> string list |
|
13646 | 148 |
val term_consts: term -> string list |
4444 | 149 |
val add_term_frees: term * term list -> term list |
150 |
val term_frees: term -> term list |
|
12802
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
151 |
val add_term_free_names: term * string list -> string list |
4444 | 152 |
val add_term_names: term * string list -> string list |
153 |
val add_term_tfree_names: term * string list -> string list |
|
154 |
val add_term_tfrees: term * (string * sort) list -> (string * sort) list |
|
155 |
val term_tfrees: term -> (string * sort) list |
|
156 |
val add_term_tvar_ixns: term * indexname list -> indexname list |
|
157 |
val add_term_tvarnames: term * string list -> string list |
|
158 |
val add_term_tvars: term * (indexname * sort) list -> (indexname * sort) list |
|
159 |
val term_tvars: term -> (indexname * sort) list |
|
160 |
val add_term_tycons: term * string list -> string list |
|
161 |
val add_term_vars: term * term list -> term list |
|
162 |
val term_vars: term -> term list |
|
163 |
val exists_Const: (string * typ -> bool) -> term -> bool |
|
4631 | 164 |
val exists_subterm: (term -> bool) -> term -> bool |
4444 | 165 |
val compress_type: typ -> typ |
166 |
val compress_term: term -> term |
|
167 |
end; |
|
0 | 168 |
|
4444 | 169 |
signature TERM = |
170 |
sig |
|
171 |
include BASIC_TERM |
|
12981 | 172 |
val match_bvars: (term * term) * (string * string) list -> (string * string) list |
173 |
val rename_abs: term -> term -> term -> term option |
|
12499 | 174 |
val invent_names: string list -> string -> int -> string list |
175 |
val add_tvarsT: (indexname * sort) list * typ -> (indexname * sort) list |
|
176 |
val add_tvars: (indexname * sort) list * term -> (indexname * sort) list |
|
177 |
val add_vars: (indexname * typ) list * term -> (indexname * typ) list |
|
178 |
val add_frees: (string * typ) list * term -> (string * typ) list |
|
4444 | 179 |
val indexname_ord: indexname * indexname -> order |
180 |
val typ_ord: typ * typ -> order |
|
181 |
val typs_ord: typ list * typ list -> order |
|
182 |
val term_ord: term * term -> order |
|
183 |
val terms_ord: term list * term list -> order |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
184 |
val hd_ord: term * term -> order |
4444 | 185 |
val termless: term * term -> bool |
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
186 |
val no_dummyT: typ -> typ |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
187 |
val dummy_patternN: string |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
188 |
val no_dummy_patterns: term -> term |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
189 |
val replace_dummy_patterns: int * term -> int * term |
10552 | 190 |
val is_replaced_dummy_pattern: indexname -> bool |
13484 | 191 |
val adhoc_freeze_vars: term -> term * string list |
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
192 |
val string_of_vname: indexname -> string |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
193 |
val string_of_vname': indexname -> string |
4444 | 194 |
end; |
195 |
||
196 |
structure Term: TERM = |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
197 |
struct |
0 | 198 |
|
199 |
(*Indexnames can be quickly renamed by adding an offset to the integer part, |
|
200 |
for resolution.*) |
|
201 |
type indexname = string*int; |
|
202 |
||
4626 | 203 |
(* Types are classified by sorts. *) |
0 | 204 |
type class = string; |
205 |
type sort = class list; |
|
14829
cfa5fe01a7b7
moved read_int etc. to library.ML; added type 'arity';
wenzelm
parents:
14786
diff
changeset
|
206 |
type arity = string * sort list * sort; |
0 | 207 |
|
208 |
(* The sorts attached to TFrees and TVars specify the sort of that variable *) |
|
209 |
datatype typ = Type of string * typ list |
|
210 |
| TFree of string * sort |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
211 |
| TVar of indexname * sort; |
0 | 212 |
|
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
213 |
(*Terms. Bound variables are indicated by depth number. |
0 | 214 |
Free variables, (scheme) variables and constants have names. |
4626 | 215 |
An term is "closed" if every bound variable of level "lev" |
13000 | 216 |
is enclosed by at least "lev" abstractions. |
0 | 217 |
|
218 |
It is possible to create meaningless terms containing loose bound vars |
|
219 |
or type mismatches. But such terms are not allowed in rules. *) |
|
220 |
||
221 |
||
222 |
||
13000 | 223 |
datatype term = |
0 | 224 |
Const of string * typ |
13000 | 225 |
| Free of string * typ |
0 | 226 |
| Var of indexname * typ |
227 |
| Bound of int |
|
228 |
| Abs of string*typ*term |
|
3965 | 229 |
| op $ of term*term; |
0 | 230 |
|
231 |
||
232 |
(*For errors involving type mismatches*) |
|
233 |
exception TYPE of string * typ list * term list; |
|
234 |
||
235 |
(*For system errors involving terms*) |
|
236 |
exception TERM of string * term list; |
|
237 |
||
238 |
||
239 |
(*Note variable naming conventions! |
|
240 |
a,b,c: string |
|
241 |
f,g,h: functions (including terms of function type) |
|
242 |
i,j,m,n: int |
|
243 |
t,u: term |
|
244 |
v,w: indexnames |
|
245 |
x,y: any |
|
246 |
A,B,C: term (denoting formulae) |
|
247 |
T,U: typ |
|
248 |
*) |
|
249 |
||
250 |
||
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
251 |
(** Types **) |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
252 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
253 |
fun S --> T = Type("fun",[S,T]); |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
254 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
255 |
(*handy for multiple args: [T1,...,Tn]--->T gives T1-->(T2--> ... -->T)*) |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
256 |
val op ---> = foldr (op -->); |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
257 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
258 |
fun dest_Type (Type x) = x |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
259 |
| dest_Type T = raise TYPE ("dest_Type", [T], []); |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
260 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
261 |
|
0 | 262 |
(** Discriminators **) |
263 |
||
7318 | 264 |
fun is_Bound (Bound _) = true |
265 |
| is_Bound _ = false; |
|
266 |
||
0 | 267 |
fun is_Const (Const _) = true |
268 |
| is_Const _ = false; |
|
269 |
||
270 |
fun is_Free (Free _) = true |
|
271 |
| is_Free _ = false; |
|
272 |
||
273 |
fun is_Var (Var _) = true |
|
274 |
| is_Var _ = false; |
|
275 |
||
276 |
fun is_TVar (TVar _) = true |
|
277 |
| is_TVar _ = false; |
|
278 |
||
279 |
(** Destructors **) |
|
280 |
||
281 |
fun dest_Const (Const x) = x |
|
282 |
| dest_Const t = raise TERM("dest_Const", [t]); |
|
283 |
||
284 |
fun dest_Free (Free x) = x |
|
285 |
| dest_Free t = raise TERM("dest_Free", [t]); |
|
286 |
||
287 |
fun dest_Var (Var x) = x |
|
288 |
| dest_Var t = raise TERM("dest_Var", [t]); |
|
289 |
||
290 |
||
4464 | 291 |
fun domain_type (Type("fun", [T,_])) = T |
292 |
and range_type (Type("fun", [_,T])) = T; |
|
4064 | 293 |
|
0 | 294 |
(* maps [T1,...,Tn]--->T to the list [T1,T2,...,Tn]*) |
295 |
fun binder_types (Type("fun",[S,T])) = S :: binder_types T |
|
296 |
| binder_types _ = []; |
|
297 |
||
298 |
(* maps [T1,...,Tn]--->T to T*) |
|
299 |
fun body_type (Type("fun",[S,T])) = body_type T |
|
300 |
| body_type T = T; |
|
301 |
||
302 |
(* maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T) *) |
|
303 |
fun strip_type T : typ list * typ = |
|
304 |
(binder_types T, body_type T); |
|
305 |
||
306 |
||
307 |
(*Compute the type of the term, checking that combinations are well-typed |
|
308 |
Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*) |
|
309 |
fun type_of1 (Ts, Const (_,T)) = T |
|
310 |
| type_of1 (Ts, Free (_,T)) = T |
|
13000 | 311 |
| type_of1 (Ts, Bound i) = (nth_elem (i,Ts) |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
312 |
handle LIST _ => raise TYPE("type_of: bound variable", [], [Bound i])) |
0 | 313 |
| type_of1 (Ts, Var (_,T)) = T |
314 |
| type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body) |
|
13000 | 315 |
| type_of1 (Ts, f$u) = |
0 | 316 |
let val U = type_of1(Ts,u) |
317 |
and T = type_of1(Ts,f) |
|
318 |
in case T of |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
319 |
Type("fun",[T1,T2]) => |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
320 |
if T1=U then T2 else raise TYPE |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
321 |
("type_of: type mismatch in application", [T1,U], [f$u]) |
13000 | 322 |
| _ => raise TYPE |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
323 |
("type_of: function type is expected in application", |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
324 |
[T,U], [f$u]) |
0 | 325 |
end; |
326 |
||
327 |
fun type_of t : typ = type_of1 ([],t); |
|
328 |
||
329 |
(*Determines the type of a term, with minimal checking*) |
|
13000 | 330 |
fun fastype_of1 (Ts, f$u) = |
61 | 331 |
(case fastype_of1 (Ts,f) of |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
332 |
Type("fun",[_,T]) => T |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
333 |
| _ => raise TERM("fastype_of: expected function type", [f$u])) |
61 | 334 |
| fastype_of1 (_, Const (_,T)) = T |
335 |
| fastype_of1 (_, Free (_,T)) = T |
|
336 |
| fastype_of1 (Ts, Bound i) = (nth_elem(i,Ts) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
337 |
handle LIST _ => raise TERM("fastype_of: Bound", [Bound i])) |
13000 | 338 |
| fastype_of1 (_, Var (_,T)) = T |
61 | 339 |
| fastype_of1 (Ts, Abs (_,T,u)) = T --> fastype_of1 (T::Ts, u); |
340 |
||
341 |
fun fastype_of t : typ = fastype_of1 ([],t); |
|
0 | 342 |
|
343 |
||
10806 | 344 |
val list_abs = foldr (fn ((x, T), t) => Abs (x, T, t)); |
345 |
||
0 | 346 |
(* maps (x1,...,xn)t to t *) |
13000 | 347 |
fun strip_abs_body (Abs(_,_,t)) = strip_abs_body t |
0 | 348 |
| strip_abs_body u = u; |
349 |
||
350 |
(* maps (x1,...,xn)t to [x1, ..., xn] *) |
|
13000 | 351 |
fun strip_abs_vars (Abs(a,T,t)) = (a,T) :: strip_abs_vars t |
0 | 352 |
| strip_abs_vars u = [] : (string*typ) list; |
353 |
||
354 |
||
355 |
fun strip_qnt_body qnt = |
|
356 |
let fun strip(tm as Const(c,_)$Abs(_,_,t)) = if c=qnt then strip t else tm |
|
357 |
| strip t = t |
|
358 |
in strip end; |
|
359 |
||
360 |
fun strip_qnt_vars qnt = |
|
361 |
let fun strip(Const(c,_)$Abs(a,T,t)) = if c=qnt then (a,T)::strip t else [] |
|
362 |
| strip t = [] : (string*typ) list |
|
363 |
in strip end; |
|
364 |
||
365 |
||
366 |
(* maps (f, [t1,...,tn]) to f(t1,...,tn) *) |
|
367 |
val list_comb : term * term list -> term = foldl (op $); |
|
368 |
||
369 |
||
370 |
(* maps f(t1,...,tn) to (f, [t1,...,tn]) ; naturally tail-recursive*) |
|
13000 | 371 |
fun strip_comb u : term * term list = |
0 | 372 |
let fun stripc (f$t, ts) = stripc (f, t::ts) |
13000 | 373 |
| stripc x = x |
0 | 374 |
in stripc(u,[]) end; |
375 |
||
376 |
||
377 |
(* maps f(t1,...,tn) to f , which is never a combination *) |
|
378 |
fun head_of (f$t) = head_of f |
|
379 |
| head_of u = u; |
|
380 |
||
381 |
||
382 |
(*Number of atoms and abstractions in a term*) |
|
383 |
fun size_of_term (Abs (_,_,body)) = 1 + size_of_term body |
|
384 |
| size_of_term (f$t) = size_of_term f + size_of_term t |
|
385 |
| size_of_term _ = 1; |
|
386 |
||
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
387 |
fun map_type_tvar f (Type(a,Ts)) = Type(a, map (map_type_tvar f) Ts) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
388 |
| map_type_tvar f (T as TFree _) = T |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
389 |
| map_type_tvar f (TVar x) = f x; |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
390 |
|
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
391 |
fun map_type_tfree f (Type(a,Ts)) = Type(a, map (map_type_tfree f) Ts) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
392 |
| map_type_tfree f (TFree x) = f x |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
393 |
| map_type_tfree f (T as TVar _) = T; |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
394 |
|
0 | 395 |
(* apply a function to all types in a term *) |
396 |
fun map_term_types f = |
|
397 |
let fun map(Const(a,T)) = Const(a, f T) |
|
398 |
| map(Free(a,T)) = Free(a, f T) |
|
399 |
| map(Var(v,T)) = Var(v, f T) |
|
400 |
| map(t as Bound _) = t |
|
401 |
| map(Abs(a,T,t)) = Abs(a, f T, map t) |
|
402 |
| map(f$t) = map f $ map t; |
|
403 |
in map end; |
|
404 |
||
405 |
(* iterate a function over all types in a term *) |
|
406 |
fun it_term_types f = |
|
407 |
let fun iter(Const(_,T), a) = f(T,a) |
|
408 |
| iter(Free(_,T), a) = f(T,a) |
|
409 |
| iter(Var(_,T), a) = f(T,a) |
|
410 |
| iter(Abs(_,T,t), a) = iter(t,f(T,a)) |
|
411 |
| iter(f$u, a) = iter(f, iter(u, a)) |
|
412 |
| iter(Bound _, a) = a |
|
413 |
in iter end |
|
414 |
||
415 |
||
416 |
(** Connectives of higher order logic **) |
|
417 |
||
375 | 418 |
fun itselfT ty = Type ("itself", [ty]); |
14854 | 419 |
val a_itselfT = itselfT (TFree ("'a", [])); |
375 | 420 |
|
0 | 421 |
val propT : typ = Type("prop",[]); |
422 |
||
423 |
val implies = Const("==>", propT-->propT-->propT); |
|
424 |
||
425 |
fun all T = Const("all", (T-->propT)-->propT); |
|
426 |
||
427 |
fun equals T = Const("==", T-->T-->propT); |
|
428 |
||
429 |
(* maps !!x1...xn. t to t *) |
|
13000 | 430 |
fun strip_all_body (Const("all",_)$Abs(_,_,t)) = strip_all_body t |
0 | 431 |
| strip_all_body t = t; |
432 |
||
433 |
(* maps !!x1...xn. t to [x1, ..., xn] *) |
|
434 |
fun strip_all_vars (Const("all",_)$Abs(a,T,t)) = |
|
13000 | 435 |
(a,T) :: strip_all_vars t |
0 | 436 |
| strip_all_vars t = [] : (string*typ) list; |
437 |
||
438 |
(*increments a term's non-local bound variables |
|
439 |
required when moving a term within abstractions |
|
440 |
inc is increment for bound variables |
|
441 |
lev is level at which a bound variable is considered 'loose'*) |
|
13000 | 442 |
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u |
0 | 443 |
| incr_bv (inc, lev, Abs(a,T,body)) = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
444 |
Abs(a, T, incr_bv(inc,lev+1,body)) |
13000 | 445 |
| incr_bv (inc, lev, f$t) = |
0 | 446 |
incr_bv(inc,lev,f) $ incr_bv(inc,lev,t) |
447 |
| incr_bv (inc, lev, u) = u; |
|
448 |
||
449 |
fun incr_boundvars 0 t = t |
|
450 |
| incr_boundvars inc t = incr_bv(inc,0,t); |
|
451 |
||
12981 | 452 |
(*Scan a pair of terms; while they are similar, |
453 |
accumulate corresponding bound vars in "al"*) |
|
454 |
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) = |
|
455 |
match_bvs(s, t, if x="" orelse y="" then al |
|
456 |
else (x,y)::al) |
|
457 |
| match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al)) |
|
458 |
| match_bvs(_,_,al) = al; |
|
459 |
||
460 |
(* strip abstractions created by parameters *) |
|
461 |
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al); |
|
462 |
||
463 |
fun rename_abs pat obj t = |
|
464 |
let |
|
465 |
val ren = match_bvs (pat, obj, []); |
|
466 |
fun ren_abs (Abs (x, T, b)) = |
|
467 |
Abs (if_none (assoc_string (ren, x)) x, T, ren_abs b) |
|
468 |
| ren_abs (f $ t) = ren_abs f $ ren_abs t |
|
469 |
| ren_abs t = t |
|
470 |
in if null ren then None else Some (ren_abs t) end; |
|
0 | 471 |
|
472 |
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond. |
|
473 |
(Bound 0) is loose at level 0 *) |
|
13000 | 474 |
fun add_loose_bnos (Bound i, lev, js) = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
475 |
if i<lev then js else (i-lev) ins_int js |
0 | 476 |
| add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js) |
477 |
| add_loose_bnos (f$t, lev, js) = |
|
13000 | 478 |
add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) |
0 | 479 |
| add_loose_bnos (_, _, js) = js; |
480 |
||
481 |
fun loose_bnos t = add_loose_bnos (t, 0, []); |
|
482 |
||
483 |
(* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to |
|
484 |
level k or beyond. *) |
|
485 |
fun loose_bvar(Bound i,k) = i >= k |
|
486 |
| loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k) |
|
487 |
| loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1) |
|
488 |
| loose_bvar _ = false; |
|
489 |
||
2792 | 490 |
fun loose_bvar1(Bound i,k) = i = k |
491 |
| loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k) |
|
492 |
| loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1) |
|
493 |
| loose_bvar1 _ = false; |
|
0 | 494 |
|
495 |
(*Substitute arguments for loose bound variables. |
|
496 |
Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi). |
|
4626 | 497 |
Note that for ((%x y. c) a b), the bound vars in c are x=1 and y=0 |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
498 |
and the appropriate call is subst_bounds([b,a], c) . |
0 | 499 |
Loose bound variables >=n are reduced by "n" to |
500 |
compensate for the disappearance of lambdas. |
|
501 |
*) |
|
13000 | 502 |
fun subst_bounds (args: term list, t) : term = |
0 | 503 |
let val n = length args; |
504 |
fun subst (t as Bound i, lev) = |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
505 |
(if i<lev then t (*var is locally bound*) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
506 |
else incr_boundvars lev (List.nth(args, i-lev)) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
507 |
handle Subscript => Bound(i-n) (*loose: change it*)) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
508 |
| subst (Abs(a,T,body), lev) = Abs(a, T, subst(body,lev+1)) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
509 |
| subst (f$t, lev) = subst(f,lev) $ subst(t,lev) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
510 |
| subst (t,lev) = t |
0 | 511 |
in case args of [] => t | _ => subst (t,0) end; |
512 |
||
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
513 |
(*Special case: one argument*) |
13000 | 514 |
fun subst_bound (arg, t) : term = |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
515 |
let fun subst (t as Bound i, lev) = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
516 |
if i<lev then t (*var is locally bound*) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
517 |
else if i=lev then incr_boundvars lev arg |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
518 |
else Bound(i-1) (*loose: change it*) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
519 |
| subst (Abs(a,T,body), lev) = Abs(a, T, subst(body,lev+1)) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
520 |
| subst (f$t, lev) = subst(f,lev) $ subst(t,lev) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
521 |
| subst (t,lev) = t |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
522 |
in subst (t,0) end; |
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
523 |
|
0 | 524 |
(*beta-reduce if possible, else form application*) |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
525 |
fun betapply (Abs(_,_,t), u) = subst_bound (u,t) |
0 | 526 |
| betapply (f,u) = f$u; |
527 |
||
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
528 |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
529 |
(** Equality, membership and insertion of indexnames (string*ints) **) |
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
530 |
|
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
531 |
(*optimized equality test for indexnames. Yields a huge gain under Poly/ML*) |
2959 | 532 |
fun eq_ix ((a, i):indexname, (a',i'):indexname) = (a=a') andalso i=i'; |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
533 |
|
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
534 |
(*membership in a list, optimized version for indexnames*) |
2959 | 535 |
fun mem_ix (_, []) = false |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
536 |
| mem_ix (x, y :: ys) = eq_ix(x,y) orelse mem_ix (x, ys); |
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
537 |
|
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
538 |
(*insertion into list, optimized version for indexnames*) |
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
539 |
fun ins_ix (x,xs) = if mem_ix (x, xs) then xs else x :: xs; |
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
540 |
|
0 | 541 |
(*Tests whether 2 terms are alpha-convertible and have same type. |
4626 | 542 |
Note that constants may have more than one type.*) |
0 | 543 |
fun (Const(a,T)) aconv (Const(b,U)) = a=b andalso T=U |
2752 | 544 |
| (Free(a,T)) aconv (Free(b,U)) = a=b andalso T=U |
545 |
| (Var(v,T)) aconv (Var(w,U)) = eq_ix(v,w) andalso T=U |
|
546 |
| (Bound i) aconv (Bound j) = i=j |
|
0 | 547 |
| (Abs(_,T,t)) aconv (Abs(_,U,u)) = t aconv u andalso T=U |
2752 | 548 |
| (f$t) aconv (g$u) = (f aconv g) andalso (t aconv u) |
0 | 549 |
| _ aconv _ = false; |
550 |
||
2176 | 551 |
(** Membership, insertion, union for terms **) |
552 |
||
553 |
fun mem_term (_, []) = false |
|
554 |
| mem_term (t, t'::ts) = t aconv t' orelse mem_term(t,ts); |
|
555 |
||
2182
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
556 |
fun subset_term ([], ys) = true |
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
557 |
| subset_term (x :: xs, ys) = mem_term (x, ys) andalso subset_term(xs, ys); |
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
558 |
|
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
559 |
fun eq_set_term (xs, ys) = |
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
560 |
xs = ys orelse (subset_term (xs, ys) andalso subset_term (ys, xs)); |
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
paulson
parents:
2176
diff
changeset
|
561 |
|
2176 | 562 |
fun ins_term(t,ts) = if mem_term(t,ts) then ts else t :: ts; |
563 |
||
564 |
fun union_term (xs, []) = xs |
|
565 |
| union_term ([], ys) = ys |
|
566 |
| union_term ((x :: xs), ys) = union_term (xs, ins_term (x, ys)); |
|
567 |
||
5585 | 568 |
fun inter_term ([], ys) = [] |
569 |
| inter_term (x::xs, ys) = |
|
570 |
if mem_term (x,ys) then x :: inter_term(xs,ys) else inter_term(xs,ys); |
|
571 |
||
0 | 572 |
(*are two term lists alpha-convertible in corresponding elements?*) |
573 |
fun aconvs ([],[]) = true |
|
574 |
| aconvs (t::ts, u::us) = t aconv u andalso aconvs(ts,us) |
|
575 |
| aconvs _ = false; |
|
576 |
||
13000 | 577 |
(*A fast unification filter: true unless the two terms cannot be unified. |
0 | 578 |
Terms must be NORMAL. Treats all Vars as distinct. *) |
579 |
fun could_unify (t,u) = |
|
580 |
let fun matchrands (f$t, g$u) = could_unify(t,u) andalso matchrands(f,g) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
581 |
| matchrands _ = true |
0 | 582 |
in case (head_of t , head_of u) of |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
583 |
(_, Var _) => true |
0 | 584 |
| (Var _, _) => true |
585 |
| (Const(a,_), Const(b,_)) => a=b andalso matchrands(t,u) |
|
586 |
| (Free(a,_), Free(b,_)) => a=b andalso matchrands(t,u) |
|
587 |
| (Bound i, Bound j) => i=j andalso matchrands(t,u) |
|
588 |
| (Abs _, _) => true (*because of possible eta equality*) |
|
589 |
| (_, Abs _) => true |
|
590 |
| _ => false |
|
591 |
end; |
|
592 |
||
593 |
(*Substitute new for free occurrences of old in a term*) |
|
594 |
fun subst_free [] = (fn t=>t) |
|
595 |
| subst_free pairs = |
|
13000 | 596 |
let fun substf u = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
597 |
case gen_assoc (op aconv) (pairs, u) of |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
598 |
Some u' => u' |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
599 |
| None => (case u of Abs(a,T,t) => Abs(a, T, substf t) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
600 |
| t$u' => substf t $ substf u' |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
601 |
| _ => u) |
0 | 602 |
in substf end; |
603 |
||
604 |
(*a total, irreflexive ordering on index names*) |
|
605 |
fun xless ((a,i), (b,j): indexname) = i<j orelse (i=j andalso a<b); |
|
606 |
||
607 |
||
13000 | 608 |
(*Abstraction of the term "body" over its occurrences of v, |
0 | 609 |
which must contain no loose bound variables. |
610 |
The resulting term is ready to become the body of an Abs.*) |
|
611 |
fun abstract_over (v,body) = |
|
612 |
let fun abst (lev,u) = if (v aconv u) then (Bound lev) else |
|
613 |
(case u of |
|
614 |
Abs(a,T,t) => Abs(a, T, abst(lev+1, t)) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
615 |
| f$rand => abst(lev,f) $ abst(lev,rand) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
616 |
| _ => u) |
0 | 617 |
in abst(0,body) end; |
618 |
||
13665 | 619 |
fun lambda (v as Free (x, T)) t = Abs (x, T, abstract_over (v, t)) |
620 |
| lambda (v as Var ((x, _), T)) t = Abs (x, T, abstract_over (v, t)) |
|
621 |
| lambda v t = raise TERM ("lambda", [v, t]); |
|
0 | 622 |
|
623 |
(*Form an abstraction over a free variable.*) |
|
624 |
fun absfree (a,T,body) = Abs(a, T, abstract_over (Free(a,T), body)); |
|
625 |
||
626 |
(*Abstraction over a list of free variables*) |
|
627 |
fun list_abs_free ([ ] , t) = t |
|
13000 | 628 |
| list_abs_free ((a,T)::vars, t) = |
0 | 629 |
absfree(a, T, list_abs_free(vars,t)); |
630 |
||
631 |
(*Quantification over a list of free variables*) |
|
632 |
fun list_all_free ([], t: term) = t |
|
13000 | 633 |
| list_all_free ((a,T)::vars, t) = |
0 | 634 |
(all T) $ (absfree(a, T, list_all_free(vars,t))); |
635 |
||
636 |
(*Quantification over a list of variables (already bound in body) *) |
|
637 |
fun list_all ([], t) = t |
|
13000 | 638 |
| list_all ((a,T)::vars, t) = |
0 | 639 |
(all T) $ (Abs(a, T, list_all(vars,t))); |
640 |
||
13000 | 641 |
(*Replace the ATOMIC term ti by ui; instl = [(t1,u1), ..., (tn,un)]. |
0 | 642 |
A simultaneous substitution: [ (a,b), (b,a) ] swaps a and b. *) |
643 |
fun subst_atomic [] t = t : term |
|
644 |
| subst_atomic (instl: (term*term) list) t = |
|
645 |
let fun subst (Abs(a,T,body)) = Abs(a, T, subst body) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
646 |
| subst (f$t') = subst f $ subst t' |
9721 | 647 |
| subst t = if_none (assoc(instl,t)) t |
0 | 648 |
in subst t end; |
649 |
||
728
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
lcp
parents:
375
diff
changeset
|
650 |
(*Substitute for type Vars in a type*) |
0 | 651 |
fun typ_subst_TVars iTs T = if null iTs then T else |
652 |
let fun subst(Type(a,Ts)) = Type(a, map subst Ts) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
653 |
| subst(T as TFree _) = T |
9721 | 654 |
| subst(T as TVar(ixn,_)) = if_none (assoc(iTs,ixn)) T |
0 | 655 |
in subst T end; |
656 |
||
728
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
lcp
parents:
375
diff
changeset
|
657 |
(*Substitute for type Vars in a term*) |
0 | 658 |
val subst_TVars = map_term_types o typ_subst_TVars; |
659 |
||
728
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
lcp
parents:
375
diff
changeset
|
660 |
(*Substitute for Vars in a term; see also envir/norm_term*) |
0 | 661 |
fun subst_Vars itms t = if null itms then t else |
9721 | 662 |
let fun subst(v as Var(ixn,_)) = if_none (assoc(itms,ixn)) v |
0 | 663 |
| subst(Abs(a,T,t)) = Abs(a,T,subst t) |
664 |
| subst(f$t) = subst f $ subst t |
|
665 |
| subst(t) = t |
|
666 |
in subst t end; |
|
667 |
||
728
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
lcp
parents:
375
diff
changeset
|
668 |
(*Substitute for type/term Vars in a term; see also envir/norm_term*) |
0 | 669 |
fun subst_vars(iTs,itms) = if null iTs then subst_Vars itms else |
670 |
let fun subst(Const(a,T)) = Const(a,typ_subst_TVars iTs T) |
|
671 |
| subst(Free(a,T)) = Free(a,typ_subst_TVars iTs T) |
|
672 |
| subst(v as Var(ixn,T)) = (case assoc(itms,ixn) of |
|
673 |
None => Var(ixn,typ_subst_TVars iTs T) |
|
674 |
| Some t => t) |
|
675 |
| subst(b as Bound _) = b |
|
676 |
| subst(Abs(a,T,t)) = Abs(a,typ_subst_TVars iTs T,subst t) |
|
677 |
| subst(f$t) = subst f $ subst t |
|
678 |
in subst end; |
|
679 |
||
680 |
||
681 |
(*Computing the maximum index of a typ*) |
|
2146 | 682 |
fun maxidx_of_typ(Type(_,Ts)) = maxidx_of_typs Ts |
0 | 683 |
| maxidx_of_typ(TFree _) = ~1 |
2146 | 684 |
| maxidx_of_typ(TVar((_,i),_)) = i |
685 |
and maxidx_of_typs [] = ~1 |
|
686 |
| maxidx_of_typs (T::Ts) = Int.max(maxidx_of_typ T, maxidx_of_typs Ts); |
|
0 | 687 |
|
688 |
||
689 |
(*Computing the maximum index of a term*) |
|
690 |
fun maxidx_of_term (Const(_,T)) = maxidx_of_typ T |
|
691 |
| maxidx_of_term (Bound _) = ~1 |
|
692 |
| maxidx_of_term (Free(_,T)) = maxidx_of_typ T |
|
2146 | 693 |
| maxidx_of_term (Var ((_,i), T)) = Int.max(i, maxidx_of_typ T) |
694 |
| maxidx_of_term (Abs (_,T,u)) = Int.max(maxidx_of_term u, maxidx_of_typ T) |
|
695 |
| maxidx_of_term (f$t) = Int.max(maxidx_of_term f, maxidx_of_term t); |
|
0 | 696 |
|
13665 | 697 |
fun maxidx_of_terms ts = foldl Int.max (~1, map maxidx_of_term ts); |
698 |
||
0 | 699 |
|
700 |
(* Increment the index of all Poly's in T by k *) |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
701 |
fun incr_tvar k = map_type_tvar (fn ((a,i),S) => TVar((a,i+k),S)); |
0 | 702 |
|
703 |
||
704 |
(**** Syntax-related declarations ****) |
|
705 |
||
706 |
||
4626 | 707 |
(*Dummy type for parsing and printing. Will be replaced during type inference. *) |
0 | 708 |
val dummyT = Type("dummy",[]); |
709 |
||
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
710 |
fun no_dummyT typ = |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
711 |
let |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
712 |
fun check (T as Type ("dummy", _)) = |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
713 |
raise TYPE ("Illegal occurrence of '_' dummy type", [T], []) |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
714 |
| check (Type (_, Ts)) = seq check Ts |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
715 |
| check _ = (); |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
716 |
in check typ; typ end; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
717 |
|
0 | 718 |
|
719 |
(*** Printing ***) |
|
720 |
||
14676 | 721 |
(*Makes a variant of a name distinct from the names in bs. |
722 |
First attaches the suffix and then increments this; |
|
12306
749a04f0cfb0
variant: preserve suffix of underscores (for skolem/internal names etc.);
wenzelm
parents:
11922
diff
changeset
|
723 |
preserves a suffix of underscores "_". *) |
749a04f0cfb0
variant: preserve suffix of underscores (for skolem/internal names etc.);
wenzelm
parents:
11922
diff
changeset
|
724 |
fun variant bs name = |
749a04f0cfb0
variant: preserve suffix of underscores (for skolem/internal names etc.);
wenzelm
parents:
11922
diff
changeset
|
725 |
let |
749a04f0cfb0
variant: preserve suffix of underscores (for skolem/internal names etc.);
wenzelm
parents:
11922
diff
changeset
|
726 |
val (c, u) = pairself implode (Library.take_suffix (equal "_") (Symbol.explode name)); |
12902 | 727 |
fun vary2 c = if ((c ^ u) mem_string bs) then vary2 (Symbol.bump_string c) else c; |
14676 | 728 |
fun vary1 c = if ((c ^ u) mem_string bs) then vary2 (Symbol.bump_init c) else c; |
12306
749a04f0cfb0
variant: preserve suffix of underscores (for skolem/internal names etc.);
wenzelm
parents:
11922
diff
changeset
|
729 |
in vary1 (if c = "" then "u" else c) ^ u end; |
0 | 730 |
|
731 |
(*Create variants of the list of names, with priority to the first ones*) |
|
732 |
fun variantlist ([], used) = [] |
|
13000 | 733 |
| variantlist(b::bs, used) = |
0 | 734 |
let val b' = variant used b |
735 |
in b' :: variantlist (bs, b'::used) end; |
|
736 |
||
14695 | 737 |
(*Invent fresh names*) |
738 |
fun invent_names _ _ 0 = [] |
|
739 |
| invent_names used a n = |
|
740 |
let val b = Symbol.bump_string a in |
|
741 |
if a mem_string used then invent_names used b n |
|
742 |
else a :: invent_names used b (n - 1) |
|
743 |
end; |
|
11353 | 744 |
|
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
745 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
746 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
747 |
(** Consts etc. **) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
748 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
749 |
fun add_typ_classes (Type (_, Ts), cs) = foldr add_typ_classes (Ts, cs) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
750 |
| add_typ_classes (TFree (_, S), cs) = S union cs |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
751 |
| add_typ_classes (TVar (_, S), cs) = S union cs; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
752 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
753 |
fun add_typ_tycons (Type (c, Ts), cs) = foldr add_typ_tycons (Ts, c ins cs) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
754 |
| add_typ_tycons (_, cs) = cs; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
755 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
756 |
val add_term_classes = it_term_types add_typ_classes; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
757 |
val add_term_tycons = it_term_types add_typ_tycons; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
758 |
|
9319 | 759 |
fun add_term_consts (Const (c, _), cs) = c ins_string cs |
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
760 |
| add_term_consts (t $ u, cs) = add_term_consts (t, add_term_consts (u, cs)) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
761 |
| add_term_consts (Abs (_, _, t), cs) = add_term_consts (t, cs) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
762 |
| add_term_consts (_, cs) = cs; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
763 |
|
13646 | 764 |
fun term_consts t = add_term_consts(t,[]); |
765 |
||
4185 | 766 |
fun exists_Const P t = let |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
767 |
fun ex (Const c ) = P c |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
768 |
| ex (t $ u ) = ex t orelse ex u |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
769 |
| ex (Abs (_, _, t)) = ex t |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
770 |
| ex _ = false |
4185 | 771 |
in ex t end; |
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
772 |
|
4631 | 773 |
fun exists_subterm P = |
774 |
let fun ex t = P t orelse |
|
775 |
(case t of |
|
776 |
u $ v => ex u orelse ex v |
|
777 |
| Abs(_, _, u) => ex u |
|
778 |
| _ => false) |
|
779 |
in ex end; |
|
780 |
||
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
781 |
(*map classes, tycons*) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
782 |
fun map_typ f g (Type (c, Ts)) = Type (g c, map (map_typ f g) Ts) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
783 |
| map_typ f _ (TFree (x, S)) = TFree (x, map f S) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
784 |
| map_typ f _ (TVar (xi, S)) = TVar (xi, map f S); |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
785 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
786 |
(*map classes, tycons, consts*) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
787 |
fun map_term f g h (Const (c, T)) = Const (h c, map_typ f g T) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
788 |
| map_term f g _ (Free (x, T)) = Free (x, map_typ f g T) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
789 |
| map_term f g _ (Var (xi, T)) = Var (xi, map_typ f g T) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
790 |
| map_term _ _ _ (t as Bound _) = t |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
791 |
| map_term f g h (Abs (x, T, t)) = Abs (x, map_typ f g T, map_term f g h t) |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
792 |
| map_term f g h (t $ u) = map_term f g h t $ map_term f g h u; |
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
793 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
794 |
|
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
795 |
|
0 | 796 |
(** TFrees and TVars **) |
797 |
||
798 |
(*maps (bs,v) to v'::bs this reverses the identifiers bs*) |
|
799 |
fun add_new_id (bs, c) : string list = variant bs c :: bs; |
|
800 |
||
12802
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
801 |
(*Accumulates the names of Frees in the term, suppressing duplicates.*) |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
802 |
fun add_term_free_names (Free(a,_), bs) = a ins_string bs |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
803 |
| add_term_free_names (f$u, bs) = add_term_free_names (f, add_term_free_names(u, bs)) |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
804 |
| add_term_free_names (Abs(_,_,t), bs) = add_term_free_names(t,bs) |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
805 |
| add_term_free_names (_, bs) = bs; |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
806 |
|
0 | 807 |
(*Accumulates the names in the term, suppressing duplicates. |
808 |
Includes Frees and Consts. For choosing unambiguous bound var names.*) |
|
10666 | 809 |
fun add_term_names (Const(a,_), bs) = NameSpace.base a ins_string bs |
2176 | 810 |
| add_term_names (Free(a,_), bs) = a ins_string bs |
0 | 811 |
| add_term_names (f$u, bs) = add_term_names (f, add_term_names(u, bs)) |
812 |
| add_term_names (Abs(_,_,t), bs) = add_term_names(t,bs) |
|
813 |
| add_term_names (_, bs) = bs; |
|
814 |
||
815 |
(*Accumulates the TVars in a type, suppressing duplicates. *) |
|
816 |
fun add_typ_tvars(Type(_,Ts),vs) = foldr add_typ_tvars (Ts,vs) |
|
817 |
| add_typ_tvars(TFree(_),vs) = vs |
|
818 |
| add_typ_tvars(TVar(v),vs) = v ins vs; |
|
819 |
||
820 |
(*Accumulates the TFrees in a type, suppressing duplicates. *) |
|
821 |
fun add_typ_tfree_names(Type(_,Ts),fs) = foldr add_typ_tfree_names (Ts,fs) |
|
2176 | 822 |
| add_typ_tfree_names(TFree(f,_),fs) = f ins_string fs |
0 | 823 |
| add_typ_tfree_names(TVar(_),fs) = fs; |
824 |
||
825 |
fun add_typ_tfrees(Type(_,Ts),fs) = foldr add_typ_tfrees (Ts,fs) |
|
826 |
| add_typ_tfrees(TFree(f),fs) = f ins fs |
|
827 |
| add_typ_tfrees(TVar(_),fs) = fs; |
|
828 |
||
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
829 |
fun add_typ_varnames(Type(_,Ts),nms) = foldr add_typ_varnames (Ts,nms) |
2176 | 830 |
| add_typ_varnames(TFree(nm,_),nms) = nm ins_string nms |
831 |
| add_typ_varnames(TVar((nm,_),_),nms) = nm ins_string nms; |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
832 |
|
0 | 833 |
(*Accumulates the TVars in a term, suppressing duplicates. *) |
834 |
val add_term_tvars = it_term_types add_typ_tvars; |
|
835 |
||
836 |
(*Accumulates the TFrees in a term, suppressing duplicates. *) |
|
837 |
val add_term_tfrees = it_term_types add_typ_tfrees; |
|
838 |
val add_term_tfree_names = it_term_types add_typ_tfree_names; |
|
839 |
||
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
840 |
val add_term_tvarnames = it_term_types add_typ_varnames; |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
841 |
|
0 | 842 |
(*Non-list versions*) |
843 |
fun typ_tfrees T = add_typ_tfrees(T,[]); |
|
844 |
fun typ_tvars T = add_typ_tvars(T,[]); |
|
845 |
fun term_tfrees t = add_term_tfrees(t,[]); |
|
846 |
fun term_tvars t = add_term_tvars(t,[]); |
|
847 |
||
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
848 |
(*special code to enforce left-to-right collection of TVar-indexnames*) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
849 |
|
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
850 |
fun add_typ_ixns(ixns,Type(_,Ts)) = foldl add_typ_ixns (ixns,Ts) |
13000 | 851 |
| add_typ_ixns(ixns,TVar(ixn,_)) = if mem_ix (ixn, ixns) then ixns |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
852 |
else ixns@[ixn] |
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
853 |
| add_typ_ixns(ixns,TFree(_)) = ixns; |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
854 |
|
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
855 |
fun add_term_tvar_ixns(Const(_,T),ixns) = add_typ_ixns(ixns,T) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
856 |
| add_term_tvar_ixns(Free(_,T),ixns) = add_typ_ixns(ixns,T) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
857 |
| add_term_tvar_ixns(Var(_,T),ixns) = add_typ_ixns(ixns,T) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
858 |
| add_term_tvar_ixns(Bound _,ixns) = ixns |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
859 |
| add_term_tvar_ixns(Abs(_,T,t),ixns) = |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
860 |
add_term_tvar_ixns(t,add_typ_ixns(ixns,T)) |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
861 |
| add_term_tvar_ixns(f$t,ixns) = |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
862 |
add_term_tvar_ixns(t,add_term_tvar_ixns(f,ixns)); |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
863 |
|
0 | 864 |
(** Frees and Vars **) |
865 |
||
866 |
(*a partial ordering (not reflexive) for atomic terms*) |
|
867 |
fun atless (Const (a,_), Const (b,_)) = a<b |
|
868 |
| atless (Free (a,_), Free (b,_)) = a<b |
|
869 |
| atless (Var(v,_), Var(w,_)) = xless(v,w) |
|
870 |
| atless (Bound i, Bound j) = i<j |
|
871 |
| atless _ = false; |
|
872 |
||
873 |
(*insert atomic term into partially sorted list, suppressing duplicates (?)*) |
|
874 |
fun insert_aterm (t,us) = |
|
875 |
let fun inserta [] = [t] |
|
13000 | 876 |
| inserta (us as u::us') = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
877 |
if atless(t,u) then t::us |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
878 |
else if t=u then us (*duplicate*) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
879 |
else u :: inserta(us') |
0 | 880 |
in inserta us end; |
881 |
||
882 |
(*Accumulates the Vars in the term, suppressing duplicates*) |
|
883 |
fun add_term_vars (t, vars: term list) = case t of |
|
884 |
Var _ => insert_aterm(t,vars) |
|
885 |
| Abs (_,_,body) => add_term_vars(body,vars) |
|
886 |
| f$t => add_term_vars (f, add_term_vars(t, vars)) |
|
887 |
| _ => vars; |
|
888 |
||
889 |
fun term_vars t = add_term_vars(t,[]); |
|
890 |
||
891 |
(*Accumulates the Frees in the term, suppressing duplicates*) |
|
892 |
fun add_term_frees (t, frees: term list) = case t of |
|
893 |
Free _ => insert_aterm(t,frees) |
|
894 |
| Abs (_,_,body) => add_term_frees(body,frees) |
|
895 |
| f$t => add_term_frees (f, add_term_frees(t, frees)) |
|
896 |
| _ => frees; |
|
897 |
||
898 |
fun term_frees t = add_term_frees(t,[]); |
|
899 |
||
900 |
(*Given an abstraction over P, replaces the bound variable by a Free variable |
|
901 |
having a unique name. *) |
|
902 |
fun variant_abs (a,T,P) = |
|
903 |
let val b = variant (add_term_names(P,[])) a |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
904 |
in (b, subst_bound (Free(b,T), P)) end; |
0 | 905 |
|
906 |
(* renames and reverses the strings in vars away from names *) |
|
907 |
fun rename_aTs names vars : (string*typ)list = |
|
908 |
let fun rename_aT (vars,(a,T)) = |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
909 |
(variant (map #1 vars @ names) a, T) :: vars |
0 | 910 |
in foldl rename_aT ([],vars) end; |
911 |
||
912 |
fun rename_wrt_term t = rename_aTs (add_term_names(t,[])); |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
913 |
|
1417 | 914 |
|
4286
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
915 |
(* left-ro-right traversal *) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
916 |
|
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
917 |
(*foldl atoms of type*) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
918 |
fun foldl_atyps f (x, Type (_, Ts)) = foldl (foldl_atyps f) (x, Ts) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
919 |
| foldl_atyps f x_atom = f x_atom; |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
920 |
|
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
921 |
(*foldl atoms of term*) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
922 |
fun foldl_aterms f (x, t $ u) = foldl_aterms f (foldl_aterms f (x, t), u) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
923 |
| foldl_aterms f (x, Abs (_, _, t)) = foldl_aterms f (x, t) |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
924 |
| foldl_aterms f x_atom = f x_atom; |
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
925 |
|
6548
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
926 |
fun foldl_map_aterms f (x, t $ u) = |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
927 |
let val (x', t') = foldl_map_aterms f (x, t); val (x'', u') = foldl_map_aterms f (x', u); |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
928 |
in (x'', t' $ u') end |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
929 |
| foldl_map_aterms f (x, Abs (a, T, t)) = |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
930 |
let val (x', t') = foldl_map_aterms f (x, t) in (x', Abs (a, T, t')) end |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
931 |
| foldl_map_aterms f x_atom = f x_atom; |
9b108dd75c25
val foldl_map_aterms: ('a * term -> 'a * term) -> 'a * term -> 'a * term;
wenzelm
parents:
6033
diff
changeset
|
932 |
|
4286
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
933 |
(*foldl types of term*) |
8609 | 934 |
fun foldl_term_types f (x, t as Const (_, T)) = f t (x, T) |
935 |
| foldl_term_types f (x, t as Free (_, T)) = f t (x, T) |
|
936 |
| foldl_term_types f (x, t as Var (_, T)) = f t (x, T) |
|
937 |
| foldl_term_types f (x, Bound _) = x |
|
938 |
| foldl_term_types f (x, t as Abs (_, T, b)) = foldl_term_types f (f t (x, T), b) |
|
939 |
| foldl_term_types f (x, t $ u) = foldl_term_types f (foldl_term_types f (x, t), u); |
|
940 |
||
941 |
fun foldl_types f = foldl_term_types (fn _ => f); |
|
4286
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
942 |
|
12499 | 943 |
(*collect variables*) |
944 |
val add_tvarsT = foldl_atyps (fn (vs, TVar v) => v ins vs | (vs, _) => vs); |
|
945 |
val add_tvars = foldl_types add_tvarsT; |
|
946 |
val add_vars = foldl_aterms (fn (vs, Var v) => v ins vs | (vs, _) => vs); |
|
947 |
val add_frees = foldl_aterms (fn (vs, Free v) => v ins vs | (vs, _) => vs); |
|
948 |
||
15025 | 949 |
(*collect variable names*) |
950 |
val add_term_varnames = foldl_aterms (fn (xs, Var (x, _)) => ins_ix (x, xs) | (xs, _) => xs); |
|
951 |
fun term_varnames t = add_term_varnames ([], t); |
|
4286
a09e3e6da2de
added foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a;
wenzelm
parents:
4188
diff
changeset
|
952 |
|
1417 | 953 |
|
4444 | 954 |
(** type and term orders **) |
955 |
||
956 |
fun indexname_ord ((x, i), (y, j)) = |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
957 |
(case Int.compare (i, j) of EQUAL => String.compare (x, y) | ord => ord); |
4444 | 958 |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
959 |
val sort_ord = list_ord String.compare; |
13000 | 960 |
|
4444 | 961 |
|
962 |
(* typ_ord *) |
|
963 |
||
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
964 |
fun typ_ord (Type x, Type y) = prod_ord String.compare typs_ord (x, y) |
4444 | 965 |
| typ_ord (Type _, _) = GREATER |
966 |
| typ_ord (TFree _, Type _) = LESS |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
967 |
| typ_ord (TFree x, TFree y) = prod_ord String.compare sort_ord (x, y) |
4444 | 968 |
| typ_ord (TFree _, TVar _) = GREATER |
969 |
| typ_ord (TVar _, Type _) = LESS |
|
970 |
| typ_ord (TVar _, TFree _) = LESS |
|
13000 | 971 |
| typ_ord (TVar x, TVar y) = prod_ord indexname_ord sort_ord (x, y) |
4444 | 972 |
and typs_ord Ts_Us = list_ord typ_ord Ts_Us; |
973 |
||
974 |
||
975 |
(* term_ord *) |
|
976 |
||
977 |
(*a linear well-founded AC-compatible ordering for terms: |
|
978 |
s < t <=> 1. size(s) < size(t) or |
|
979 |
2. size(s) = size(t) and s=f(...) and t=g(...) and f<g or |
|
980 |
3. size(s) = size(t) and s=f(s1..sn) and t=f(t1..tn) and |
|
981 |
(s1..sn) < (t1..tn) (lexicographically)*) |
|
982 |
||
983 |
fun dest_hd (Const (a, T)) = (((a, 0), T), 0) |
|
984 |
| dest_hd (Free (a, T)) = (((a, 0), T), 1) |
|
985 |
| dest_hd (Var v) = (v, 2) |
|
986 |
| dest_hd (Bound i) = ((("", i), dummyT), 3) |
|
987 |
| dest_hd (Abs (_, T, _)) = ((("", 0), T), 4); |
|
988 |
||
989 |
fun term_ord (Abs (_, T, t), Abs(_, U, u)) = |
|
990 |
(case term_ord (t, u) of EQUAL => typ_ord (T, U) | ord => ord) |
|
991 |
| term_ord (t, u) = |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
992 |
(case Int.compare (size_of_term t, size_of_term u) of |
4444 | 993 |
EQUAL => |
994 |
let val (f, ts) = strip_comb t and (g, us) = strip_comb u in |
|
995 |
(case hd_ord (f, g) of EQUAL => terms_ord (ts, us) | ord => ord) |
|
996 |
end |
|
997 |
| ord => ord) |
|
998 |
and hd_ord (f, g) = |
|
14472
cba7c0a3ffb3
Removing the datatype declaration of "order" allows the standard General.order
paulson
parents:
13665
diff
changeset
|
999 |
prod_ord (prod_ord indexname_ord typ_ord) Int.compare (dest_hd f, dest_hd g) |
4444 | 1000 |
and terms_ord (ts, us) = list_ord term_ord (ts, us); |
1001 |
||
1002 |
fun termless tu = (term_ord tu = LESS); |
|
1003 |
||
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1004 |
structure Vartab = TableFun(type key = indexname val ord = indexname_ord); |
13000 | 1005 |
structure Typtab = TableFun(type key = typ val ord = typ_ord); |
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1006 |
structure Termtab = TableFun(type key = term val ord = term_ord); |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1007 |
|
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1008 |
(*Substitute for type Vars in a type, version using Vartab*) |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1009 |
fun typ_subst_TVars_Vartab iTs T = if Vartab.is_empty iTs then T else |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1010 |
let fun subst(Type(a, Ts)) = Type(a, map subst Ts) |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1011 |
| subst(T as TFree _) = T |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1012 |
| subst(T as TVar(ixn, _)) = |
8408
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1013 |
(case Vartab.lookup (iTs, ixn) of None => T | Some(U) => U) |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1014 |
in subst T end; |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1015 |
|
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1016 |
(*Substitute for type Vars in a term, version using Vartab*) |
4d981311dab7
Added functions subst_TVars_Vartab and typ_subst_TVars_Vartab.
berghofe
parents:
7638
diff
changeset
|
1017 |
val subst_TVars_Vartab = map_term_types o typ_subst_TVars_Vartab; |
4444 | 1018 |
|
1019 |
||
13000 | 1020 |
(*** Compression of terms and types by sharing common subtrees. |
1021 |
Saves 50-75% on storage requirements. As it is a bit slow, |
|
1022 |
it should be called only for axioms, stored theorems, etc. |
|
1023 |
Recorded term and type fragments are never disposed. ***) |
|
1417 | 1024 |
|
1025 |
(** Sharing of types **) |
|
1026 |
||
13000 | 1027 |
val memo_types = ref (Typtab.empty: typ Typtab.table); |
1417 | 1028 |
|
1029 |
fun compress_type T = |
|
13000 | 1030 |
(case Typtab.lookup (! memo_types, T) of |
1031 |
Some T' => T' |
|
1032 |
| None => |
|
1033 |
let val T' = (case T of Type (a, Ts) => Type (a, map compress_type Ts) | _ => T) |
|
1034 |
in memo_types := Typtab.update ((T', T'), ! memo_types); T' end); |
|
1035 |
||
1417 | 1036 |
|
1037 |
(** Sharing of atomic terms **) |
|
1038 |
||
13000 | 1039 |
val memo_terms = ref (Termtab.empty : term Termtab.table); |
1417 | 1040 |
|
1041 |
fun share_term (t $ u) = share_term t $ share_term u |
|
13000 | 1042 |
| share_term (Abs (a, T, u)) = Abs (a, T, share_term u) |
1417 | 1043 |
| share_term t = |
13000 | 1044 |
(case Termtab.lookup (! memo_terms, t) of |
1045 |
Some t' => t' |
|
1046 |
| None => (memo_terms := Termtab.update ((t, t), ! memo_terms); t)); |
|
1417 | 1047 |
|
1048 |
val compress_term = share_term o map_term_types compress_type; |
|
1049 |
||
4444 | 1050 |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1051 |
(* dummy patterns *) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1052 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1053 |
val dummy_patternN = "dummy_pattern"; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1054 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1055 |
fun is_dummy_pattern (Const ("dummy_pattern", _)) = true |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1056 |
| is_dummy_pattern _ = false; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1057 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1058 |
fun no_dummy_patterns tm = |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1059 |
if not (foldl_aterms (fn (b, t) => b orelse is_dummy_pattern t) (false, tm)) then tm |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1060 |
else raise TERM ("Illegal occurrence of '_' dummy pattern", [tm]); |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1061 |
|
11903 | 1062 |
fun replace_dummy Ts (i, Const ("dummy_pattern", T)) = |
1063 |
(i + 1, list_comb (Var (("_dummy_", i), Ts ---> T), map Bound (0 upto length Ts - 1))) |
|
1064 |
| replace_dummy Ts (i, Abs (x, T, t)) = |
|
1065 |
let val (i', t') = replace_dummy (T :: Ts) (i, t) |
|
1066 |
in (i', Abs (x, T, t')) end |
|
1067 |
| replace_dummy Ts (i, t $ u) = |
|
1068 |
let val (i', t') = replace_dummy Ts (i, t); val (i'', u') = replace_dummy Ts (i', u) |
|
1069 |
in (i'', t' $ u') end |
|
1070 |
| replace_dummy _ (i, a) = (i, a); |
|
1071 |
||
1072 |
val replace_dummy_patterns = replace_dummy []; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1073 |
|
10552 | 1074 |
fun is_replaced_dummy_pattern ("_dummy_", _) = true |
1075 |
| is_replaced_dummy_pattern _ = false; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1076 |
|
13484 | 1077 |
|
1078 |
(* adhoc freezing *) |
|
1079 |
||
1080 |
fun adhoc_freeze_vars tm = |
|
1081 |
let |
|
1082 |
fun mk_inst (var as Var ((a, i), T)) = |
|
1083 |
let val x = a ^ Library.gensym "_" ^ string_of_int i |
|
1084 |
in ((var, Free(x, T)), x) end; |
|
1085 |
val (insts, xs) = split_list (map mk_inst (term_vars tm)); |
|
1086 |
in (subst_atomic insts tm, xs) end; |
|
1087 |
||
1088 |
||
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1089 |
(* string_of_vname *) |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1090 |
|
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1091 |
fun string_of_vname (x, i) = |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1092 |
let |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1093 |
val si = string_of_int i; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1094 |
val dot = if_none (try (Symbol.is_digit o last_elem o Symbol.explode) x) true; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1095 |
in |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1096 |
if dot then "?" ^ x ^ "." ^ si |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1097 |
else if i = 0 then "?" ^ x |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1098 |
else "?" ^ x ^ si |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1099 |
end; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1100 |
|
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1101 |
fun string_of_vname' (x, ~1) = x |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1102 |
| string_of_vname' xi = string_of_vname xi; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1103 |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
1104 |
end; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
1105 |
|
4444 | 1106 |
structure BasicTerm: BASIC_TERM = Term; |
1107 |
open BasicTerm; |