author | wenzelm |
Thu, 09 Nov 2006 21:44:35 +0100 | |
changeset 21277 | ac2d7e03a3b1 |
parent 21013 | b9321724c2cc |
child 21353 | cfee13454195 |
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 |
|
16537 | 24 |
datatype term = |
25 |
Const of string * typ | |
|
26 |
Free of string * typ | |
|
27 |
Var of indexname * typ | |
|
28 |
Bound of int | |
|
29 |
Abs of string * typ * term | |
|
17756 | 30 |
$ of term * term |
16537 | 31 |
exception TYPE of string * typ list * term list |
32 |
exception TERM of string * term list |
|
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 |
|
18927 | 76 |
val it_term_types: (typ * 'a -> 'a) -> term * 'a -> 'a |
16943 | 77 |
val add_term_names: term * string list -> string list |
16710 | 78 |
val aconv: term * term -> bool |
16537 | 79 |
structure Vartab: TABLE |
80 |
structure Typtab: TABLE |
|
81 |
structure Termtab: TABLE |
|
4444 | 82 |
val propT: typ |
83 |
val implies: term |
|
84 |
val all: typ -> term |
|
85 |
val equals: typ -> term |
|
86 |
val strip_all_body: term -> term |
|
87 |
val strip_all_vars: term -> (string * typ) list |
|
88 |
val incr_bv: int * int * term -> term |
|
89 |
val incr_boundvars: int -> term -> term |
|
90 |
val add_loose_bnos: term * int * int list -> int list |
|
91 |
val loose_bnos: term -> int list |
|
92 |
val loose_bvar: term * int -> bool |
|
93 |
val loose_bvar1: term * int -> bool |
|
94 |
val subst_bounds: term list * term -> term |
|
95 |
val subst_bound: term * term -> term |
|
96 |
val betapply: term * term -> term |
|
18183 | 97 |
val betapplys: term * term list -> term |
4444 | 98 |
val eq_ix: indexname * indexname -> bool |
99 |
val could_unify: term * term -> bool |
|
100 |
val subst_free: (term * term) list -> term -> term |
|
101 |
val abstract_over: term * term -> term |
|
11922 | 102 |
val lambda: term -> term -> term |
4444 | 103 |
val absfree: string * typ * term -> term |
17786 | 104 |
val absdummy: typ * term -> term |
4444 | 105 |
val list_abs_free: (string * typ) list * term -> term |
106 |
val list_all_free: (string * typ) list * term -> term |
|
107 |
val list_all: (string * typ) list * term -> term |
|
16710 | 108 |
val subst_atomic: (term * term) list -> term -> term |
109 |
val typ_subst_atomic: (typ * typ) list -> typ -> typ |
|
110 |
val subst_atomic_types: (typ * typ) list -> term -> term |
|
111 |
val typ_subst_TVars: (indexname * typ) list -> typ -> typ |
|
112 |
val subst_TVars: (indexname * typ) list -> term -> term |
|
113 |
val subst_Vars: (indexname * term) list -> term -> term |
|
114 |
val subst_vars: (indexname * typ) list * (indexname * term) list -> term -> term |
|
115 |
val is_first_order: string list -> term -> bool |
|
4444 | 116 |
val maxidx_of_typ: typ -> int |
117 |
val maxidx_of_typs: typ list -> int |
|
118 |
val maxidx_of_term: term -> int |
|
119 |
val add_term_consts: term * string list -> string list |
|
13646 | 120 |
val term_consts: term -> string list |
19909 | 121 |
val exists_subtype: (typ -> bool) -> typ -> bool |
20531 | 122 |
val exists_type: (typ -> bool) -> term -> bool |
16943 | 123 |
val exists_subterm: (term -> bool) -> term -> bool |
16710 | 124 |
val exists_Const: (string * typ -> bool) -> term -> bool |
125 |
val add_term_free_names: term * string list -> string list |
|
126 |
val add_typ_tvars: typ * (indexname * sort) list -> (indexname * sort) list |
|
127 |
val add_typ_tfree_names: typ * string list -> string list |
|
128 |
val add_typ_tfrees: typ * (string * sort) list -> (string * sort) list |
|
129 |
val add_typ_varnames: typ * string list -> string list |
|
130 |
val add_term_tvars: term * (indexname * sort) list -> (indexname * sort) list |
|
131 |
val add_term_tfrees: term * (string * sort) list -> (string * sort) list |
|
132 |
val add_term_tfree_names: term * string list -> string list |
|
133 |
val typ_tfrees: typ -> (string * sort) list |
|
134 |
val typ_tvars: typ -> (indexname * sort) list |
|
135 |
val term_tfrees: term -> (string * sort) list |
|
136 |
val term_tvars: term -> (indexname * sort) list |
|
137 |
val add_typ_ixns: indexname list * typ -> indexname list |
|
138 |
val add_term_tvar_ixns: term * indexname list -> indexname list |
|
139 |
val add_term_vars: term * term list -> term list |
|
140 |
val term_vars: term -> term list |
|
4444 | 141 |
val add_term_frees: term * term list -> term list |
142 |
val term_frees: term -> term list |
|
20160 | 143 |
val rename_wrt_term: term -> (string * 'a) list -> (string * 'a) list |
15986 | 144 |
val show_question_marks: bool ref |
4444 | 145 |
end; |
0 | 146 |
|
4444 | 147 |
signature TERM = |
148 |
sig |
|
149 |
include BASIC_TERM |
|
19394 | 150 |
val aT: sort -> typ |
151 |
val itselfT: typ -> typ |
|
152 |
val a_itselfT: typ |
|
16710 | 153 |
val argument_type_of: term -> typ |
16943 | 154 |
val add_tvarsT: typ -> (indexname * sort) list -> (indexname * sort) list |
155 |
val add_tvars: term -> (indexname * sort) list -> (indexname * sort) list |
|
156 |
val add_vars: term -> (indexname * typ) list -> (indexname * typ) list |
|
157 |
val add_tfreesT: typ -> (string * sort) list -> (string * sort) list |
|
158 |
val add_tfrees: term -> (string * sort) list -> (string * sort) list |
|
159 |
val add_frees: term -> (string * typ) list -> (string * typ) list |
|
20199 | 160 |
val add_varnames: term -> indexname list -> indexname list |
20109 | 161 |
val strip_abs_eta: int -> term -> (string * typ) list * term |
16678 | 162 |
val fast_indexname_ord: indexname * indexname -> order |
16537 | 163 |
val indexname_ord: indexname * indexname -> order |
164 |
val sort_ord: sort * sort -> order |
|
165 |
val typ_ord: typ * typ -> order |
|
16678 | 166 |
val fast_term_ord: term * term -> order |
16537 | 167 |
val term_ord: term * term -> order |
168 |
val hd_ord: term * term -> order |
|
169 |
val termless: term * term -> bool |
|
20129
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
170 |
val term_lpo: (term -> int) -> term * term -> order |
12981 | 171 |
val match_bvars: (term * term) * (string * string) list -> (string * string) list |
172 |
val rename_abs: term -> term -> term -> term option |
|
16943 | 173 |
val eq_tvar: (indexname * sort) * (indexname * sort) -> bool |
16882 | 174 |
val eq_var: (indexname * typ) * (indexname * typ) -> bool |
16943 | 175 |
val tvar_ord: (indexname * sort) * (indexname * sort) -> order |
176 |
val var_ord: (indexname * typ) * (indexname * typ) -> order |
|
16710 | 177 |
val maxidx_typ: typ -> int -> int |
178 |
val maxidx_typs: typ list -> int -> int |
|
179 |
val maxidx_term: term -> int -> int |
|
20239 | 180 |
val dest_abs: string * typ * term -> string * term |
20148 | 181 |
val declare_term_names: term -> Name.context -> Name.context |
20160 | 182 |
val variant_frees: term -> (string * 'a) list -> (string * 'a) list |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
183 |
val dummy_patternN: string |
18253 | 184 |
val dummy_pattern: typ -> term |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
185 |
val no_dummy_patterns: term -> term |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
186 |
val replace_dummy_patterns: int * term -> int * term |
10552 | 187 |
val is_replaced_dummy_pattern: indexname -> bool |
16035 | 188 |
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
|
189 |
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
|
190 |
val string_of_vname': indexname -> string |
4444 | 191 |
end; |
192 |
||
193 |
structure Term: TERM = |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
194 |
struct |
0 | 195 |
|
196 |
(*Indexnames can be quickly renamed by adding an offset to the integer part, |
|
197 |
for resolution.*) |
|
16537 | 198 |
type indexname = string * int; |
0 | 199 |
|
4626 | 200 |
(* Types are classified by sorts. *) |
0 | 201 |
type class = string; |
202 |
type sort = class list; |
|
14829
cfa5fe01a7b7
moved read_int etc. to library.ML; added type 'arity';
wenzelm
parents:
14786
diff
changeset
|
203 |
type arity = string * sort list * sort; |
0 | 204 |
|
205 |
(* The sorts attached to TFrees and TVars specify the sort of that variable *) |
|
206 |
datatype typ = Type of string * typ list |
|
207 |
| TFree of string * sort |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
208 |
| TVar of indexname * sort; |
0 | 209 |
|
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
210 |
(*Terms. Bound variables are indicated by depth number. |
0 | 211 |
Free variables, (scheme) variables and constants have names. |
4626 | 212 |
An term is "closed" if every bound variable of level "lev" |
13000 | 213 |
is enclosed by at least "lev" abstractions. |
0 | 214 |
|
215 |
It is possible to create meaningless terms containing loose bound vars |
|
216 |
or type mismatches. But such terms are not allowed in rules. *) |
|
217 |
||
13000 | 218 |
datatype term = |
0 | 219 |
Const of string * typ |
13000 | 220 |
| Free of string * typ |
0 | 221 |
| Var of indexname * typ |
222 |
| Bound of int |
|
223 |
| Abs of string*typ*term |
|
3965 | 224 |
| op $ of term*term; |
0 | 225 |
|
16537 | 226 |
(*Errors involving type mismatches*) |
0 | 227 |
exception TYPE of string * typ list * term list; |
228 |
||
16537 | 229 |
(*Errors errors involving terms*) |
0 | 230 |
exception TERM of string * term list; |
231 |
||
232 |
(*Note variable naming conventions! |
|
233 |
a,b,c: string |
|
234 |
f,g,h: functions (including terms of function type) |
|
235 |
i,j,m,n: int |
|
236 |
t,u: term |
|
237 |
v,w: indexnames |
|
238 |
x,y: any |
|
239 |
A,B,C: term (denoting formulae) |
|
240 |
T,U: typ |
|
241 |
*) |
|
242 |
||
243 |
||
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
244 |
(** Types **) |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
245 |
|
16537 | 246 |
(*dummy type for parsing and printing etc.*) |
247 |
val dummyT = Type ("dummy", []); |
|
248 |
||
249 |
fun no_dummyT typ = |
|
250 |
let |
|
251 |
fun check (T as Type ("dummy", _)) = |
|
252 |
raise TYPE ("Illegal occurrence of '_' dummy type", [T], []) |
|
253 |
| check (Type (_, Ts)) = List.app check Ts |
|
254 |
| check _ = (); |
|
255 |
in check typ; typ end; |
|
256 |
||
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
257 |
fun S --> T = Type("fun",[S,T]); |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
258 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
259 |
(*handy for multiple args: [T1,...,Tn]--->T gives T1-->(T2--> ... -->T)*) |
15570 | 260 |
val op ---> = Library.foldr (op -->); |
6033
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
261 |
|
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
262 |
fun dest_Type (Type x) = x |
c8c69a4a7762
moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents:
5986
diff
changeset
|
263 |
| dest_Type T = raise TYPE ("dest_Type", [T], []); |
15914 | 264 |
fun dest_TVar (TVar x) = x |
265 |
| dest_TVar T = raise TYPE ("dest_TVar", [T], []); |
|
266 |
fun dest_TFree (TFree x) = x |
|
267 |
| 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
|
268 |
|
16537 | 269 |
|
0 | 270 |
(** Discriminators **) |
271 |
||
7318 | 272 |
fun is_Bound (Bound _) = true |
273 |
| is_Bound _ = false; |
|
274 |
||
0 | 275 |
fun is_Const (Const _) = true |
276 |
| is_Const _ = false; |
|
277 |
||
278 |
fun is_Free (Free _) = true |
|
279 |
| is_Free _ = false; |
|
280 |
||
281 |
fun is_Var (Var _) = true |
|
282 |
| is_Var _ = false; |
|
283 |
||
284 |
fun is_TVar (TVar _) = true |
|
285 |
| is_TVar _ = false; |
|
286 |
||
16537 | 287 |
|
0 | 288 |
(** Destructors **) |
289 |
||
290 |
fun dest_Const (Const x) = x |
|
291 |
| dest_Const t = raise TERM("dest_Const", [t]); |
|
292 |
||
293 |
fun dest_Free (Free x) = x |
|
294 |
| dest_Free t = raise TERM("dest_Free", [t]); |
|
295 |
||
296 |
fun dest_Var (Var x) = x |
|
297 |
| dest_Var t = raise TERM("dest_Var", [t]); |
|
298 |
||
299 |
||
4464 | 300 |
fun domain_type (Type("fun", [T,_])) = T |
301 |
and range_type (Type("fun", [_,T])) = T; |
|
4064 | 302 |
|
0 | 303 |
(* maps [T1,...,Tn]--->T to the list [T1,T2,...,Tn]*) |
304 |
fun binder_types (Type("fun",[S,T])) = S :: binder_types T |
|
305 |
| binder_types _ = []; |
|
306 |
||
307 |
(* maps [T1,...,Tn]--->T to T*) |
|
308 |
fun body_type (Type("fun",[S,T])) = body_type T |
|
309 |
| body_type T = T; |
|
310 |
||
311 |
(* maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T) *) |
|
312 |
fun strip_type T : typ list * typ = |
|
313 |
(binder_types T, body_type T); |
|
314 |
||
315 |
||
316 |
(*Compute the type of the term, checking that combinations are well-typed |
|
317 |
Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*) |
|
318 |
fun type_of1 (Ts, Const (_,T)) = T |
|
319 |
| type_of1 (Ts, Free (_,T)) = T |
|
15570 | 320 |
| type_of1 (Ts, Bound i) = (List.nth (Ts,i) |
321 |
handle Subscript => raise TYPE("type_of: bound variable", [], [Bound i])) |
|
0 | 322 |
| type_of1 (Ts, Var (_,T)) = T |
323 |
| type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body) |
|
13000 | 324 |
| type_of1 (Ts, f$u) = |
0 | 325 |
let val U = type_of1(Ts,u) |
326 |
and T = type_of1(Ts,f) |
|
327 |
in case T of |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
328 |
Type("fun",[T1,T2]) => |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
329 |
if T1=U then T2 else raise TYPE |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
330 |
("type_of: type mismatch in application", [T1,U], [f$u]) |
13000 | 331 |
| _ => raise TYPE |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
332 |
("type_of: function type is expected in application", |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
333 |
[T,U], [f$u]) |
0 | 334 |
end; |
335 |
||
336 |
fun type_of t : typ = type_of1 ([],t); |
|
337 |
||
338 |
(*Determines the type of a term, with minimal checking*) |
|
13000 | 339 |
fun fastype_of1 (Ts, f$u) = |
61 | 340 |
(case fastype_of1 (Ts,f) of |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
341 |
Type("fun",[_,T]) => T |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
342 |
| _ => raise TERM("fastype_of: expected function type", [f$u])) |
61 | 343 |
| fastype_of1 (_, Const (_,T)) = T |
344 |
| fastype_of1 (_, Free (_,T)) = T |
|
15570 | 345 |
| fastype_of1 (Ts, Bound i) = (List.nth(Ts,i) |
346 |
handle Subscript => raise TERM("fastype_of: Bound", [Bound i])) |
|
13000 | 347 |
| fastype_of1 (_, Var (_,T)) = T |
61 | 348 |
| fastype_of1 (Ts, Abs (_,T,u)) = T --> fastype_of1 (T::Ts, u); |
349 |
||
350 |
fun fastype_of t : typ = fastype_of1 ([],t); |
|
0 | 351 |
|
16678 | 352 |
(*Determine the argument type of a function*) |
353 |
fun argument_type_of tm = |
|
354 |
let |
|
355 |
fun argT i (Type ("fun", [T, U])) = if i = 0 then T else argT (i - 1) U |
|
356 |
| argT _ T = raise TYPE ("argument_type_of", [T], []); |
|
357 |
||
358 |
fun arg 0 _ (Abs (_, T, _)) = T |
|
359 |
| arg i Ts (Abs (_, T, t)) = arg (i - 1) (T :: Ts) t |
|
360 |
| arg i Ts (t $ _) = arg (i + 1) Ts t |
|
361 |
| arg i Ts a = argT i (fastype_of1 (Ts, a)); |
|
362 |
in arg 0 [] tm end; |
|
363 |
||
0 | 364 |
|
19473 | 365 |
val list_abs = uncurry (fold_rev (fn (x, T) => fn t => Abs (x, T, t))); |
10806 | 366 |
|
18927 | 367 |
fun strip_abs (Abs (a, T, t)) = |
368 |
let val (a', t') = strip_abs t |
|
369 |
in ((a, T) :: a', t') end |
|
370 |
| strip_abs t = ([], t); |
|
371 |
||
0 | 372 |
(* maps (x1,...,xn)t to t *) |
13000 | 373 |
fun strip_abs_body (Abs(_,_,t)) = strip_abs_body t |
0 | 374 |
| strip_abs_body u = u; |
375 |
||
376 |
(* maps (x1,...,xn)t to [x1, ..., xn] *) |
|
13000 | 377 |
fun strip_abs_vars (Abs(a,T,t)) = (a,T) :: strip_abs_vars t |
0 | 378 |
| strip_abs_vars u = [] : (string*typ) list; |
379 |
||
380 |
||
381 |
fun strip_qnt_body qnt = |
|
382 |
let fun strip(tm as Const(c,_)$Abs(_,_,t)) = if c=qnt then strip t else tm |
|
383 |
| strip t = t |
|
384 |
in strip end; |
|
385 |
||
386 |
fun strip_qnt_vars qnt = |
|
387 |
let fun strip(Const(c,_)$Abs(a,T,t)) = if c=qnt then (a,T)::strip t else [] |
|
388 |
| strip t = [] : (string*typ) list |
|
389 |
in strip end; |
|
390 |
||
391 |
||
392 |
(* maps (f, [t1,...,tn]) to f(t1,...,tn) *) |
|
15570 | 393 |
val list_comb : term * term list -> term = Library.foldl (op $); |
0 | 394 |
|
395 |
||
396 |
(* maps f(t1,...,tn) to (f, [t1,...,tn]) ; naturally tail-recursive*) |
|
13000 | 397 |
fun strip_comb u : term * term list = |
0 | 398 |
let fun stripc (f$t, ts) = stripc (f, t::ts) |
13000 | 399 |
| stripc x = x |
0 | 400 |
in stripc(u,[]) end; |
401 |
||
402 |
||
403 |
(* maps f(t1,...,tn) to f , which is never a combination *) |
|
404 |
fun head_of (f$t) = head_of f |
|
405 |
| head_of u = u; |
|
406 |
||
407 |
||
16599 | 408 |
(*number of atoms and abstractions in a term*) |
409 |
fun size_of_term tm = |
|
410 |
let |
|
16678 | 411 |
fun add_size (t $ u, n) = add_size (t, add_size (u, n)) |
412 |
| add_size (Abs (_ ,_, t), n) = add_size (t, n + 1) |
|
413 |
| add_size (_, n) = n + 1; |
|
414 |
in add_size (tm, 0) end; |
|
0 | 415 |
|
18847 | 416 |
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
|
417 |
| map_atyps f T = f T; |
18847 | 418 |
|
419 |
fun map_aterms f (t $ u) = map_aterms f t $ map_aterms f u |
|
420 |
| map_aterms f (Abs (a, T, t)) = Abs (a, T, map_aterms f t) |
|
421 |
| map_aterms f t = f t; |
|
422 |
||
18981 | 423 |
fun map_type_tvar f = map_atyps (fn TVar x => f x | T => T); |
424 |
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
|
425 |
|
20548
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents:
20531
diff
changeset
|
426 |
fun map_types f = |
16678 | 427 |
let |
428 |
fun map_aux (Const (a, T)) = Const (a, f T) |
|
429 |
| map_aux (Free (a, T)) = Free (a, f T) |
|
430 |
| map_aux (Var (v, T)) = Var (v, f T) |
|
431 |
| map_aux (t as Bound _) = t |
|
432 |
| map_aux (Abs (a, T, t)) = Abs (a, f T, map_aux t) |
|
433 |
| map_aux (t $ u) = map_aux t $ map_aux u; |
|
434 |
in map_aux end; |
|
0 | 435 |
|
436 |
(* iterate a function over all types in a term *) |
|
437 |
fun it_term_types f = |
|
438 |
let fun iter(Const(_,T), a) = f(T,a) |
|
439 |
| iter(Free(_,T), a) = f(T,a) |
|
440 |
| iter(Var(_,T), a) = f(T,a) |
|
441 |
| iter(Abs(_,T,t), a) = iter(t,f(T,a)) |
|
442 |
| iter(f$u, a) = iter(f, iter(u, a)) |
|
443 |
| iter(Bound _, a) = a |
|
444 |
in iter end |
|
445 |
||
446 |
||
16943 | 447 |
(* fold types and terms *) |
448 |
||
449 |
(*fold atoms of type*) |
|
450 |
fun fold_atyps f (Type (_, Ts)) = fold (fold_atyps f) Ts |
|
451 |
| fold_atyps f T = f T; |
|
452 |
||
453 |
(*fold atoms of term*) |
|
454 |
fun fold_aterms f (t $ u) = fold_aterms f t #> fold_aterms f u |
|
455 |
| fold_aterms f (Abs (_, _, t)) = fold_aterms f t |
|
456 |
| fold_aterms f a = f a; |
|
457 |
||
458 |
(*fold types of term*) |
|
459 |
fun fold_term_types f (t as Const (_, T)) = f t T |
|
460 |
| fold_term_types f (t as Free (_, T)) = f t T |
|
461 |
| fold_term_types f (t as Var (_, T)) = f t T |
|
462 |
| fold_term_types f (Bound _) = I |
|
463 |
| fold_term_types f (t as Abs (_, T, b)) = f t T #> fold_term_types f b |
|
464 |
| fold_term_types f (t $ u) = fold_term_types f t #> fold_term_types f u; |
|
465 |
||
466 |
fun fold_types f = fold_term_types (K f); |
|
467 |
||
468 |
(*collect variables*) |
|
469 |
val add_tvarsT = fold_atyps (fn TVar v => insert (op =) v | _ => I); |
|
470 |
val add_tvars = fold_types add_tvarsT; |
|
471 |
val add_vars = fold_aterms (fn Var v => insert (op =) v | _ => I); |
|
20199 | 472 |
val add_varnames = fold_aterms (fn Var (xi, _) => insert (op =) xi | _ => I); |
16943 | 473 |
val add_tfreesT = fold_atyps (fn TFree v => insert (op =) v | _ => I); |
474 |
val add_tfrees = fold_types add_tfreesT; |
|
475 |
val add_frees = fold_aterms (fn Free v => insert (op =) v | _ => I); |
|
476 |
||
477 |
||
16678 | 478 |
(** Comparing terms, types, sorts etc. **) |
16537 | 479 |
|
20511 | 480 |
(* alpha equivalence -- tuned for equalities *) |
481 |
||
482 |
fun tm1 aconv tm2 = |
|
483 |
pointer_eq (tm1, tm2) orelse |
|
484 |
(case (tm1, tm2) of |
|
485 |
(t1 $ u1, t2 $ u2) => t1 aconv t2 andalso u1 aconv u2 |
|
486 |
| (Abs (_, T1, t1), Abs (_, T2, t2)) => t1 aconv t2 andalso T1 = T2 |
|
487 |
| (a1, a2) => a1 = a2); |
|
488 |
||
489 |
||
490 |
(* fast syntactic ordering -- tuned for inequalities *) |
|
16678 | 491 |
|
492 |
fun fast_indexname_ord ((x, i), (y, j)) = |
|
493 |
(case int_ord (i, j) of EQUAL => fast_string_ord (x, y) | ord => ord); |
|
16537 | 494 |
|
16599 | 495 |
fun sort_ord SS = |
496 |
if pointer_eq SS then EQUAL |
|
16990 | 497 |
else dict_ord fast_string_ord SS; |
16678 | 498 |
|
499 |
local |
|
16537 | 500 |
|
16678 | 501 |
fun cons_nr (TVar _) = 0 |
502 |
| cons_nr (TFree _) = 1 |
|
503 |
| cons_nr (Type _) = 2; |
|
16537 | 504 |
|
16678 | 505 |
in |
16537 | 506 |
|
507 |
fun typ_ord TU = |
|
508 |
if pointer_eq TU then EQUAL |
|
509 |
else |
|
510 |
(case TU of |
|
16678 | 511 |
(Type (a, Ts), Type (b, Us)) => |
16990 | 512 |
(case fast_string_ord (a, b) of EQUAL => dict_ord typ_ord (Ts, Us) | ord => ord) |
16678 | 513 |
| (TFree (a, S), TFree (b, S')) => |
514 |
(case fast_string_ord (a, b) of EQUAL => sort_ord (S, S') | ord => ord) |
|
515 |
| (TVar (xi, S), TVar (yj, S')) => |
|
516 |
(case fast_indexname_ord (xi, yj) of EQUAL => sort_ord (S, S') | ord => ord) |
|
517 |
| (T, U) => int_ord (cons_nr T, cons_nr U)); |
|
518 |
||
519 |
end; |
|
520 |
||
521 |
local |
|
522 |
||
523 |
fun cons_nr (Const _) = 0 |
|
524 |
| cons_nr (Free _) = 1 |
|
525 |
| cons_nr (Var _) = 2 |
|
526 |
| cons_nr (Bound _) = 3 |
|
527 |
| cons_nr (Abs _) = 4 |
|
528 |
| cons_nr (_ $ _) = 5; |
|
529 |
||
530 |
fun struct_ord (Abs (_, _, t), Abs (_, _, u)) = struct_ord (t, u) |
|
531 |
| struct_ord (t1 $ t2, u1 $ u2) = |
|
532 |
(case struct_ord (t1, u1) of EQUAL => struct_ord (t2, u2) | ord => ord) |
|
533 |
| struct_ord (t, u) = int_ord (cons_nr t, cons_nr u); |
|
534 |
||
535 |
fun atoms_ord (Abs (_, _, t), Abs (_, _, u)) = atoms_ord (t, u) |
|
536 |
| atoms_ord (t1 $ t2, u1 $ u2) = |
|
537 |
(case atoms_ord (t1, u1) of EQUAL => atoms_ord (t2, u2) | ord => ord) |
|
538 |
| atoms_ord (Const (a, _), Const (b, _)) = fast_string_ord (a, b) |
|
539 |
| atoms_ord (Free (x, _), Free (y, _)) = fast_string_ord (x, y) |
|
540 |
| atoms_ord (Var (xi, _), Var (yj, _)) = fast_indexname_ord (xi, yj) |
|
541 |
| atoms_ord (Bound i, Bound j) = int_ord (i, j) |
|
542 |
| atoms_ord _ = sys_error "atoms_ord"; |
|
543 |
||
544 |
fun types_ord (Abs (_, T, t), Abs (_, U, u)) = |
|
545 |
(case typ_ord (T, U) of EQUAL => types_ord (t, u) | ord => ord) |
|
546 |
| types_ord (t1 $ t2, u1 $ u2) = |
|
547 |
(case types_ord (t1, u1) of EQUAL => types_ord (t2, u2) | ord => ord) |
|
548 |
| types_ord (Const (_, T), Const (_, U)) = typ_ord (T, U) |
|
549 |
| types_ord (Free (_, T), Free (_, U)) = typ_ord (T, U) |
|
550 |
| types_ord (Var (_, T), Var (_, U)) = typ_ord (T, U) |
|
551 |
| types_ord (Bound _, Bound _) = EQUAL |
|
552 |
| types_ord _ = sys_error "types_ord"; |
|
553 |
||
554 |
in |
|
555 |
||
556 |
fun fast_term_ord tu = |
|
557 |
if pointer_eq tu then EQUAL |
|
558 |
else |
|
559 |
(case struct_ord tu of |
|
560 |
EQUAL => (case atoms_ord tu of EQUAL => types_ord tu | ord => ord) |
|
561 |
| ord => ord); |
|
562 |
||
563 |
structure Vartab = TableFun(type key = indexname val ord = fast_indexname_ord); |
|
564 |
structure Typtab = TableFun(type key = typ val ord = typ_ord); |
|
565 |
structure Termtab = TableFun(type key = term val ord = fast_term_ord); |
|
566 |
||
567 |
end; |
|
16537 | 568 |
|
569 |
||
570 |
(* term_ord *) |
|
571 |
||
572 |
(*a linear well-founded AC-compatible ordering for terms: |
|
573 |
s < t <=> 1. size(s) < size(t) or |
|
574 |
2. size(s) = size(t) and s=f(...) and t=g(...) and f<g or |
|
575 |
3. size(s) = size(t) and s=f(s1..sn) and t=f(t1..tn) and |
|
576 |
(s1..sn) < (t1..tn) (lexicographically)*) |
|
16678 | 577 |
|
578 |
fun indexname_ord ((x, i), (y, j)) = |
|
579 |
(case int_ord (i, j) of EQUAL => string_ord (x, y) | ord => ord); |
|
580 |
||
16667 | 581 |
local |
582 |
||
583 |
fun hd_depth (t $ _, n) = hd_depth (t, n + 1) |
|
584 |
| hd_depth p = p; |
|
16537 | 585 |
|
586 |
fun dest_hd (Const (a, T)) = (((a, 0), T), 0) |
|
587 |
| dest_hd (Free (a, T)) = (((a, 0), T), 1) |
|
588 |
| dest_hd (Var v) = (v, 2) |
|
589 |
| dest_hd (Bound i) = ((("", i), dummyT), 3) |
|
590 |
| dest_hd (Abs (_, T, _)) = ((("", 0), T), 4); |
|
591 |
||
16667 | 592 |
in |
593 |
||
16537 | 594 |
fun term_ord tu = |
595 |
if pointer_eq tu then EQUAL |
|
596 |
else |
|
597 |
(case tu of |
|
598 |
(Abs (_, T, t), Abs(_, U, u)) => |
|
599 |
(case term_ord (t, u) of EQUAL => typ_ord (T, U) | ord => ord) |
|
16667 | 600 |
| (t, u) => |
16537 | 601 |
(case int_ord (size_of_term t, size_of_term u) of |
602 |
EQUAL => |
|
16943 | 603 |
(case prod_ord hd_ord int_ord (hd_depth (t, 0), hd_depth (u, 0)) of |
604 |
EQUAL => args_ord (t, u) | ord => ord) |
|
16537 | 605 |
| ord => ord)) |
606 |
and hd_ord (f, g) = |
|
607 |
prod_ord (prod_ord indexname_ord typ_ord) int_ord (dest_hd f, dest_hd g) |
|
16667 | 608 |
and args_ord (f $ t, g $ u) = |
609 |
(case args_ord (f, g) of EQUAL => term_ord (t, u) | ord => ord) |
|
610 |
| args_ord _ = EQUAL; |
|
16537 | 611 |
|
612 |
fun termless tu = (term_ord tu = LESS); |
|
613 |
||
16667 | 614 |
end; |
615 |
||
616 |
||
617 |
(** Lexicographic path order on terms **) |
|
618 |
||
619 |
(* |
|
16570 | 620 |
See Baader & Nipkow, Term rewriting, CUP 1998. |
621 |
Without variables. Const, Var, Bound, Free and Abs are treated all as |
|
622 |
constants. |
|
623 |
||
20129
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
624 |
f_ord maps terms to integers and serves two purposes: |
16570 | 625 |
- Predicate on constant symbols. Those that are not recognised by f_ord |
626 |
must be mapped to ~1. |
|
627 |
- Order on the recognised symbols. These must be mapped to distinct |
|
628 |
integers >= 0. |
|
20129
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
629 |
The argument of f_ord is never an application. |
16667 | 630 |
*) |
16570 | 631 |
|
632 |
local |
|
20129
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
633 |
|
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
634 |
fun unrecognized (Const (a, T)) = ((1, ((a, 0), T)), 0) |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
635 |
| unrecognized (Free (a, T)) = ((1, ((a, 0), T)), 0) |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
636 |
| unrecognized (Var v) = ((1, v), 1) |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
637 |
| unrecognized (Bound i) = ((1, (("", i), dummyT)), 2) |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
638 |
| unrecognized (Abs (_, T, _)) = ((1, (("", 0), T)), 3); |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
639 |
|
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
640 |
fun dest_hd f_ord t = |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
641 |
let val ord = f_ord t in |
95e84d2c9f2c
Term.term_lpo takes order on terms rather than strings as argument.
ballarin
parents:
20122
diff
changeset
|
642 |
if ord = ~1 then unrecognized t else ((0, (("", ord), fastype_of t)), 0) |
16570 | 643 |
end |
644 |
||
645 |
fun term_lpo f_ord (s, t) = |
|
646 |
let val (f, ss) = strip_comb s and (g, ts) = strip_comb t in |
|
647 |
if forall (fn si => term_lpo f_ord (si, t) = LESS) ss |
|
648 |
then case hd_ord f_ord (f, g) of |
|
16667 | 649 |
GREATER => |
650 |
if forall (fn ti => term_lpo f_ord (s, ti) = GREATER) ts |
|
651 |
then GREATER else LESS |
|
16570 | 652 |
| EQUAL => |
16667 | 653 |
if forall (fn ti => term_lpo f_ord (s, ti) = GREATER) ts |
654 |
then list_ord (term_lpo f_ord) (ss, ts) |
|
655 |
else LESS |
|
16570 | 656 |
| LESS => LESS |
657 |
else GREATER |
|
658 |
end |
|
659 |
and hd_ord f_ord (f, g) = case (f, g) of |
|
660 |
(Abs (_, T, t), Abs (_, U, u)) => |
|
661 |
(case term_lpo f_ord (t, u) of EQUAL => typ_ord (T, U) | ord => ord) |
|
662 |
| (_, _) => prod_ord (prod_ord int_ord |
|
663 |
(prod_ord indexname_ord typ_ord)) int_ord |
|
664 |
(dest_hd f_ord f, dest_hd f_ord g) |
|
665 |
in |
|
666 |
val term_lpo = term_lpo |
|
667 |
end; |
|
668 |
||
16537 | 669 |
|
0 | 670 |
(** Connectives of higher order logic **) |
671 |
||
19394 | 672 |
fun aT S = TFree ("'a", S); |
673 |
||
375 | 674 |
fun itselfT ty = Type ("itself", [ty]); |
14854 | 675 |
val a_itselfT = itselfT (TFree ("'a", [])); |
375 | 676 |
|
0 | 677 |
val propT : typ = Type("prop",[]); |
678 |
||
679 |
val implies = Const("==>", propT-->propT-->propT); |
|
680 |
||
681 |
fun all T = Const("all", (T-->propT)-->propT); |
|
682 |
||
683 |
fun equals T = Const("==", T-->T-->propT); |
|
684 |
||
685 |
(* maps !!x1...xn. t to t *) |
|
13000 | 686 |
fun strip_all_body (Const("all",_)$Abs(_,_,t)) = strip_all_body t |
0 | 687 |
| strip_all_body t = t; |
688 |
||
689 |
(* maps !!x1...xn. t to [x1, ..., xn] *) |
|
690 |
fun strip_all_vars (Const("all",_)$Abs(a,T,t)) = |
|
13000 | 691 |
(a,T) :: strip_all_vars t |
0 | 692 |
| strip_all_vars t = [] : (string*typ) list; |
693 |
||
694 |
(*increments a term's non-local bound variables |
|
695 |
required when moving a term within abstractions |
|
696 |
inc is increment for bound variables |
|
697 |
lev is level at which a bound variable is considered 'loose'*) |
|
13000 | 698 |
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u |
0 | 699 |
| incr_bv (inc, lev, Abs(a,T,body)) = |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
700 |
Abs(a, T, incr_bv(inc,lev+1,body)) |
13000 | 701 |
| incr_bv (inc, lev, f$t) = |
0 | 702 |
incr_bv(inc,lev,f) $ incr_bv(inc,lev,t) |
703 |
| incr_bv (inc, lev, u) = u; |
|
704 |
||
705 |
fun incr_boundvars 0 t = t |
|
706 |
| incr_boundvars inc t = incr_bv(inc,0,t); |
|
707 |
||
12981 | 708 |
(*Scan a pair of terms; while they are similar, |
709 |
accumulate corresponding bound vars in "al"*) |
|
710 |
fun match_bvs(Abs(x,_,s),Abs(y,_,t), al) = |
|
711 |
match_bvs(s, t, if x="" orelse y="" then al |
|
712 |
else (x,y)::al) |
|
713 |
| match_bvs(f$s, g$t, al) = match_bvs(f,g,match_bvs(s,t,al)) |
|
714 |
| match_bvs(_,_,al) = al; |
|
715 |
||
716 |
(* strip abstractions created by parameters *) |
|
717 |
fun match_bvars((s,t),al) = match_bvs(strip_abs_body s, strip_abs_body t, al); |
|
718 |
||
719 |
fun rename_abs pat obj t = |
|
720 |
let |
|
721 |
val ren = match_bvs (pat, obj, []); |
|
722 |
fun ren_abs (Abs (x, T, b)) = |
|
18942 | 723 |
Abs (the_default x (AList.lookup (op =) ren x), T, ren_abs b) |
12981 | 724 |
| ren_abs (f $ t) = ren_abs f $ ren_abs t |
725 |
| ren_abs t = t |
|
15531 | 726 |
in if null ren then NONE else SOME (ren_abs t) end; |
0 | 727 |
|
728 |
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond. |
|
729 |
(Bound 0) is loose at level 0 *) |
|
13000 | 730 |
fun add_loose_bnos (Bound i, lev, js) = |
20854 | 731 |
if i<lev then js else insert (op =) (i - lev) js |
0 | 732 |
| add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js) |
733 |
| add_loose_bnos (f$t, lev, js) = |
|
13000 | 734 |
add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) |
0 | 735 |
| add_loose_bnos (_, _, js) = js; |
736 |
||
737 |
fun loose_bnos t = add_loose_bnos (t, 0, []); |
|
738 |
||
739 |
(* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to |
|
740 |
level k or beyond. *) |
|
741 |
fun loose_bvar(Bound i,k) = i >= k |
|
742 |
| loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k) |
|
743 |
| loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1) |
|
744 |
| loose_bvar _ = false; |
|
745 |
||
2792 | 746 |
fun loose_bvar1(Bound i,k) = i = k |
747 |
| loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k) |
|
748 |
| loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1) |
|
749 |
| loose_bvar1 _ = false; |
|
0 | 750 |
|
751 |
(*Substitute arguments for loose bound variables. |
|
752 |
Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi). |
|
4626 | 753 |
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
|
754 |
and the appropriate call is subst_bounds([b,a], c) . |
0 | 755 |
Loose bound variables >=n are reduced by "n" to |
756 |
compensate for the disappearance of lambdas. |
|
757 |
*) |
|
13000 | 758 |
fun subst_bounds (args: term list, t) : term = |
19065 | 759 |
let |
760 |
exception SAME; |
|
761 |
val n = length args; |
|
762 |
fun subst (t as Bound i, lev) = |
|
763 |
(if i < lev then raise SAME (*var is locally bound*) |
|
764 |
else incr_boundvars lev (List.nth (args, i - lev)) |
|
765 |
handle Subscript => Bound (i - n)) (*loose: change it*) |
|
766 |
| subst (Abs (a, T, body), lev) = Abs (a, T, subst (body, lev + 1)) |
|
767 |
| subst (f $ t, lev) = |
|
768 |
(subst (f, lev) $ (subst (t, lev) handle SAME => t) handle SAME => f $ subst (t, lev)) |
|
769 |
| subst _ = raise SAME; |
|
770 |
in case args of [] => t | _ => (subst (t, 0) handle SAME => t) end; |
|
0 | 771 |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
772 |
(*Special case: one argument*) |
13000 | 773 |
fun subst_bound (arg, t) : term = |
19065 | 774 |
let |
775 |
exception SAME; |
|
776 |
fun subst (Bound i, lev) = |
|
777 |
if i < lev then raise SAME (*var is locally bound*) |
|
778 |
else if i = lev then incr_boundvars lev arg |
|
779 |
else Bound (i - 1) (*loose: change it*) |
|
780 |
| subst (Abs (a, T, body), lev) = Abs (a, T, subst (body, lev + 1)) |
|
781 |
| subst (f $ t, lev) = |
|
782 |
(subst (f, lev) $ (subst (t, lev) handle SAME => t) handle SAME => f $ subst (t, lev)) |
|
783 |
| subst _ = raise SAME; |
|
784 |
in subst (t, 0) handle SAME => t end; |
|
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
785 |
|
0 | 786 |
(*beta-reduce if possible, else form application*) |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
787 |
fun betapply (Abs(_,_,t), u) = subst_bound (u,t) |
0 | 788 |
| betapply (f,u) = f$u; |
789 |
||
18183 | 790 |
val betapplys = Library.foldl betapply; |
791 |
||
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
792 |
|
20109 | 793 |
(*unfolding abstractions with substitution |
794 |
of bound variables and implicit eta-expansion*) |
|
795 |
fun strip_abs_eta k t = |
|
796 |
let |
|
20122 | 797 |
val used = fold_aterms (fn Free (v, _) => Name.declare v | _ => I) t Name.context; |
20109 | 798 |
fun strip_abs t (0, used) = (([], t), (0, used)) |
799 |
| strip_abs (Abs (v, T, t)) (k, used) = |
|
800 |
let |
|
20122 | 801 |
val ([v'], used') = Name.variants [v] used; |
21013 | 802 |
val t' = subst_bound (Free (v', T), t); |
20122 | 803 |
val ((vs, t''), (k', used'')) = strip_abs t' (k - 1, used'); |
804 |
in (((v', T) :: vs, t''), (k', used'')) end |
|
20109 | 805 |
| strip_abs t (k, used) = (([], t), (k, used)); |
806 |
fun expand_eta [] t _ = ([], t) |
|
807 |
| expand_eta (T::Ts) t used = |
|
808 |
let |
|
20122 | 809 |
val ([v], used') = Name.variants [""] used; |
810 |
val (vs, t') = expand_eta Ts (t $ Free (v, T)) used'; |
|
20109 | 811 |
in ((v, T) :: vs, t') end; |
812 |
val ((vs1, t'), (k', used')) = strip_abs t (k, used); |
|
813 |
val Ts = (fst o chop k' o fst o strip_type o fastype_of) t'; |
|
814 |
val (vs2, t'') = expand_eta Ts t' used'; |
|
815 |
in (vs1 @ vs2, t'') end; |
|
816 |
||
817 |
||
20199 | 818 |
(* comparing variables *) |
16882 | 819 |
|
16724 | 820 |
fun eq_ix ((x, i): indexname, (y, j)) = i = j andalso x = y; |
2192
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
paulson
parents:
2182
diff
changeset
|
821 |
|
16943 | 822 |
fun eq_tvar ((xi, S: sort), (xi', S')) = eq_ix (xi, xi') andalso S = S'; |
823 |
fun eq_var ((xi, T: typ), (xi', T')) = eq_ix (xi, xi') andalso T = T'; |
|
824 |
||
825 |
val tvar_ord = prod_ord indexname_ord sort_ord; |
|
826 |
val var_ord = prod_ord indexname_ord typ_ord; |
|
16882 | 827 |
|
828 |
||
13000 | 829 |
(*A fast unification filter: true unless the two terms cannot be unified. |
0 | 830 |
Terms must be NORMAL. Treats all Vars as distinct. *) |
831 |
fun could_unify (t,u) = |
|
832 |
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
|
833 |
| matchrands _ = true |
0 | 834 |
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
|
835 |
(_, Var _) => true |
0 | 836 |
| (Var _, _) => true |
837 |
| (Const(a,_), Const(b,_)) => a=b andalso matchrands(t,u) |
|
838 |
| (Free(a,_), Free(b,_)) => a=b andalso matchrands(t,u) |
|
839 |
| (Bound i, Bound j) => i=j andalso matchrands(t,u) |
|
840 |
| (Abs _, _) => true (*because of possible eta equality*) |
|
841 |
| (_, Abs _) => true |
|
842 |
| _ => false |
|
843 |
end; |
|
844 |
||
845 |
(*Substitute new for free occurrences of old in a term*) |
|
846 |
fun subst_free [] = (fn t=>t) |
|
847 |
| subst_free pairs = |
|
13000 | 848 |
let fun substf u = |
17314 | 849 |
case AList.lookup (op aconv) pairs u of |
15531 | 850 |
SOME u' => u' |
851 |
| 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
|
852 |
| t$u' => substf t $ substf u' |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
853 |
| _ => u) |
0 | 854 |
in substf end; |
855 |
||
13000 | 856 |
(*Abstraction of the term "body" over its occurrences of v, |
0 | 857 |
which must contain no loose bound variables. |
858 |
The resulting term is ready to become the body of an Abs.*) |
|
16882 | 859 |
fun abstract_over (v, body) = |
860 |
let |
|
16990 | 861 |
exception SAME; |
862 |
fun abs lev tm = |
|
863 |
if v aconv tm then Bound lev |
|
16882 | 864 |
else |
16990 | 865 |
(case tm of |
866 |
Abs (a, T, t) => Abs (a, T, abs (lev + 1) t) |
|
867 |
| t $ u => (abs lev t $ (abs lev u handle SAME => u) handle SAME => t $ abs lev u) |
|
868 |
| _ => raise SAME); |
|
869 |
in abs 0 body handle SAME => body end; |
|
0 | 870 |
|
18975 | 871 |
fun lambda (v as Const (x, T)) t = Abs (NameSpace.base x, T, abstract_over (v, t)) |
18942 | 872 |
| lambda (v as Free (x, T)) t = Abs (x, T, abstract_over (v, t)) |
13665 | 873 |
| lambda (v as Var ((x, _), T)) t = Abs (x, T, abstract_over (v, t)) |
874 |
| lambda v t = raise TERM ("lambda", [v, t]); |
|
0 | 875 |
|
876 |
(*Form an abstraction over a free variable.*) |
|
877 |
fun absfree (a,T,body) = Abs(a, T, abstract_over (Free(a,T), body)); |
|
17786 | 878 |
fun absdummy (T, body) = Abs ("uu", T, body); |
0 | 879 |
|
880 |
(*Abstraction over a list of free variables*) |
|
881 |
fun list_abs_free ([ ] , t) = t |
|
13000 | 882 |
| list_abs_free ((a,T)::vars, t) = |
0 | 883 |
absfree(a, T, list_abs_free(vars,t)); |
884 |
||
885 |
(*Quantification over a list of free variables*) |
|
886 |
fun list_all_free ([], t: term) = t |
|
13000 | 887 |
| list_all_free ((a,T)::vars, t) = |
0 | 888 |
(all T) $ (absfree(a, T, list_all_free(vars,t))); |
889 |
||
890 |
(*Quantification over a list of variables (already bound in body) *) |
|
891 |
fun list_all ([], t) = t |
|
13000 | 892 |
| list_all ((a,T)::vars, t) = |
0 | 893 |
(all T) $ (Abs(a, T, list_all(vars,t))); |
894 |
||
16678 | 895 |
(*Replace the ATOMIC term ti by ui; inst = [(t1,u1), ..., (tn,un)]. |
0 | 896 |
A simultaneous substitution: [ (a,b), (b,a) ] swaps a and b. *) |
16678 | 897 |
fun subst_atomic [] tm = tm |
898 |
| subst_atomic inst tm = |
|
899 |
let |
|
900 |
fun subst (Abs (a, T, body)) = Abs (a, T, subst body) |
|
901 |
| subst (t $ u) = subst t $ subst u |
|
18942 | 902 |
| subst t = the_default t (AList.lookup (op aconv) inst t); |
16678 | 903 |
in subst tm end; |
0 | 904 |
|
16678 | 905 |
(*Replace the ATOMIC type Ti by Ui; inst = [(T1,U1), ..., (Tn,Un)].*) |
906 |
fun typ_subst_atomic [] ty = ty |
|
907 |
| typ_subst_atomic inst ty = |
|
908 |
let |
|
909 |
fun subst (Type (a, Ts)) = Type (a, map subst Ts) |
|
18942 | 910 |
| subst T = the_default T (AList.lookup (op = : typ * typ -> bool) inst T); |
16678 | 911 |
in subst ty end; |
15797 | 912 |
|
16678 | 913 |
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
|
914 |
| subst_atomic_types inst tm = map_types (typ_subst_atomic inst) tm; |
16678 | 915 |
|
916 |
fun typ_subst_TVars [] ty = ty |
|
917 |
| typ_subst_TVars inst ty = |
|
918 |
let |
|
919 |
fun subst (Type (a, Ts)) = Type (a, map subst Ts) |
|
18942 | 920 |
| subst (T as TVar (xi, _)) = the_default T (AList.lookup (op =) inst xi) |
16678 | 921 |
| subst T = T; |
922 |
in subst ty end; |
|
0 | 923 |
|
16678 | 924 |
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
|
925 |
| subst_TVars inst tm = map_types (typ_subst_TVars inst) tm; |
0 | 926 |
|
16678 | 927 |
fun subst_Vars [] tm = tm |
928 |
| subst_Vars inst tm = |
|
929 |
let |
|
18942 | 930 |
fun subst (t as Var (xi, _)) = the_default t (AList.lookup (op =) inst xi) |
16678 | 931 |
| subst (Abs (a, T, t)) = Abs (a, T, subst t) |
932 |
| subst (t $ u) = subst t $ subst u |
|
933 |
| subst t = t; |
|
934 |
in subst tm end; |
|
0 | 935 |
|
16678 | 936 |
fun subst_vars ([], []) tm = tm |
937 |
| subst_vars ([], inst) tm = subst_Vars inst tm |
|
938 |
| subst_vars (instT, inst) tm = |
|
939 |
let |
|
940 |
fun subst (Const (a, T)) = Const (a, typ_subst_TVars instT T) |
|
941 |
| subst (Free (a, T)) = Free (a, typ_subst_TVars instT T) |
|
942 |
| subst (t as Var (xi, T)) = |
|
17271 | 943 |
(case AList.lookup (op =) inst xi of |
16678 | 944 |
NONE => Var (xi, typ_subst_TVars instT T) |
945 |
| SOME t => t) |
|
946 |
| subst (t as Bound _) = t |
|
947 |
| subst (Abs (a, T, t)) = Abs (a, typ_subst_TVars instT T, subst t) |
|
948 |
| subst (t $ u) = subst t $ subst u; |
|
949 |
in subst tm end; |
|
0 | 950 |
|
951 |
||
15573 | 952 |
(** Identifying first-order terms **) |
953 |
||
20199 | 954 |
(*Differs from proofterm/is_fun in its treatment of TVar*) |
955 |
fun is_funtype (Type("fun",[_,_])) = true |
|
956 |
| is_funtype _ = false; |
|
957 |
||
15573 | 958 |
(*Argument Ts is a reverse list of binder types, needed if term t contains Bound vars*) |
959 |
fun has_not_funtype Ts t = not (is_funtype (fastype_of1 (Ts,t))); |
|
960 |
||
16537 | 961 |
(*First order means in all terms of the form f(t1,...,tn) no argument has a |
16589 | 962 |
function type. The supplied quantifiers are excluded: their argument always |
963 |
has a function type through a recursive call into its body.*) |
|
16667 | 964 |
fun is_first_order quants = |
16589 | 965 |
let fun first_order1 Ts (Abs (_,T,body)) = first_order1 (T::Ts) body |
16667 | 966 |
| first_order1 Ts (Const(q,_) $ Abs(a,T,body)) = |
20664 | 967 |
member (op =) quants q andalso (*it is a known quantifier*) |
16589 | 968 |
not (is_funtype T) andalso first_order1 (T::Ts) body |
16667 | 969 |
| first_order1 Ts t = |
970 |
case strip_comb t of |
|
971 |
(Var _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
972 |
| (Free _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
973 |
| (Const _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
974 |
| (Bound _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts |
|
975 |
| (Abs _, ts) => false (*not in beta-normal form*) |
|
976 |
| _ => error "first_order: unexpected case" |
|
16589 | 977 |
in first_order1 [] end; |
15573 | 978 |
|
16710 | 979 |
|
16990 | 980 |
(* maximum index of typs and terms *) |
0 | 981 |
|
16710 | 982 |
fun maxidx_typ (TVar ((_, j), _)) i = Int.max (i, j) |
983 |
| maxidx_typ (Type (_, Ts)) i = maxidx_typs Ts i |
|
984 |
| maxidx_typ (TFree _) i = i |
|
985 |
and maxidx_typs [] i = i |
|
986 |
| maxidx_typs (T :: Ts) i = maxidx_typs Ts (maxidx_typ T i); |
|
0 | 987 |
|
16710 | 988 |
fun maxidx_term (Var ((_, j), T)) i = maxidx_typ T (Int.max (i, j)) |
989 |
| maxidx_term (Const (_, T)) i = maxidx_typ T i |
|
990 |
| maxidx_term (Free (_, T)) i = maxidx_typ T i |
|
991 |
| maxidx_term (Bound _) i = i |
|
992 |
| maxidx_term (Abs (_, T, t)) i = maxidx_term t (maxidx_typ T i) |
|
993 |
| maxidx_term (t $ u) i = maxidx_term u (maxidx_term t i); |
|
0 | 994 |
|
16710 | 995 |
fun maxidx_of_typ T = maxidx_typ T ~1; |
996 |
fun maxidx_of_typs Ts = maxidx_typs Ts ~1; |
|
997 |
fun maxidx_of_term t = maxidx_term t ~1; |
|
13665 | 998 |
|
0 | 999 |
|
1000 |
||
1001 |
(**** Syntax-related declarations ****) |
|
1002 |
||
19909 | 1003 |
(* substructure *) |
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
1004 |
|
19909 | 1005 |
fun exists_subtype P = |
1006 |
let |
|
1007 |
fun ex ty = P ty orelse |
|
1008 |
(case ty of Type (_, Ts) => exists ex Ts | _ => false); |
|
1009 |
in ex end; |
|
13646 | 1010 |
|
20531 | 1011 |
fun exists_type P = |
1012 |
let |
|
1013 |
fun ex (Const (_, T)) = P T |
|
1014 |
| ex (Free (_, T)) = P T |
|
1015 |
| ex (Var (_, T)) = P T |
|
1016 |
| ex (Bound _) = false |
|
1017 |
| ex (Abs (_, T, t)) = P T orelse ex t |
|
1018 |
| ex (t $ u) = ex t orelse ex u; |
|
1019 |
in ex end; |
|
1020 |
||
16943 | 1021 |
fun exists_subterm P = |
1022 |
let |
|
1023 |
fun ex tm = P tm orelse |
|
1024 |
(case tm of |
|
1025 |
t $ u => ex t orelse ex u |
|
1026 |
| Abs (_, _, t) => ex t |
|
1027 |
| _ => false); |
|
1028 |
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
|
1029 |
|
19909 | 1030 |
|
1031 |
(** Consts etc. **) |
|
1032 |
||
1033 |
fun add_term_consts (Const (c, _), cs) = insert (op =) c cs |
|
1034 |
| add_term_consts (t $ u, cs) = add_term_consts (t, add_term_consts (u, cs)) |
|
1035 |
| add_term_consts (Abs (_, _, t), cs) = add_term_consts (t, cs) |
|
1036 |
| add_term_consts (_, cs) = cs; |
|
1037 |
||
1038 |
fun term_consts t = add_term_consts(t,[]); |
|
1039 |
||
16943 | 1040 |
fun exists_Const P = exists_subterm (fn Const c => P c | _ => false); |
4631 | 1041 |
|
4017
63878e2587a7
add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents:
3965
diff
changeset
|
1042 |
|
0 | 1043 |
(** TFrees and TVars **) |
1044 |
||
12802
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
1045 |
(*Accumulates the names of Frees in the term, suppressing duplicates.*) |
20854 | 1046 |
fun add_term_free_names (Free(a,_), bs) = insert (op =) a bs |
12802
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
1047 |
| 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
|
1048 |
| 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
|
1049 |
| add_term_free_names (_, bs) = bs; |
c69bd9754473
added add_term_free_names (more precise/efficient than add_term_names);
wenzelm
parents:
12499
diff
changeset
|
1050 |
|
0 | 1051 |
(*Accumulates the names in the term, suppressing duplicates. |
1052 |
Includes Frees and Consts. For choosing unambiguous bound var names.*) |
|
20854 | 1053 |
fun add_term_names (Const(a,_), bs) = insert (op =) (NameSpace.base a) bs |
1054 |
| add_term_names (Free(a,_), bs) = insert (op =) a bs |
|
0 | 1055 |
| add_term_names (f$u, bs) = add_term_names (f, add_term_names(u, bs)) |
1056 |
| add_term_names (Abs(_,_,t), bs) = add_term_names(t,bs) |
|
1057 |
| add_term_names (_, bs) = bs; |
|
1058 |
||
1059 |
(*Accumulates the TVars in a type, suppressing duplicates. *) |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15573
diff
changeset
|
1060 |
fun add_typ_tvars(Type(_,Ts),vs) = foldr add_typ_tvars vs Ts |
0 | 1061 |
| add_typ_tvars(TFree(_),vs) = vs |
16294 | 1062 |
| add_typ_tvars(TVar(v),vs) = insert (op =) v vs; |
0 | 1063 |
|
1064 |
(*Accumulates the TFrees in a type, suppressing duplicates. *) |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15573
diff
changeset
|
1065 |
fun add_typ_tfree_names(Type(_,Ts),fs) = foldr add_typ_tfree_names fs Ts |
20854 | 1066 |
| add_typ_tfree_names(TFree(f,_),fs) = insert (op =) f fs |
0 | 1067 |
| add_typ_tfree_names(TVar(_),fs) = fs; |
1068 |
||
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15573
diff
changeset
|
1069 |
fun add_typ_tfrees(Type(_,Ts),fs) = foldr add_typ_tfrees fs Ts |
16294 | 1070 |
| add_typ_tfrees(TFree(f),fs) = insert (op =) f fs |
0 | 1071 |
| add_typ_tfrees(TVar(_),fs) = fs; |
1072 |
||
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15573
diff
changeset
|
1073 |
fun add_typ_varnames(Type(_,Ts),nms) = foldr add_typ_varnames nms Ts |
20854 | 1074 |
| add_typ_varnames(TFree(nm,_),nms) = insert (op =) nm nms |
1075 |
| add_typ_varnames(TVar((nm,_),_),nms) = insert (op =) nm nms; |
|
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1076 |
|
0 | 1077 |
(*Accumulates the TVars in a term, suppressing duplicates. *) |
1078 |
val add_term_tvars = it_term_types add_typ_tvars; |
|
1079 |
||
1080 |
(*Accumulates the TFrees in a term, suppressing duplicates. *) |
|
1081 |
val add_term_tfrees = it_term_types add_typ_tfrees; |
|
1082 |
val add_term_tfree_names = it_term_types add_typ_tfree_names; |
|
1083 |
||
1084 |
(*Non-list versions*) |
|
1085 |
fun typ_tfrees T = add_typ_tfrees(T,[]); |
|
1086 |
fun typ_tvars T = add_typ_tvars(T,[]); |
|
1087 |
fun term_tfrees t = add_term_tfrees(t,[]); |
|
1088 |
fun term_tvars t = add_term_tvars(t,[]); |
|
1089 |
||
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1090 |
(*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
|
1091 |
|
15570 | 1092 |
fun add_typ_ixns(ixns,Type(_,Ts)) = Library.foldl add_typ_ixns (ixns,Ts) |
20082
b0f5981b9267
removed obsolete ins_ix, mem_ix, ins_term, mem_term;
wenzelm
parents:
20001
diff
changeset
|
1093 |
| add_typ_ixns(ixns,TVar(ixn,_)) = if member (op =) ixns ixn then ixns |
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1094 |
else ixns@[ixn] |
949
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1095 |
| add_typ_ixns(ixns,TFree(_)) = ixns; |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1096 |
|
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1097 |
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
|
1098 |
| 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
|
1099 |
| 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
|
1100 |
| add_term_tvar_ixns(Bound _,ixns) = ixns |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1101 |
| add_term_tvar_ixns(Abs(_,T,t),ixns) = |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1102 |
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
|
1103 |
| add_term_tvar_ixns(f$t,ixns) = |
83c588d6fee9
Changed treatment of during type inference internally generated type
nipkow
parents:
728
diff
changeset
|
1104 |
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
|
1105 |
|
16537 | 1106 |
|
0 | 1107 |
(** Frees and Vars **) |
1108 |
||
1109 |
(*Accumulates the Vars in the term, suppressing duplicates*) |
|
1110 |
fun add_term_vars (t, vars: term list) = case t of |
|
16990 | 1111 |
Var _ => OrdList.insert term_ord t vars |
0 | 1112 |
| Abs (_,_,body) => add_term_vars(body,vars) |
1113 |
| f$t => add_term_vars (f, add_term_vars(t, vars)) |
|
1114 |
| _ => vars; |
|
1115 |
||
1116 |
fun term_vars t = add_term_vars(t,[]); |
|
1117 |
||
1118 |
(*Accumulates the Frees in the term, suppressing duplicates*) |
|
1119 |
fun add_term_frees (t, frees: term list) = case t of |
|
16990 | 1120 |
Free _ => OrdList.insert term_ord t frees |
0 | 1121 |
| Abs (_,_,body) => add_term_frees(body,frees) |
1122 |
| f$t => add_term_frees (f, add_term_frees(t, frees)) |
|
1123 |
| _ => frees; |
|
1124 |
||
1125 |
fun term_frees t = add_term_frees(t,[]); |
|
1126 |
||
20199 | 1127 |
|
1128 |
(* dest abstraction *) |
|
0 | 1129 |
|
16678 | 1130 |
fun dest_abs (x, T, body) = |
1131 |
let |
|
1132 |
fun name_clash (Free (y, _)) = (x = y) |
|
1133 |
| name_clash (t $ u) = name_clash t orelse name_clash u |
|
1134 |
| name_clash (Abs (_, _, t)) = name_clash t |
|
1135 |
| name_clash _ = false; |
|
1136 |
in |
|
1137 |
if name_clash body then |
|
20082
b0f5981b9267
removed obsolete ins_ix, mem_ix, ins_term, mem_term;
wenzelm
parents:
20001
diff
changeset
|
1138 |
dest_abs (Name.variant [x] x, T, body) (*potentially slow, but rarely happens*) |
16678 | 1139 |
else (x, subst_bound (Free (x, T), body)) |
1140 |
end; |
|
1141 |
||
20160 | 1142 |
|
1143 |
(* renaming variables *) |
|
0 | 1144 |
|
20239 | 1145 |
fun declare_term_names tm = |
1146 |
fold_aterms |
|
1147 |
(fn Const (a, _) => Name.declare (NameSpace.base a) |
|
1148 |
| Free (a, _) => Name.declare a |
|
1149 |
| _ => I) tm #> |
|
1150 |
fold_types (fold_atyps (fn TFree (a, _) => Name.declare a | _ => I)) tm; |
|
1151 |
||
20160 | 1152 |
fun variant_frees t frees = |
1153 |
fst (Name.variants (map fst frees) (declare_term_names t Name.context)) ~~ map snd frees; |
|
1154 |
||
1155 |
fun rename_wrt_term t frees = rev (variant_frees t frees); (*reversed result!*) |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
1156 |
|
1417 | 1157 |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1158 |
(* dummy patterns *) |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1159 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1160 |
val dummy_patternN = "dummy_pattern"; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1161 |
|
18253 | 1162 |
fun dummy_pattern T = Const (dummy_patternN, T); |
1163 |
||
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1164 |
fun is_dummy_pattern (Const ("dummy_pattern", _)) = true |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1165 |
| is_dummy_pattern _ = false; |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1166 |
|
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1167 |
fun no_dummy_patterns tm = |
16787 | 1168 |
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
|
1169 |
else raise TERM ("Illegal occurrence of '_' dummy pattern", [tm]); |
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1170 |
|
11903 | 1171 |
fun replace_dummy Ts (i, Const ("dummy_pattern", T)) = |
1172 |
(i + 1, list_comb (Var (("_dummy_", i), Ts ---> T), map Bound (0 upto length Ts - 1))) |
|
1173 |
| replace_dummy Ts (i, Abs (x, T, t)) = |
|
1174 |
let val (i', t') = replace_dummy (T :: Ts) (i, t) |
|
1175 |
in (i', Abs (x, T, t')) end |
|
1176 |
| replace_dummy Ts (i, t $ u) = |
|
1177 |
let val (i', t') = replace_dummy Ts (i, t); val (i'', u') = replace_dummy Ts (i', u) |
|
1178 |
in (i'', t' $ u') end |
|
1179 |
| replace_dummy _ (i, a) = (i, a); |
|
1180 |
||
1181 |
val replace_dummy_patterns = replace_dummy []; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1182 |
|
10552 | 1183 |
fun is_replaced_dummy_pattern ("_dummy_", _) = true |
1184 |
| is_replaced_dummy_pattern _ = false; |
|
9536
b79b002f32ae
added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents:
9319
diff
changeset
|
1185 |
|
16035 | 1186 |
fun show_dummy_patterns (Var (("_dummy_", _), T)) = Const ("dummy_pattern", T) |
1187 |
| show_dummy_patterns (t $ u) = show_dummy_patterns t $ show_dummy_patterns u |
|
1188 |
| show_dummy_patterns (Abs (x, T, t)) = Abs (x, T, show_dummy_patterns t) |
|
1189 |
| show_dummy_patterns a = a; |
|
1190 |
||
13484 | 1191 |
|
20100 | 1192 |
(* display variables *) |
1193 |
||
15986 | 1194 |
val show_question_marks = ref true; |
15472 | 1195 |
|
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1196 |
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
|
1197 |
let |
15986 | 1198 |
val question_mark = if ! show_question_marks then "?" else ""; |
1199 |
val idx = string_of_int i; |
|
1200 |
val dot = |
|
1201 |
(case rev (Symbol.explode x) of |
|
1202 |
_ :: "\\<^isub>" :: _ => false |
|
1203 |
| _ :: "\\<^isup>" :: _ => false |
|
1204 |
| c :: _ => Symbol.is_digit c |
|
1205 |
| _ => true); |
|
14786
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1206 |
in |
15986 | 1207 |
if dot then question_mark ^ x ^ "." ^ idx |
1208 |
else if i <> 0 then question_mark ^ x ^ idx |
|
1209 |
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
|
1210 |
end; |
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1211 |
|
24a7bc97a27a
moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents:
14695
diff
changeset
|
1212 |
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
|
1213 |
| 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
|
1214 |
|
1364
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
1215 |
end; |
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
clasohm
parents:
1029
diff
changeset
|
1216 |
|
4444 | 1217 |
structure BasicTerm: BASIC_TERM = Term; |
1218 |
open BasicTerm; |