author | chaieb |
Mon, 09 Feb 2009 15:38:26 +0000 | |
changeset 29837 | eb7e62c0f53c |
parent 29286 | 5de880bda02d |
child 29882 | 29154e67731d |
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 |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
29280 | 3 |
Author: Makarius |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
4 |
|
4444 | 5 |
Simply typed lambda-calculus: types, terms, and basic operations. |
0 | 6 |
*) |
7 |
||
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
8 |
infix 9 $; |
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
9 |
infixr 5 -->; |
4444 | 10 |
infixr --->; |
11 |
infix aconv; |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
12 |
|
4444 | 13 |
signature BASIC_TERM = |
14 |
sig |
|
22572 | 15 |
eqtype indexname |
16 |
eqtype class |
|
17 |
eqtype sort |
|
18 |
eqtype arity |
|
4444 | 19 |
datatype typ = |
20 |
Type of string * typ list | |
|
21 |
TFree of string * sort | |
|
22 |
TVar of indexname * sort |
|
16537 | 23 |
datatype term = |
24 |
Const of string * typ | |
|
25 |
Free of string * typ | |
|
26 |
Var of indexname * typ | |
|
27 |
Bound of int | |
|
28 |
Abs of string * typ * term | |
|
17756 | 29 |
$ of term * term |
16537 | 30 |
exception TYPE of string * typ list * term list |
31 |
exception TERM of string * term list |
|
21353 | 32 |
val dummyS: sort |
16710 | 33 |
val dummyT: typ |
34 |
val no_dummyT: typ -> typ |
|
4444 | 35 |
val --> : typ * typ -> typ |
36 |
val ---> : typ list * typ -> typ |
|
16710 | 37 |
val dest_Type: typ -> string * typ list |
38 |
val dest_TVar: typ -> indexname * sort |
|
39 |
val dest_TFree: typ -> string * sort |
|
40 |
val is_Bound: term -> bool |
|
41 |
val is_Const: term -> bool |
|
42 |
val is_Free: term -> bool |
|
43 |
val is_Var: term -> bool |
|
4444 | 44 |
val is_TVar: typ -> bool |
16710 | 45 |
val dest_Const: term -> string * typ |
46 |
val dest_Free: term -> string * typ |
|
47 |
val dest_Var: term -> indexname * typ |
|
4444 | 48 |
val domain_type: typ -> typ |
4480 | 49 |
val range_type: typ -> typ |
4444 | 50 |
val binder_types: typ -> typ list |
51 |
val body_type: typ -> typ |
|
52 |
val strip_type: typ -> typ list * typ |
|
16710 | 53 |
val type_of1: typ list * term -> typ |
4444 | 54 |
val type_of: term -> typ |
16710 | 55 |
val fastype_of1: typ list * term -> typ |
4444 | 56 |
val fastype_of: term -> typ |
10806 | 57 |
val list_abs: (string * typ) list * term -> term |
18927 | 58 |
val strip_abs: term -> (string * typ) list * term |
4444 | 59 |
val strip_abs_body: term -> term |
60 |
val strip_abs_vars: term -> (string * typ) list |
|
61 |
val strip_qnt_body: string -> term -> term |
|
62 |
val strip_qnt_vars: string -> term -> (string * typ) list |
|
63 |
val list_comb: term * term list -> term |
|
64 |
val strip_comb: term -> term * term list |
|
65 |
val head_of: term -> term |
|
66 |
val size_of_term: term -> int |
|
18847 | 67 |
val map_atyps: (typ -> typ) -> typ -> typ |
68 |
val map_aterms: (term -> term) -> term -> term |
|
4444 | 69 |
val map_type_tvar: (indexname * sort -> typ) -> typ -> typ |
70 |
val map_type_tfree: (string * sort -> typ) -> typ -> typ |
|
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20531
diff
changeset
|
71 |
val map_types: (typ -> typ) -> term -> term |
16943 | 72 |
val fold_atyps: (typ -> 'a -> 'a) -> typ -> 'a -> 'a |
73 |
val fold_aterms: (term -> 'a -> 'a) -> term -> 'a -> 'a |
|
74 |
val fold_term_types: (term -> typ -> 'a -> 'a) -> term -> 'a -> 'a |
|
75 |
val fold_types: (typ -> 'a -> 'a) -> term -> 'a -> 'a |
|
24483 | 76 |
val burrow_types: (typ list -> typ list) -> term list -> term list |
16710 | 77 |
val aconv: term * term -> bool |
4444 | 78 |
val propT: typ |
79 |
val strip_all_body: term -> term |
|
80 |
val strip_all_vars: term -> (string * typ) list |
|
81 |
val incr_bv: int * int * term -> term |
|
82 |
val incr_boundvars: int -> term -> term |
|
83 |
val add_loose_bnos: term * int * int list -> int list |
|
84 |
val loose_bnos: term -> int list |
|
85 |
val loose_bvar: term * int -> bool |
|
86 |
val loose_bvar1: term * int -> bool |
|
87 |
val subst_bounds: term list * term -> term |
|
88 |
val subst_bound: term * term -> term |
|
89 |
val betapply: term * term -> term |
|
18183 | 90 |
val betapplys: term * term list -> term |
4444 | 91 |
val subst_free: (term * term) list -> term -> term |
92 |
val abstract_over: term * term -> term |
|
11922 | 93 |
val lambda: term -> term -> term |
4444 | 94 |
val absfree: string * typ * term -> term |
17786 | 95 |
val absdummy: typ * term -> term |
4444 | 96 |
val list_abs_free: (string * typ) list * term -> term |
97 |
val list_all_free: (string * typ) list * term -> term |
|
98 |
val list_all: (string * typ) list * term -> term |
|
16710 | 99 |
val subst_atomic: (term * term) list -> term -> term |
100 |
val typ_subst_atomic: (typ * typ) list -> typ -> typ |
|
101 |
val subst_atomic_types: (typ * typ) list -> term -> term |
|
102 |
val typ_subst_TVars: (indexname * typ) list -> typ -> typ |
|
103 |
val subst_TVars: (indexname * typ) list -> term -> term |
|
104 |
val subst_Vars: (indexname * term) list -> term -> term |
|
105 |
val subst_vars: (indexname * typ) list * (indexname * term) list -> term -> term |
|
106 |
val is_first_order: string list -> term -> bool |
|
4444 | 107 |
val maxidx_of_typ: typ -> int |
108 |
val maxidx_of_typs: typ list -> int |
|
109 |
val maxidx_of_term: term -> int |
|
19909 | 110 |
val exists_subtype: (typ -> bool) -> typ -> bool |
20531 | 111 |
val exists_type: (typ -> bool) -> term -> bool |
16943 | 112 |
val exists_subterm: (term -> bool) -> term -> bool |
16710 | 113 |
val exists_Const: (string * typ -> bool) -> term -> bool |
15986 | 114 |
val show_question_marks: bool ref |
4444 | 115 |
end; |
0 | 116 |
|
4444 | 117 |
signature TERM = |
118 |
sig |
|
119 |
include BASIC_TERM |
|
19394 | 120 |
val aT: sort -> typ |
121 |
val itselfT: typ -> typ |
|
122 |
val a_itselfT: typ |
|
27335 | 123 |
val all: typ -> term |
22908 | 124 |
val argument_type_of: term -> int -> typ |
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
125 |
val add_tvar_namesT: typ -> indexname list -> indexname list |
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
126 |
val add_tvar_names: term -> indexname list -> indexname list |
16943 | 127 |
val add_tvarsT: typ -> (indexname * sort) list -> (indexname * sort) list |
128 |
val add_tvars: term -> (indexname * sort) list -> (indexname * sort) list |
|
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
129 |
val add_var_names: term -> indexname list -> indexname list |
16943 | 130 |
val add_vars: term -> (indexname * typ) list -> (indexname * typ) list |
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
131 |
val add_tfree_namesT: typ -> string list -> string list |
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
132 |
val add_tfree_names: term -> string list -> string list |
16943 | 133 |
val add_tfreesT: typ -> (string * sort) list -> (string * sort) list |
134 |
val add_tfrees: term -> (string * sort) list -> (string * sort) list |
|
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
135 |
val add_free_names: term -> string list -> string list |
16943 | 136 |
val add_frees: term -> (string * typ) list -> (string * typ) list |
29286 | 137 |
val add_const_names: term -> string list -> string list |
138 |
val add_consts: term -> (string * typ) list -> (string * typ) list |
|
25050 | 139 |
val hidden_polymorphism: term -> (indexname * sort) list |
29278 | 140 |
val declare_typ_names: typ -> Name.context -> Name.context |
141 |
val declare_term_names: term -> Name.context -> Name.context |
|
142 |
val declare_term_frees: term -> Name.context -> Name.context |
|
143 |
val variant_frees: term -> (string * 'a) list -> (string * 'a) list |
|
144 |
val rename_wrt_term: term -> (string * 'a) list -> (string * 'a) list |
|
29269
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
145 |
val eq_ix: indexname * indexname -> bool |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
146 |
val eq_tvar: (indexname * sort) * (indexname * sort) -> bool |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
147 |
val eq_var: (indexname * typ) * (indexname * typ) -> bool |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
148 |
val could_unify: term * term -> bool |
20109 | 149 |
val strip_abs_eta: int -> term -> (string * typ) list * term |
12981 | 150 |
val match_bvars: (term * term) * (string * string) list -> (string * string) list |
22031 | 151 |
val map_abs_vars: (string -> string) -> term -> term |
12981 | 152 |
val rename_abs: term -> term -> term -> term option |
25050 | 153 |
val close_schematic_term: term -> term |
16710 | 154 |
val maxidx_typ: typ -> int -> int |
155 |
val maxidx_typs: typ list -> int -> int |
|
156 |
val maxidx_term: term -> int -> int |
|
24671 | 157 |
val has_abs: term -> bool |
20239 | 158 |
val dest_abs: string * typ * term -> string * term |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
159 |
val dummy_patternN: string |
18253 | 160 |
val dummy_pattern: typ -> term |
22723 | 161 |
val is_dummy_pattern: term -> bool |
24733 | 162 |
val free_dummy_patterns: term -> Name.context -> term * Name.context |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
163 |
val no_dummy_patterns: term -> term |
24762 | 164 |
val replace_dummy_patterns: term -> int -> term * int |
10552 | 165 |
val is_replaced_dummy_pattern: indexname -> bool |
16035 | 166 |
val show_dummy_patterns: term -> term |
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
167 |
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
|
168 |
val string_of_vname': indexname -> string |
4444 | 169 |
end; |
170 |
||
171 |
structure Term: TERM = |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
172 |
struct |
0 | 173 |
|
174 |
(*Indexnames can be quickly renamed by adding an offset to the integer part, |
|
175 |
for resolution.*) |
|
16537 | 176 |
type indexname = string * int; |
0 | 177 |
|
4626 | 178 |
(* Types are classified by sorts. *) |
0 | 179 |
type class = string; |
180 |
type sort = class list; |
|
14829
cfa5fe01a7b7
moved read_int etc. to library.ML; added type 'arity';
wenzelm
parents:
14786
diff
changeset
|
181 |
type arity = string * sort list * sort; |
0 | 182 |
|
183 |
(* The sorts attached to TFrees and TVars specify the sort of that variable *) |
|
184 |
datatype typ = Type of string * typ list |
|
185 |
| TFree of string * sort |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
186 |
| TVar of indexname * sort; |
0 | 187 |
|
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
188 |
(*Terms. Bound variables are indicated by depth number. |
0 | 189 |
Free variables, (scheme) variables and constants have names. |
4626 | 190 |
An term is "closed" if every bound variable of level "lev" |
13000 | 191 |
is enclosed by at least "lev" abstractions. |
0 | 192 |
|
193 |
It is possible to create meaningless terms containing loose bound vars |
|
194 |
or type mismatches. But such terms are not allowed in rules. *) |
|
195 |
||
13000 | 196 |
datatype term = |
0 | 197 |
Const of string * typ |
13000 | 198 |
| Free of string * typ |
0 | 199 |
| Var of indexname * typ |
200 |
| Bound of int |
|
201 |
| Abs of string*typ*term |
|
3965 | 202 |
| op $ of term*term; |
0 | 203 |
|
16537 | 204 |
(*Errors involving type mismatches*) |
0 | 205 |
exception TYPE of string * typ list * term list; |
206 |
||
16537 | 207 |
(*Errors errors involving terms*) |
0 | 208 |
exception TERM of string * term list; |
209 |
||
210 |
(*Note variable naming conventions! |
|
211 |
a,b,c: string |
|
212 |
f,g,h: functions (including terms of function type) |
|
213 |
i,j,m,n: int |
|
214 |
t,u: term |
|
215 |
v,w: indexnames |
|
216 |
x,y: any |
|
217 |
A,B,C: term (denoting formulae) |
|
218 |
T,U: typ |
|
219 |
*) |
|
220 |
||
221 |
||
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
222 |
(** Types **) |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
223 |
|
21353 | 224 |
(*dummies for type-inference etc.*) |
225 |
val dummyS = [""]; |
|
16537 | 226 |
val dummyT = Type ("dummy", []); |
227 |
||
228 |
fun no_dummyT typ = |
|
229 |
let |
|
230 |
fun check (T as Type ("dummy", _)) = |
|
231 |
raise TYPE ("Illegal occurrence of '_' dummy type", [T], []) |
|
232 |
| check (Type (_, Ts)) = List.app check Ts |
|
233 |
| check _ = (); |
|
234 |
in check typ; typ end; |
|
235 |
||
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
236 |
fun S --> T = Type("fun",[S,T]); |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
237 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
238 |
(*handy for multiple args: [T1,...,Tn]--->T gives T1-->(T2--> ... -->T)*) |
15570 | 239 |
val op ---> = Library.foldr (op -->); |
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
240 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
241 |
fun dest_Type (Type x) = x |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
242 |
| dest_Type T = raise TYPE ("dest_Type", [T], []); |
15914 | 243 |
fun dest_TVar (TVar x) = x |
244 |
| dest_TVar T = raise TYPE ("dest_TVar", [T], []); |
|
245 |
fun dest_TFree (TFree x) = x |
|
246 |
| dest_TFree T = raise TYPE ("dest_TFree", [T], []); |
|
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
247 |
|
16537 | 248 |
|
0 | 249 |
(** Discriminators **) |
250 |
||
7318 | 251 |
fun is_Bound (Bound _) = true |
252 |
| is_Bound _ = false; |
|
253 |
||
0 | 254 |
fun is_Const (Const _) = true |
255 |
| is_Const _ = false; |
|
256 |
||
257 |
fun is_Free (Free _) = true |
|
258 |
| is_Free _ = false; |
|
259 |
||
260 |
fun is_Var (Var _) = true |
|
261 |
| is_Var _ = false; |
|
262 |
||
263 |
fun is_TVar (TVar _) = true |
|
264 |
| is_TVar _ = false; |
|
265 |
||
16537 | 266 |
|
0 | 267 |
(** Destructors **) |
268 |
||
269 |
fun dest_Const (Const x) = x |
|
270 |
| dest_Const t = raise TERM("dest_Const", [t]); |
|
271 |
||
272 |
fun dest_Free (Free x) = x |
|
273 |
| dest_Free t = raise TERM("dest_Free", [t]); |
|
274 |
||
275 |
fun dest_Var (Var x) = x |
|
276 |
| dest_Var t = raise TERM("dest_Var", [t]); |
|
277 |
||
278 |
||
4464 | 279 |
fun domain_type (Type("fun", [T,_])) = T |
280 |
and range_type (Type("fun", [_,T])) = T; |
|
4064 | 281 |
|
0 | 282 |
(* maps [T1,...,Tn]--->T to the list [T1,T2,...,Tn]*) |
283 |
fun binder_types (Type("fun",[S,T])) = S :: binder_types T |
|
284 |
| binder_types _ = []; |
|
285 |
||
286 |
(* maps [T1,...,Tn]--->T to T*) |
|
287 |
fun body_type (Type("fun",[S,T])) = body_type T |
|
288 |
| body_type T = T; |
|
289 |
||
290 |
(* maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T) *) |
|
291 |
fun strip_type T : typ list * typ = |
|
292 |
(binder_types T, body_type T); |
|
293 |
||
294 |
||
295 |
(*Compute the type of the term, checking that combinations are well-typed |
|
296 |
Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*) |
|
297 |
fun type_of1 (Ts, Const (_,T)) = T |
|
298 |
| type_of1 (Ts, Free (_,T)) = T |
|
15570 | 299 |
| type_of1 (Ts, Bound i) = (List.nth (Ts,i) |
300 |
handle Subscript => raise TYPE("type_of: bound variable", [], [Bound i])) |
|
0 | 301 |
| type_of1 (Ts, Var (_,T)) = T |
302 |
| type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body) |
|
13000 | 303 |
| type_of1 (Ts, f$u) = |
0 | 304 |
let val U = type_of1(Ts,u) |
305 |
and T = type_of1(Ts,f) |
|
306 |
in case T of |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
307 |
Type("fun",[T1,T2]) => |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
308 |
if T1=U then T2 else raise TYPE |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
309 |
("type_of: type mismatch in application", [T1,U], [f$u]) |
13000 | 310 |
| _ => raise TYPE |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
311 |
("type_of: function type is expected in application", |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
312 |
[T,U], [f$u]) |
0 | 313 |
end; |
314 |
||
315 |
fun type_of t : typ = type_of1 ([],t); |
|
316 |
||
317 |
(*Determines the type of a term, with minimal checking*) |
|
13000 | 318 |
fun fastype_of1 (Ts, f$u) = |
61 | 319 |
(case fastype_of1 (Ts,f) of |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
320 |
Type("fun",[_,T]) => T |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
321 |
| _ => raise TERM("fastype_of: expected function type", [f$u])) |
61 | 322 |
| fastype_of1 (_, Const (_,T)) = T |
323 |
| fastype_of1 (_, Free (_,T)) = T |
|
15570 | 324 |
| fastype_of1 (Ts, Bound i) = (List.nth(Ts,i) |
325 |
handle Subscript => raise TERM("fastype_of: Bound", [Bound i])) |
|
13000 | 326 |
| fastype_of1 (_, Var (_,T)) = T |
61 | 327 |
| fastype_of1 (Ts, Abs (_,T,u)) = T --> fastype_of1 (T::Ts, u); |
328 |
||
329 |
fun fastype_of t : typ = fastype_of1 ([],t); |
|
0 | 330 |
|
16678 | 331 |
(*Determine the argument type of a function*) |
22908 | 332 |
fun argument_type_of tm k = |
16678 | 333 |
let |
334 |
fun argT i (Type ("fun", [T, U])) = if i = 0 then T else argT (i - 1) U |
|
335 |
| argT _ T = raise TYPE ("argument_type_of", [T], []); |
|
336 |
||
337 |
fun arg 0 _ (Abs (_, T, _)) = T |
|
338 |
| arg i Ts (Abs (_, T, t)) = arg (i - 1) (T :: Ts) t |
|
339 |
| arg i Ts (t $ _) = arg (i + 1) Ts t |
|
340 |
| arg i Ts a = argT i (fastype_of1 (Ts, a)); |
|
22908 | 341 |
in arg k [] tm end; |
16678 | 342 |
|
0 | 343 |
|
19473 | 344 |
val list_abs = uncurry (fold_rev (fn (x, T) => fn t => Abs (x, T, t))); |
10806 | 345 |
|
18927 | 346 |
fun strip_abs (Abs (a, T, t)) = |
347 |
let val (a', t') = strip_abs t |
|
348 |
in ((a, T) :: a', t') end |
|
349 |
| strip_abs t = ([], t); |
|
350 |
||
0 | 351 |
(* maps (x1,...,xn)t to t *) |
13000 | 352 |
fun strip_abs_body (Abs(_,_,t)) = strip_abs_body t |
0 | 353 |
| strip_abs_body u = u; |
354 |
||
355 |
(* maps (x1,...,xn)t to [x1, ..., xn] *) |
|
13000 | 356 |
fun strip_abs_vars (Abs(a,T,t)) = (a,T) :: strip_abs_vars t |
0 | 357 |
| strip_abs_vars u = [] : (string*typ) list; |
358 |
||
359 |
||
360 |
fun strip_qnt_body qnt = |
|
361 |
let fun strip(tm as Const(c,_)$Abs(_,_,t)) = if c=qnt then strip t else tm |
|
362 |
| strip t = t |
|
363 |
in strip end; |
|
364 |
||
365 |
fun strip_qnt_vars qnt = |
|
366 |
let fun strip(Const(c,_)$Abs(a,T,t)) = if c=qnt then (a,T)::strip t else [] |
|
367 |
| strip t = [] : (string*typ) list |
|
368 |
in strip end; |
|
369 |
||
370 |
||
371 |
(* maps (f, [t1,...,tn]) to f(t1,...,tn) *) |
|
15570 | 372 |
val list_comb : term * term list -> term = Library.foldl (op $); |
0 | 373 |
|
374 |
||
375 |
(* maps f(t1,...,tn) to (f, [t1,...,tn]) ; naturally tail-recursive*) |
|
13000 | 376 |
fun strip_comb u : term * term list = |
0 | 377 |
let fun stripc (f$t, ts) = stripc (f, t::ts) |
13000 | 378 |
| stripc x = x |
0 | 379 |
in stripc(u,[]) end; |
380 |
||
381 |
||
382 |
(* maps f(t1,...,tn) to f , which is never a combination *) |
|
383 |
fun head_of (f$t) = head_of f |
|
384 |
| head_of u = u; |
|
385 |
||
16599 | 386 |
(*number of atoms and abstractions in a term*) |
387 |
fun size_of_term tm = |
|
388 |
let |
|
16678 | 389 |
fun add_size (t $ u, n) = add_size (t, add_size (u, n)) |
390 |
| add_size (Abs (_ ,_, t), n) = add_size (t, n + 1) |
|
391 |
| add_size (_, n) = n + 1; |
|
392 |
in add_size (tm, 0) end; |
|
0 | 393 |
|
18847 | 394 |
fun map_atyps f (Type (a, Ts)) = Type (a, map (map_atyps f) Ts) |
18976
4efb82669880
fixed the most silly bug conceivable in map_atyps
haftmann
parents:
18975
diff
changeset
|
395 |
| map_atyps f T = f T; |
18847 | 396 |
|
397 |
fun map_aterms f (t $ u) = map_aterms f t $ map_aterms f u |
|
398 |
| map_aterms f (Abs (a, T, t)) = Abs (a, T, map_aterms f t) |
|
399 |
| map_aterms f t = f t; |
|
400 |
||
18981 | 401 |
fun map_type_tvar f = map_atyps (fn TVar x => f x | T => T); |
402 |
fun map_type_tfree f = map_atyps (fn TFree x => f x | T => T); |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
403 |
|
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20531
diff
changeset
|
404 |
fun map_types f = |
16678 | 405 |
let |
406 |
fun map_aux (Const (a, T)) = Const (a, f T) |
|
407 |
| map_aux (Free (a, T)) = Free (a, f T) |
|
408 |
| map_aux (Var (v, T)) = Var (v, f T) |
|
409 |
| map_aux (t as Bound _) = t |
|
410 |
| map_aux (Abs (a, T, t)) = Abs (a, f T, map_aux t) |
|
411 |
| map_aux (t $ u) = map_aux t $ map_aux u; |
|
412 |
in map_aux end; |
|
0 | 413 |
|
414 |
||
16943 | 415 |
(* fold types and terms *) |
416 |
||
417 |
fun fold_atyps f (Type (_, Ts)) = fold (fold_atyps f) Ts |
|
418 |
| fold_atyps f T = f T; |
|
419 |
||
420 |
fun fold_aterms f (t $ u) = fold_aterms f t #> fold_aterms f u |
|
421 |
| fold_aterms f (Abs (_, _, t)) = fold_aterms f t |
|
422 |
| fold_aterms f a = f a; |
|
423 |
||
424 |
fun fold_term_types f (t as Const (_, T)) = f t T |
|
425 |
| fold_term_types f (t as Free (_, T)) = f t T |
|
426 |
| fold_term_types f (t as Var (_, T)) = f t T |
|
427 |
| fold_term_types f (Bound _) = I |
|
428 |
| fold_term_types f (t as Abs (_, T, b)) = f t T #> fold_term_types f b |
|
429 |
| fold_term_types f (t $ u) = fold_term_types f t #> fold_term_types f u; |
|
430 |
||
431 |
fun fold_types f = fold_term_types (K f); |
|
432 |
||
24483 | 433 |
fun replace_types (Const (c, _)) (T :: Ts) = (Const (c, T), Ts) |
434 |
| replace_types (Free (x, _)) (T :: Ts) = (Free (x, T), Ts) |
|
435 |
| replace_types (Var (xi, _)) (T :: Ts) = (Var (xi, T), Ts) |
|
436 |
| replace_types (Bound i) Ts = (Bound i, Ts) |
|
437 |
| replace_types (Abs (x, _, b)) (T :: Ts) = |
|
438 |
let val (b', Ts') = replace_types b Ts |
|
439 |
in (Abs (x, T, b'), Ts') end |
|
440 |
| replace_types (t $ u) Ts = |
|
441 |
let |
|
442 |
val (t', Ts') = replace_types t Ts; |
|
443 |
val (u', Ts'') = replace_types u Ts'; |
|
444 |
in (t' $ u', Ts'') end; |
|
445 |
||
446 |
fun burrow_types f ts = |
|
447 |
let |
|
448 |
val Ts = rev (fold (fold_types cons) ts []); |
|
449 |
val Ts' = f Ts; |
|
450 |
val (ts', []) = fold_map replace_types ts Ts'; |
|
451 |
in ts' end; |
|
452 |
||
16943 | 453 |
(*collect variables*) |
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
454 |
val add_tvar_namesT = fold_atyps (fn TVar (xi, _) => insert (op =) xi | _ => I); |
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
455 |
val add_tvar_names = fold_types add_tvar_namesT; |
16943 | 456 |
val add_tvarsT = fold_atyps (fn TVar v => insert (op =) v | _ => I); |
457 |
val add_tvars = fold_types add_tvarsT; |
|
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
458 |
val add_var_names = fold_aterms (fn Var (xi, _) => insert (op =) xi | _ => I); |
16943 | 459 |
val add_vars = fold_aterms (fn Var v => insert (op =) v | _ => I); |
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
460 |
val add_tfree_namesT = fold_atyps (fn TFree (xi, _) => insert (op =) xi | _ => I); |
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
461 |
val add_tfree_names = fold_types add_tfree_namesT; |
16943 | 462 |
val add_tfreesT = fold_atyps (fn TFree v => insert (op =) v | _ => I); |
463 |
val add_tfrees = fold_types add_tfreesT; |
|
29257
660234d959f7
provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents:
29256
diff
changeset
|
464 |
val add_free_names = fold_aterms (fn Free (x, _) => insert (op =) x | _ => I); |
16943 | 465 |
val add_frees = fold_aterms (fn Free v => insert (op =) v | _ => I); |
29286 | 466 |
val add_const_names = fold_aterms (fn Const (c, _) => insert (op =) c | _ => I); |
467 |
val add_consts = fold_aterms (fn Const c => insert (op =) c | _ => I); |
|
16943 | 468 |
|
25050 | 469 |
(*extra type variables in a term, not covered by its type*) |
470 |
fun hidden_polymorphism t = |
|
21682 | 471 |
let |
25050 | 472 |
val T = fastype_of t; |
21682 | 473 |
val tvarsT = add_tvarsT T []; |
474 |
val extra_tvars = fold_types (fold_atyps |
|
475 |
(fn TVar v => if member (op =) tvarsT v then I else insert (op =) v | _ => I)) t []; |
|
476 |
in extra_tvars end; |
|
477 |
||
16943 | 478 |
|
29278 | 479 |
(* renaming variables *) |
480 |
||
481 |
val declare_typ_names = fold_atyps (fn TFree (a, _) => Name.declare a | _ => I); |
|
482 |
||
483 |
fun declare_term_names tm = |
|
484 |
fold_aterms |
|
485 |
(fn Const (a, _) => Name.declare (NameSpace.base a) |
|
486 |
| Free (a, _) => Name.declare a |
|
487 |
| _ => I) tm #> |
|
488 |
fold_types declare_typ_names tm; |
|
489 |
||
490 |
val declare_term_frees = fold_aterms (fn Free (x, _) => Name.declare x | _ => I); |
|
491 |
||
492 |
fun variant_frees t frees = |
|
493 |
fst (Name.variants (map fst frees) (declare_term_names t Name.context)) ~~ map snd frees; |
|
494 |
||
495 |
fun rename_wrt_term t frees = rev (variant_frees t frees); (*reversed result!*) |
|
496 |
||
497 |
||
25050 | 498 |
|
29269
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
499 |
(** Comparing terms **) |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
500 |
|
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
501 |
(* variables *) |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
502 |
|
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
503 |
fun eq_ix ((x, i): indexname, (y, j)) = i = j andalso x = y; |
16537 | 504 |
|
29269
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
505 |
fun eq_tvar ((xi, S: sort), (xi', S')) = eq_ix (xi, xi') andalso S = S'; |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
506 |
fun eq_var ((xi, T: typ), (xi', T')) = eq_ix (xi, xi') andalso T = T'; |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
507 |
|
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
508 |
|
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
509 |
(* alpha equivalence *) |
20511 | 510 |
|
511 |
fun tm1 aconv tm2 = |
|
512 |
pointer_eq (tm1, tm2) orelse |
|
513 |
(case (tm1, tm2) of |
|
514 |
(t1 $ u1, t2 $ u2) => t1 aconv t2 andalso u1 aconv u2 |
|
515 |
| (Abs (_, T1, t1), Abs (_, T2, t2)) => t1 aconv t2 andalso T1 = T2 |
|
516 |
| (a1, a2) => a1 = a2); |
|
517 |
||
518 |
||
29269
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
519 |
(*A fast unification filter: true unless the two terms cannot be unified. |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
520 |
Terms must be NORMAL. Treats all Vars as distinct. *) |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
521 |
fun could_unify (t, u) = |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
522 |
let |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
523 |
fun matchrands (f $ t) (g $ u) = could_unify (t, u) andalso matchrands f g |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
524 |
| matchrands _ _ = true; |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
525 |
in |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
526 |
case (head_of t, head_of u) of |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
527 |
(_, Var _) => true |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
528 |
| (Var _, _) => true |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
529 |
| (Const (a, _), Const (b, _)) => a = b andalso matchrands t u |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
530 |
| (Free (a, _), Free (b, _)) => a = b andalso matchrands t u |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
531 |
| (Bound i, Bound j) => i = j andalso matchrands t u |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
532 |
| (Abs _, _) => true (*because of possible eta equality*) |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
533 |
| (_, Abs _) => true |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
534 |
| _ => false |
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents:
29265
diff
changeset
|
535 |
end; |
16678 | 536 |
|
16570 | 537 |
|
16537 | 538 |
|
0 | 539 |
(** Connectives of higher order logic **) |
540 |
||
24850 | 541 |
fun aT S = TFree (Name.aT, S); |
19394 | 542 |
|
375 | 543 |
fun itselfT ty = Type ("itself", [ty]); |
24850 | 544 |
val a_itselfT = itselfT (TFree (Name.aT, [])); |
375 | 545 |
|
0 | 546 |
val propT : typ = Type("prop",[]); |
547 |
||
548 |
fun all T = Const("all", (T-->propT)-->propT); |
|
549 |
||
550 |
(* maps !!x1...xn. t to t *) |
|
13000 | 551 |
fun strip_all_body (Const("all",_)$Abs(_,_,t)) = strip_all_body t |
0 | 552 |
| strip_all_body t = t; |
553 |
||
554 |
(* maps !!x1...xn. t to [x1, ..., xn] *) |
|
555 |
fun strip_all_vars (Const("all",_)$Abs(a,T,t)) = |
|
13000 | 556 |
(a,T) :: strip_all_vars t |
0 | 557 |
| strip_all_vars t = [] : (string*typ) list; |
558 |
||
559 |
(*increments a term's non-local bound variables |
|
560 |
required when moving a term within abstractions |
|
561 |
inc is increment for bound variables |
|
562 |
lev is level at which a bound variable is considered 'loose'*) |
|
13000 | 563 |
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u |
0 | 564 |
| incr_bv (inc, lev, Abs(a,T,body)) = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
565 |
Abs(a, T, incr_bv(inc,lev+1,body)) |
13000 | 566 |
| incr_bv (inc, lev, f$t) = |
0 | 567 |
incr_bv(inc,lev,f) $ incr_bv(inc,lev,t) |
568 |
| incr_bv (inc, lev, u) = u; |
|
569 |
||
570 |
fun incr_boundvars 0 t = t |
|
571 |
| incr_boundvars inc t = incr_bv(inc,0,t); |
|
572 |
||
12981 | 573 |
(*Scan a pair of terms; while they are similar, |
574 |
accumulate corresponding bound vars in "al"*) |
|
575 |
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) = |
|
576 |
match_bvs(s, t, if x="" orelse y="" then al |
|
577 |
else (x,y)::al) |
|
578 |
| match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al)) |
|
579 |
| match_bvs(_,_,al) = al; |
|
580 |
||
581 |
(* strip abstractions created by parameters *) |
|
582 |
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al); |
|
583 |
||
22031 | 584 |
fun map_abs_vars f (t $ u) = map_abs_vars f t $ map_abs_vars f u |
585 |
| map_abs_vars f (Abs (a, T, t)) = Abs (f a, T, map_abs_vars f t) |
|
586 |
| map_abs_vars f t = t; |
|
587 |
||
12981 | 588 |
fun rename_abs pat obj t = |
589 |
let |
|
590 |
val ren = match_bvs (pat, obj, []); |
|
591 |
fun ren_abs (Abs (x, T, b)) = |
|
18942 | 592 |
Abs (the_default x (AList.lookup (op =) ren x), T, ren_abs b) |
12981 | 593 |
| ren_abs (f $ t) = ren_abs f $ ren_abs t |
594 |
| ren_abs t = t |
|
15531 | 595 |
in if null ren then NONE else SOME (ren_abs t) end; |
0 | 596 |
|
597 |
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond. |
|
598 |
(Bound 0) is loose at level 0 *) |
|
13000 | 599 |
fun add_loose_bnos (Bound i, lev, js) = |
20854 | 600 |
if i<lev then js else insert (op =) (i - lev) js |
0 | 601 |
| add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js) |
602 |
| add_loose_bnos (f$t, lev, js) = |
|
13000 | 603 |
add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) |
0 | 604 |
| add_loose_bnos (_, _, js) = js; |
605 |
||
606 |
fun loose_bnos t = add_loose_bnos (t, 0, []); |
|
607 |
||
608 |
(* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to |
|
609 |
level k or beyond. *) |
|
610 |
fun loose_bvar(Bound i,k) = i >= k |
|
611 |
| loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k) |
|
612 |
| loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1) |
|
613 |
| loose_bvar _ = false; |
|
614 |
||
2792 | 615 |
fun loose_bvar1(Bound i,k) = i = k |
616 |
| loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k) |
|
617 |
| loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1) |
|
618 |
| loose_bvar1 _ = false; |
|
0 | 619 |
|
620 |
(*Substitute arguments for loose bound variables. |
|
621 |
Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi). |
|
4626 | 622 |
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
|
623 |
and the appropriate call is subst_bounds([b,a], c) . |
0 | 624 |
Loose bound variables >=n are reduced by "n" to |
625 |
compensate for the disappearance of lambdas. |
|
626 |
*) |
|
13000 | 627 |
fun subst_bounds (args: term list, t) : term = |
19065 | 628 |
let |
629 |
exception SAME; |
|
630 |
val n = length args; |
|
631 |
fun subst (t as Bound i, lev) = |
|
632 |
(if i < lev then raise SAME (*var is locally bound*) |
|
633 |
else incr_boundvars lev (List.nth (args, i - lev)) |
|
634 |
handle Subscript => Bound (i - n)) (*loose: change it*) |
|
635 |
| subst (Abs (a, T, body), lev) = Abs (a, T, subst (body, lev + 1)) |
|
636 |
| subst (f $ t, lev) = |
|
637 |
(subst (f, lev) $ (subst (t, lev) handle SAME => t) handle SAME => f $ subst (t, lev)) |
|
638 |
| subst _ = raise SAME; |
|
639 |
in case args of [] => t | _ => (subst (t, 0) handle SAME => t) end; |
|
0 | 640 |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
641 |
(*Special case: one argument*) |
13000 | 642 |
fun subst_bound (arg, t) : term = |
19065 | 643 |
let |
644 |
exception SAME; |
|
645 |
fun subst (Bound i, lev) = |
|
646 |
if i < lev then raise SAME (*var is locally bound*) |
|
647 |
else if i = lev then incr_boundvars lev arg |
|
648 |
else Bound (i - 1) (*loose: change it*) |
|
649 |
| subst (Abs (a, T, body), lev) = Abs (a, T, subst (body, lev + 1)) |
|
650 |
| subst (f $ t, lev) = |
|
651 |
(subst (f, lev) $ (subst (t, lev) handle SAME => t) handle SAME => f $ subst (t, lev)) |
|
652 |
| subst _ = raise SAME; |
|
653 |
in subst (t, 0) handle SAME => t end; |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
654 |
|
0 | 655 |
(*beta-reduce if possible, else form application*) |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
656 |
fun betapply (Abs(_,_,t), u) = subst_bound (u,t) |
0 | 657 |
| betapply (f,u) = f$u; |
658 |
||
18183 | 659 |
val betapplys = Library.foldl betapply; |
660 |
||
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
661 |
|
20109 | 662 |
(*unfolding abstractions with substitution |
663 |
of bound variables and implicit eta-expansion*) |
|
664 |
fun strip_abs_eta k t = |
|
665 |
let |
|
29278 | 666 |
val used = fold_aterms declare_term_frees t Name.context; |
20109 | 667 |
fun strip_abs t (0, used) = (([], t), (0, used)) |
668 |
| strip_abs (Abs (v, T, t)) (k, used) = |
|
669 |
let |
|
20122 | 670 |
val ([v'], used') = Name.variants [v] used; |
21013 | 671 |
val t' = subst_bound (Free (v', T), t); |
20122 | 672 |
val ((vs, t''), (k', used'')) = strip_abs t' (k - 1, used'); |
673 |
in (((v', T) :: vs, t''), (k', used'')) end |
|
20109 | 674 |
| strip_abs t (k, used) = (([], t), (k, used)); |
675 |
fun expand_eta [] t _ = ([], t) |
|
676 |
| expand_eta (T::Ts) t used = |
|
677 |
let |
|
20122 | 678 |
val ([v], used') = Name.variants [""] used; |
679 |
val (vs, t') = expand_eta Ts (t $ Free (v, T)) used'; |
|
20109 | 680 |
in ((v, T) :: vs, t') end; |
681 |
val ((vs1, t'), (k', used')) = strip_abs t (k, used); |
|
682 |
val Ts = (fst o chop k' o fst o strip_type o fastype_of) t'; |
|
683 |
val (vs2, t'') = expand_eta Ts t' used'; |
|
684 |
in (vs1 @ vs2, t'') end; |
|
685 |
||
686 |
||
0 | 687 |
(*Substitute new for free occurrences of old in a term*) |
29256 | 688 |
fun subst_free [] = I |
0 | 689 |
| subst_free pairs = |
13000 | 690 |
let fun substf u = |
17314 | 691 |
case AList.lookup (op aconv) pairs u of |
15531 | 692 |
SOME u' => u' |
693 |
| NONE => (case u of Abs(a,T,t) => Abs(a, T, substf t) |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
694 |
| t$u' => substf t $ substf u' |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
695 |
| _ => u) |
0 | 696 |
in substf end; |
697 |
||
13000 | 698 |
(*Abstraction of the term "body" over its occurrences of v, |
0 | 699 |
which must contain no loose bound variables. |
700 |
The resulting term is ready to become the body of an Abs.*) |
|
16882 | 701 |
fun abstract_over (v, body) = |
702 |
let |
|
16990 | 703 |
exception SAME; |
704 |
fun abs lev tm = |
|
705 |
if v aconv tm then Bound lev |
|
16882 | 706 |
else |
16990 | 707 |
(case tm of |
708 |
Abs (a, T, t) => Abs (a, T, abs (lev + 1) t) |
|
709 |
| t $ u => (abs lev t $ (abs lev u handle SAME => u) handle SAME => t $ abs lev u) |
|
710 |
| _ => raise SAME); |
|
711 |
in abs 0 body handle SAME => body end; |
|
0 | 712 |
|
21975
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
713 |
fun lambda v t = |
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
714 |
let val x = |
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
715 |
(case v of |
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
716 |
Const (x, _) => NameSpace.base x |
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
717 |
| Free (x, _) => x |
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
718 |
| Var ((x, _), _) => x |
24850 | 719 |
| _ => Name.uu) |
21975
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
720 |
in Abs (x, fastype_of v, abstract_over (v, t)) end; |
0 | 721 |
|
722 |
(*Form an abstraction over a free variable.*) |
|
21975
1152dc45d591
Term.lambda: abstract over arbitrary closed terms;
wenzelm
parents:
21797
diff
changeset
|
723 |
fun absfree (a,T,body) = Abs (a, T, abstract_over (Free (a, T), body)); |
24850 | 724 |
fun absdummy (T, body) = Abs (Name.internal Name.uu, T, body); |
0 | 725 |
|
726 |
(*Abstraction over a list of free variables*) |
|
727 |
fun list_abs_free ([ ] , t) = t |
|
13000 | 728 |
| list_abs_free ((a,T)::vars, t) = |
0 | 729 |
absfree(a, T, list_abs_free(vars,t)); |
730 |
||
731 |
(*Quantification over a list of free variables*) |
|
732 |
fun list_all_free ([], t: term) = t |
|
13000 | 733 |
| list_all_free ((a,T)::vars, t) = |
0 | 734 |
(all T) $ (absfree(a, T, list_all_free(vars,t))); |
735 |
||
736 |
(*Quantification over a list of variables (already bound in body) *) |
|
737 |
fun list_all ([], t) = t |
|
13000 | 738 |
| list_all ((a,T)::vars, t) = |
0 | 739 |
(all T) $ (Abs(a, T, list_all(vars,t))); |
740 |
||
16678 | 741 |
(*Replace the ATOMIC term ti by ui; inst = [(t1,u1), ..., (tn,un)]. |
0 | 742 |
A simultaneous substitution: [ (a,b), (b,a) ] swaps a and b. *) |
16678 | 743 |
fun subst_atomic [] tm = tm |
744 |
| subst_atomic inst tm = |
|
745 |
let |
|
746 |
fun subst (Abs (a, T, body)) = Abs (a, T, subst body) |
|
747 |
| subst (t $ u) = subst t $ subst u |
|
18942 | 748 |
| subst t = the_default t (AList.lookup (op aconv) inst t); |
16678 | 749 |
in subst tm end; |
0 | 750 |
|
16678 | 751 |
(*Replace the ATOMIC type Ti by Ui; inst = [(T1,U1), ..., (Tn,Un)].*) |
752 |
fun typ_subst_atomic [] ty = ty |
|
753 |
| typ_subst_atomic inst ty = |
|
754 |
let |
|
755 |
fun subst (Type (a, Ts)) = Type (a, map subst Ts) |
|
18942 | 756 |
| subst T = the_default T (AList.lookup (op = : typ * typ -> bool) inst T); |
16678 | 757 |
in subst ty end; |
15797 | 758 |
|
16678 | 759 |
fun subst_atomic_types [] tm = tm |
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20531
diff
changeset
|
760 |
| subst_atomic_types inst tm = map_types (typ_subst_atomic inst) tm; |
16678 | 761 |
|
762 |
fun typ_subst_TVars [] ty = ty |
|
763 |
| typ_subst_TVars inst ty = |
|
764 |
let |
|
765 |
fun subst (Type (a, Ts)) = Type (a, map subst Ts) |
|
18942 | 766 |
| subst (T as TVar (xi, _)) = the_default T (AList.lookup (op =) inst xi) |
16678 | 767 |
| subst T = T; |
768 |
in subst ty end; |
|
0 | 769 |
|
16678 | 770 |
fun subst_TVars [] tm = tm |
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20531
diff
changeset
|
771 |
| subst_TVars inst tm = map_types (typ_subst_TVars inst) tm; |
0 | 772 |
|
16678 | 773 |
fun subst_Vars [] tm = tm |
774 |
| subst_Vars inst tm = |
|
775 |
let |
|
18942 | 776 |
fun subst (t as Var (xi, _)) = the_default t (AList.lookup (op =) inst xi) |
16678 | 777 |
| subst (Abs (a, T, t)) = Abs (a, T, subst t) |
778 |
| subst (t $ u) = subst t $ subst u |
|
779 |
| subst t = t; |
|
780 |
in subst tm end; |
|
0 | 781 |
|
16678 | 782 |
fun subst_vars ([], []) tm = tm |
783 |
| subst_vars ([], inst) tm = subst_Vars inst tm |
|
784 |
| subst_vars (instT, inst) tm = |
|
785 |
let |
|
786 |
fun subst (Const (a, T)) = Const (a, typ_subst_TVars instT T) |
|
787 |
| subst (Free (a, T)) = Free (a, typ_subst_TVars instT T) |
|
788 |
| subst (t as Var (xi, T)) = |
|
17271 | 789 |
(case AList.lookup (op =) inst xi of |
16678 | 790 |
NONE => Var (xi, typ_subst_TVars instT T) |
791 |
| SOME t => t) |
|
792 |
| subst (t as Bound _) = t |
|
793 |
| subst (Abs (a, T, t)) = Abs (a, typ_subst_TVars instT T, subst t) |
|
794 |
| subst (t $ u) = subst t $ subst u; |
|
795 |
in subst tm end; |
|
0 | 796 |
|
25050 | 797 |
fun close_schematic_term t = |
798 |
let |
|
799 |
val extra_types = map (fn v => Const ("TYPE", itselfT (TVar v))) (hidden_polymorphism t); |
|
800 |
val extra_terms = map Var (rev (add_vars t [])); |
|
801 |
in fold_rev lambda (extra_types @ extra_terms) t end; |
|
802 |
||
803 |
||
0 | 804 |
|
15573 | 805 |
(** Identifying first-order terms **) |
806 |
||
20199 | 807 |
(*Differs from proofterm/is_fun in its treatment of TVar*) |
29256 | 808 |
fun is_funtype (Type ("fun", [_, _])) = true |
20199 | 809 |
| is_funtype _ = false; |
810 |
||
15573 | 811 |
(*Argument Ts is a reverse list of binder types, needed if term t contains Bound vars*) |
29256 | 812 |
fun has_not_funtype Ts t = not (is_funtype (fastype_of1 (Ts, t))); |
15573 | 813 |
|
16537 | 814 |
(*First order means in all terms of the form f(t1,...,tn) no argument has a |
16589 | 815 |
function type. The supplied quantifiers are excluded: their argument always |
816 |
has a function type through a recursive call into its body.*) |
|
16667 | 817 |
fun is_first_order quants = |
16589 | 818 |
let fun first_order1 Ts (Abs (_,T,body)) = first_order1 (T::Ts) body |
16667 | 819 |
| first_order1 Ts (Const(q,_) $ Abs(a,T,body)) = |
20664 | 820 |
member (op =) quants q andalso (*it is a known quantifier*) |
16589 | 821 |
not (is_funtype T) andalso first_order1 (T::Ts) body |
16667 | 822 |
| first_order1 Ts t = |
823 |
case strip_comb t of |
|
824 |
(Var _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
825 |
| (Free _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
826 |
| (Const _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
827 |
| (Bound _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
828 |
| (Abs _, ts) => false (*not in beta-normal form*) |
|
829 |
| _ => error "first_order: unexpected case" |
|
16589 | 830 |
in first_order1 [] end; |
15573 | 831 |
|
16710 | 832 |
|
16990 | 833 |
(* maximum index of typs and terms *) |
0 | 834 |
|
16710 | 835 |
fun maxidx_typ (TVar ((_, j), _)) i = Int.max (i, j) |
836 |
| maxidx_typ (Type (_, Ts)) i = maxidx_typs Ts i |
|
837 |
| maxidx_typ (TFree _) i = i |
|
838 |
and maxidx_typs [] i = i |
|
839 |
| maxidx_typs (T :: Ts) i = maxidx_typs Ts (maxidx_typ T i); |
|
0 | 840 |
|
16710 | 841 |
fun maxidx_term (Var ((_, j), T)) i = maxidx_typ T (Int.max (i, j)) |
842 |
| maxidx_term (Const (_, T)) i = maxidx_typ T i |
|
843 |
| maxidx_term (Free (_, T)) i = maxidx_typ T i |
|
844 |
| maxidx_term (Bound _) i = i |
|
845 |
| maxidx_term (Abs (_, T, t)) i = maxidx_term t (maxidx_typ T i) |
|
846 |
| maxidx_term (t $ u) i = maxidx_term u (maxidx_term t i); |
|
0 | 847 |
|
16710 | 848 |
fun maxidx_of_typ T = maxidx_typ T ~1; |
849 |
fun maxidx_of_typs Ts = maxidx_typs Ts ~1; |
|
850 |
fun maxidx_of_term t = maxidx_term t ~1; |
|
13665 | 851 |
|
0 | 852 |
|
853 |
||
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29269
diff
changeset
|
854 |
(** misc syntax operations **) |
0 | 855 |
|
19909 | 856 |
(* substructure *) |
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
857 |
|
19909 | 858 |
fun exists_subtype P = |
859 |
let |
|
860 |
fun ex ty = P ty orelse |
|
861 |
(case ty of Type (_, Ts) => exists ex Ts | _ => false); |
|
862 |
in ex end; |
|
13646 | 863 |
|
20531 | 864 |
fun exists_type P = |
865 |
let |
|
866 |
fun ex (Const (_, T)) = P T |
|
867 |
| ex (Free (_, T)) = P T |
|
868 |
| ex (Var (_, T)) = P T |
|
869 |
| ex (Bound _) = false |
|
870 |
| ex (Abs (_, T, t)) = P T orelse ex t |
|
871 |
| ex (t $ u) = ex t orelse ex u; |
|
872 |
in ex end; |
|
873 |
||
16943 | 874 |
fun exists_subterm P = |
875 |
let |
|
876 |
fun ex tm = P tm orelse |
|
877 |
(case tm of |
|
878 |
t $ u => ex t orelse ex u |
|
879 |
| Abs (_, _, t) => ex t |
|
880 |
| _ => false); |
|
881 |
in ex end; |
|
16108
cf468b93a02e
Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents:
16035
diff
changeset
|
882 |
|
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29269
diff
changeset
|
883 |
fun exists_Const P = exists_subterm (fn Const c => P c | _ => false); |
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29269
diff
changeset
|
884 |
|
24671 | 885 |
fun has_abs (Abs _) = true |
886 |
| has_abs (t $ u) = has_abs t orelse has_abs u |
|
887 |
| has_abs _ = false; |
|
888 |
||
889 |
||
20199 | 890 |
(* dest abstraction *) |
0 | 891 |
|
16678 | 892 |
fun dest_abs (x, T, body) = |
893 |
let |
|
894 |
fun name_clash (Free (y, _)) = (x = y) |
|
895 |
| name_clash (t $ u) = name_clash t orelse name_clash u |
|
896 |
| name_clash (Abs (_, _, t)) = name_clash t |
|
897 |
| name_clash _ = false; |
|
898 |
in |
|
27335 | 899 |
if name_clash body then dest_abs (Name.variant [x] x, T, body) (*potentially slow*) |
16678 | 900 |
else (x, subst_bound (Free (x, T), body)) |
901 |
end; |
|
902 |
||
20160 | 903 |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
904 |
(* dummy patterns *) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
905 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
906 |
val dummy_patternN = "dummy_pattern"; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
907 |
|
18253 | 908 |
fun dummy_pattern T = Const (dummy_patternN, T); |
909 |
||
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
910 |
fun is_dummy_pattern (Const ("dummy_pattern", _)) = true |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
911 |
| is_dummy_pattern _ = false; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
912 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
913 |
fun no_dummy_patterns tm = |
16787 | 914 |
if not (fold_aterms (fn t => fn b => b orelse is_dummy_pattern t) tm false) then tm |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
915 |
else raise TERM ("Illegal occurrence of '_' dummy pattern", [tm]); |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
916 |
|
24733 | 917 |
fun free_dummy_patterns (Const ("dummy_pattern", T)) used = |
24850 | 918 |
let val [x] = Name.invents used Name.uu 1 |
24733 | 919 |
in (Free (Name.internal x, T), Name.declare x used) end |
920 |
| free_dummy_patterns (Abs (x, T, b)) used = |
|
921 |
let val (b', used') = free_dummy_patterns b used |
|
922 |
in (Abs (x, T, b'), used') end |
|
923 |
| free_dummy_patterns (t $ u) used = |
|
924 |
let |
|
925 |
val (t', used') = free_dummy_patterns t used; |
|
926 |
val (u', used'') = free_dummy_patterns u used'; |
|
927 |
in (t' $ u', used'') end |
|
928 |
| free_dummy_patterns a used = (a, used); |
|
929 |
||
24762 | 930 |
fun replace_dummy Ts (Const ("dummy_pattern", T)) i = |
931 |
(list_comb (Var (("_dummy_", i), Ts ---> T), map Bound (0 upto length Ts - 1)), i + 1) |
|
932 |
| replace_dummy Ts (Abs (x, T, t)) i = |
|
933 |
let val (t', i') = replace_dummy (T :: Ts) t i |
|
934 |
in (Abs (x, T, t'), i') end |
|
935 |
| replace_dummy Ts (t $ u) i = |
|
936 |
let |
|
937 |
val (t', i') = replace_dummy Ts t i; |
|
938 |
val (u', i'') = replace_dummy Ts u i'; |
|
939 |
in (t' $ u', i'') end |
|
940 |
| replace_dummy _ a i = (a, i); |
|
11903 | 941 |
|
942 |
val replace_dummy_patterns = replace_dummy []; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
943 |
|
10552 | 944 |
fun is_replaced_dummy_pattern ("_dummy_", _) = true |
945 |
| is_replaced_dummy_pattern _ = false; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
946 |
|
16035 | 947 |
fun show_dummy_patterns (Var (("_dummy_", _), T)) = Const ("dummy_pattern", T) |
948 |
| show_dummy_patterns (t $ u) = show_dummy_patterns t $ show_dummy_patterns u |
|
949 |
| show_dummy_patterns (Abs (x, T, t)) = Abs (x, T, show_dummy_patterns t) |
|
950 |
| show_dummy_patterns a = a; |
|
951 |
||
13484 | 952 |
|
20100 | 953 |
(* display variables *) |
954 |
||
15986 | 955 |
val show_question_marks = ref true; |
15472 | 956 |
|
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
957 |
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
|
958 |
let |
15986 | 959 |
val question_mark = if ! show_question_marks then "?" else ""; |
960 |
val idx = string_of_int i; |
|
961 |
val dot = |
|
962 |
(case rev (Symbol.explode x) of |
|
963 |
_ :: "\\<^isub>" :: _ => false |
|
964 |
| _ :: "\\<^isup>" :: _ => false |
|
965 |
| c :: _ => Symbol.is_digit c |
|
966 |
| _ => true); |
|
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
967 |
in |
15986 | 968 |
if dot then question_mark ^ x ^ "." ^ idx |
969 |
else if i <> 0 then question_mark ^ x ^ idx |
|
970 |
else question_mark ^ x |
|
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
971 |
end; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
972 |
|
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
973 |
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
|
974 |
| 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
|
975 |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
976 |
end; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
977 |
|
4444 | 978 |
structure BasicTerm: BASIC_TERM = Term; |
979 |
open BasicTerm; |