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