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