| author | wenzelm | 
| Fri, 24 Oct 1997 17:14:02 +0200 | |
| changeset 3992 | 8b87ba92f7a1 | 
| parent 3965 | 1d7b53e6a2cb | 
| child 4017 | 63878e2587a7 | 
| permissions | -rw-r--r-- | 
| 1460 | 1 | (* Title: Pure/term.ML | 
| 0 | 2 | ID: $Id$ | 
| 1460 | 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 | |
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 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 -->; | 
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 11 | infixr --->; | 
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 12 | infix aconv; | 
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 13 | |
| 0 | 14 | |
| 1364 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 15 | structure Term = | 
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 16 | struct | 
| 0 | 17 | |
| 18 | (*Indexnames can be quickly renamed by adding an offset to the integer part, | |
| 19 | for resolution.*) | |
| 20 | type indexname = string*int; | |
| 21 | ||
| 22 | (* Types are classified by classes. *) | |
| 23 | type class = string; | |
| 24 | type sort = class list; | |
| 25 | ||
| 26 | (* The sorts attached to TFrees and TVars specify the sort of that variable *) | |
| 27 | datatype typ = Type of string * typ list | |
| 28 | | TFree of string * sort | |
| 1460 | 29 | | TVar of indexname * sort; | 
| 0 | 30 | |
| 31 | fun S --> T = Type("fun",[S,T]);
 | |
| 32 | ||
| 33 | (*handy for multiple args: [T1,...,Tn]--->T gives T1-->(T2--> ... -->T)*) | |
| 34 | val op ---> = foldr (op -->); | |
| 35 | ||
| 36 | ||
| 37 | (*terms. Bound variables are indicated by depth number. | |
| 38 | Free variables, (scheme) variables and constants have names. | |
| 39 | An term is "closed" if there every bound variable of level "lev" | |
| 40 | is enclosed by at least "lev" abstractions. | |
| 41 | ||
| 42 | It is possible to create meaningless terms containing loose bound vars | |
| 43 | or type mismatches. But such terms are not allowed in rules. *) | |
| 44 | ||
| 45 | ||
| 46 | ||
| 47 | datatype term = | |
| 48 | Const of string * typ | |
| 49 | | Free of string * typ | |
| 50 | | Var of indexname * typ | |
| 51 | | Bound of int | |
| 52 | | Abs of string*typ*term | |
| 3965 | 53 | | op $ of term*term; | 
| 0 | 54 | |
| 55 | ||
| 56 | (*For errors involving type mismatches*) | |
| 57 | exception TYPE of string * typ list * term list; | |
| 58 | ||
| 59 | (*For system errors involving terms*) | |
| 60 | exception TERM of string * term list; | |
| 61 | ||
| 62 | ||
| 63 | (*Note variable naming conventions! | |
| 64 | a,b,c: string | |
| 65 | f,g,h: functions (including terms of function type) | |
| 66 | i,j,m,n: int | |
| 67 | t,u: term | |
| 68 | v,w: indexnames | |
| 69 | x,y: any | |
| 70 | A,B,C: term (denoting formulae) | |
| 71 | T,U: typ | |
| 72 | *) | |
| 73 | ||
| 74 | ||
| 75 | (** Discriminators **) | |
| 76 | ||
| 77 | fun is_Const (Const _) = true | |
| 78 | | is_Const _ = false; | |
| 79 | ||
| 80 | fun is_Free (Free _) = true | |
| 81 | | is_Free _ = false; | |
| 82 | ||
| 83 | fun is_Var (Var _) = true | |
| 84 | | is_Var _ = false; | |
| 85 | ||
| 86 | fun is_TVar (TVar _) = true | |
| 87 | | is_TVar _ = false; | |
| 88 | ||
| 89 | (** Destructors **) | |
| 90 | ||
| 91 | fun dest_Const (Const x) = x | |
| 92 |   | dest_Const t = raise TERM("dest_Const", [t]);
 | |
| 93 | ||
| 94 | fun dest_Free (Free x) = x | |
| 95 |   | dest_Free t = raise TERM("dest_Free", [t]);
 | |
| 96 | ||
| 97 | fun dest_Var (Var x) = x | |
| 98 |   | dest_Var t = raise TERM("dest_Var", [t]);
 | |
| 99 | ||
| 100 | ||
| 101 | (* maps [T1,...,Tn]--->T to the list [T1,T2,...,Tn]*) | |
| 102 | fun binder_types (Type("fun",[S,T])) = S :: binder_types T
 | |
| 103 | | binder_types _ = []; | |
| 104 | ||
| 105 | (* maps [T1,...,Tn]--->T to T*) | |
| 106 | fun body_type (Type("fun",[S,T])) = body_type T
 | |
| 107 | | body_type T = T; | |
| 108 | ||
| 109 | (* maps [T1,...,Tn]--->T to ([T1,T2,...,Tn], T) *) | |
| 110 | fun strip_type T : typ list * typ = | |
| 111 | (binder_types T, body_type T); | |
| 112 | ||
| 113 | ||
| 114 | (*Compute the type of the term, checking that combinations are well-typed | |
| 115 | Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*) | |
| 116 | fun type_of1 (Ts, Const (_,T)) = T | |
| 117 | | type_of1 (Ts, Free (_,T)) = T | |
| 118 | | type_of1 (Ts, Bound i) = (nth_elem (i,Ts) | |
| 1460 | 119 |   	handle LIST _ => raise TYPE("type_of: bound variable", [], [Bound i]))
 | 
| 0 | 120 | | type_of1 (Ts, Var (_,T)) = T | 
| 121 | | type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body) | |
| 122 | | type_of1 (Ts, f$u) = | |
| 123 | let val U = type_of1(Ts,u) | |
| 124 | and T = type_of1(Ts,f) | |
| 125 | in case T of | |
| 1460 | 126 | 	    Type("fun",[T1,T2]) =>
 | 
| 127 | if T1=U then T2 else raise TYPE | |
| 128 | 	            ("type_of: type mismatch in application", [T1,U], [f$u])
 | |
| 129 | | _ => raise TYPE | |
| 130 | 		    ("type_of: function type is expected in application",
 | |
| 131 | [T,U], [f$u]) | |
| 0 | 132 | end; | 
| 133 | ||
| 134 | fun type_of t : typ = type_of1 ([],t); | |
| 135 | ||
| 136 | (*Determines the type of a term, with minimal checking*) | |
| 61 | 137 | fun fastype_of1 (Ts, f$u) = | 
| 138 | (case fastype_of1 (Ts,f) of | |
| 1460 | 139 | 	Type("fun",[_,T]) => T
 | 
| 140 | 	| _ => raise TERM("fastype_of: expected function type", [f$u]))
 | |
| 61 | 141 | | fastype_of1 (_, Const (_,T)) = T | 
| 142 | | fastype_of1 (_, Free (_,T)) = T | |
| 143 | | fastype_of1 (Ts, Bound i) = (nth_elem(i,Ts) | |
| 1460 | 144 |   	 handle LIST _ => raise TERM("fastype_of: Bound", [Bound i]))
 | 
| 61 | 145 | | fastype_of1 (_, Var (_,T)) = T | 
| 146 | | fastype_of1 (Ts, Abs (_,T,u)) = T --> fastype_of1 (T::Ts, u); | |
| 147 | ||
| 148 | fun fastype_of t : typ = fastype_of1 ([],t); | |
| 0 | 149 | |
| 150 | ||
| 151 | (* maps (x1,...,xn)t to t *) | |
| 152 | fun strip_abs_body (Abs(_,_,t)) = strip_abs_body t | |
| 153 | | strip_abs_body u = u; | |
| 154 | ||
| 155 | ||
| 156 | (* maps (x1,...,xn)t to [x1, ..., xn] *) | |
| 157 | fun strip_abs_vars (Abs(a,T,t)) = (a,T) :: strip_abs_vars t | |
| 158 | | strip_abs_vars u = [] : (string*typ) list; | |
| 159 | ||
| 160 | ||
| 161 | fun strip_qnt_body qnt = | |
| 162 | let fun strip(tm as Const(c,_)$Abs(_,_,t)) = if c=qnt then strip t else tm | |
| 163 | | strip t = t | |
| 164 | in strip end; | |
| 165 | ||
| 166 | fun strip_qnt_vars qnt = | |
| 167 | let fun strip(Const(c,_)$Abs(a,T,t)) = if c=qnt then (a,T)::strip t else [] | |
| 168 | | strip t = [] : (string*typ) list | |
| 169 | in strip end; | |
| 170 | ||
| 171 | ||
| 172 | (* maps (f, [t1,...,tn]) to f(t1,...,tn) *) | |
| 173 | val list_comb : term * term list -> term = foldl (op $); | |
| 174 | ||
| 175 | ||
| 176 | (* maps f(t1,...,tn) to (f, [t1,...,tn]) ; naturally tail-recursive*) | |
| 177 | fun strip_comb u : term * term list = | |
| 178 | let fun stripc (f$t, ts) = stripc (f, t::ts) | |
| 179 | | stripc x = x | |
| 180 | in stripc(u,[]) end; | |
| 181 | ||
| 182 | ||
| 183 | (* maps f(t1,...,tn) to f , which is never a combination *) | |
| 184 | fun head_of (f$t) = head_of f | |
| 185 | | head_of u = u; | |
| 186 | ||
| 187 | ||
| 188 | (*Number of atoms and abstractions in a term*) | |
| 189 | fun size_of_term (Abs (_,_,body)) = 1 + size_of_term body | |
| 190 | | size_of_term (f$t) = size_of_term f + size_of_term t | |
| 191 | | size_of_term _ = 1; | |
| 192 | ||
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 193 | fun map_type_tvar f (Type(a,Ts)) = Type(a, map (map_type_tvar f) Ts) | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 194 | | map_type_tvar f (T as TFree _) = T | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 195 | | map_type_tvar f (TVar x) = f x; | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 196 | |
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 197 | fun map_type_tfree f (Type(a,Ts)) = Type(a, map (map_type_tfree f) Ts) | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 198 | | map_type_tfree f (TFree x) = f x | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 199 | | map_type_tfree f (T as TVar _) = T; | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 200 | |
| 0 | 201 | (* apply a function to all types in a term *) | 
| 202 | fun map_term_types f = | |
| 203 | let fun map(Const(a,T)) = Const(a, f T) | |
| 204 | | map(Free(a,T)) = Free(a, f T) | |
| 205 | | map(Var(v,T)) = Var(v, f T) | |
| 206 | | map(t as Bound _) = t | |
| 207 | | map(Abs(a,T,t)) = Abs(a, f T, map t) | |
| 208 | | map(f$t) = map f $ map t; | |
| 209 | in map end; | |
| 210 | ||
| 211 | (* iterate a function over all types in a term *) | |
| 212 | fun it_term_types f = | |
| 213 | let fun iter(Const(_,T), a) = f(T,a) | |
| 214 | | iter(Free(_,T), a) = f(T,a) | |
| 215 | | iter(Var(_,T), a) = f(T,a) | |
| 216 | | iter(Abs(_,T,t), a) = iter(t,f(T,a)) | |
| 217 | | iter(f$u, a) = iter(f, iter(u, a)) | |
| 218 | | iter(Bound _, a) = a | |
| 219 | in iter end | |
| 220 | ||
| 221 | ||
| 222 | (** Connectives of higher order logic **) | |
| 223 | ||
| 375 | 224 | val logicC: class = "logic"; | 
| 225 | val logicS: sort = [logicC]; | |
| 226 | ||
| 227 | fun itselfT ty = Type ("itself", [ty]);
 | |
| 228 | val a_itselfT = itselfT (TFree ("'a", logicS));
 | |
| 229 | ||
| 0 | 230 | val propT : typ = Type("prop",[]);
 | 
| 231 | ||
| 232 | val implies = Const("==>", propT-->propT-->propT);
 | |
| 233 | ||
| 234 | fun all T = Const("all", (T-->propT)-->propT);
 | |
| 235 | ||
| 236 | fun equals T = Const("==", T-->T-->propT);
 | |
| 237 | ||
| 238 | fun flexpair T = Const("=?=", T-->T-->propT);
 | |
| 239 | ||
| 240 | (* maps !!x1...xn. t to t *) | |
| 241 | fun strip_all_body (Const("all",_)$Abs(_,_,t))  =  strip_all_body t  
 | |
| 242 | | strip_all_body t = t; | |
| 243 | ||
| 244 | (* maps !!x1...xn. t to [x1, ..., xn] *) | |
| 245 | fun strip_all_vars (Const("all",_)$Abs(a,T,t))  =
 | |
| 1460 | 246 | (a,T) :: strip_all_vars t | 
| 0 | 247 | | strip_all_vars t = [] : (string*typ) list; | 
| 248 | ||
| 249 | (*increments a term's non-local bound variables | |
| 250 | required when moving a term within abstractions | |
| 251 | inc is increment for bound variables | |
| 252 | lev is level at which a bound variable is considered 'loose'*) | |
| 253 | fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u | |
| 254 | | incr_bv (inc, lev, Abs(a,T,body)) = | |
| 1460 | 255 | Abs(a, T, incr_bv(inc,lev+1,body)) | 
| 0 | 256 | | incr_bv (inc, lev, f$t) = | 
| 257 | incr_bv(inc,lev,f) $ incr_bv(inc,lev,t) | |
| 258 | | incr_bv (inc, lev, u) = u; | |
| 259 | ||
| 260 | fun incr_boundvars 0 t = t | |
| 261 | | incr_boundvars inc t = incr_bv(inc,0,t); | |
| 262 | ||
| 263 | ||
| 264 | (*Accumulate all 'loose' bound vars referring to level 'lev' or beyond. | |
| 265 | (Bound 0) is loose at level 0 *) | |
| 266 | fun add_loose_bnos (Bound i, lev, js) = | |
| 2176 | 267 | if i<lev then js else (i-lev) ins_int js | 
| 0 | 268 | | add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js) | 
| 269 | | add_loose_bnos (f$t, lev, js) = | |
| 1460 | 270 | add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) | 
| 0 | 271 | | add_loose_bnos (_, _, js) = js; | 
| 272 | ||
| 273 | fun loose_bnos t = add_loose_bnos (t, 0, []); | |
| 274 | ||
| 275 | (* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to | |
| 276 | level k or beyond. *) | |
| 277 | fun loose_bvar(Bound i,k) = i >= k | |
| 278 | | loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k) | |
| 279 | | loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1) | |
| 280 | | loose_bvar _ = false; | |
| 281 | ||
| 2792 | 282 | fun loose_bvar1(Bound i,k) = i = k | 
| 283 | | loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k) | |
| 284 | | loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1) | |
| 285 | | loose_bvar1 _ = false; | |
| 0 | 286 | |
| 287 | (*Substitute arguments for loose bound variables. | |
| 288 | Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi). | |
| 289 | Note that for ((x,y)c)(a,b), the bound vars in c are x=1 and y=0 | |
| 1460 | 290 | and the appropriate call is subst_bounds([b,a], c) . | 
| 0 | 291 | Loose bound variables >=n are reduced by "n" to | 
| 292 | compensate for the disappearance of lambdas. | |
| 293 | *) | |
| 294 | fun subst_bounds (args: term list, t) : term = | |
| 295 | let val n = length args; | |
| 296 | fun subst (t as Bound i, lev) = | |
| 2580 
e3f680709487
Gradual switching to Basis Library functions nth, drop, etc.
 paulson parents: 
2192diff
changeset | 297 | (if i<lev then t (*var is locally bound*) | 
| 
e3f680709487
Gradual switching to Basis Library functions nth, drop, etc.
 paulson parents: 
2192diff
changeset | 298 | else incr_boundvars lev (List.nth(args, i-lev)) | 
| 
e3f680709487
Gradual switching to Basis Library functions nth, drop, etc.
 paulson parents: 
2192diff
changeset | 299 | handle Subscript => Bound(i-n) (*loose: change it*)) | 
| 1460 | 300 | | subst (Abs(a,T,body), lev) = Abs(a, T, subst(body,lev+1)) | 
| 301 | | subst (f$t, lev) = subst(f,lev) $ subst(t,lev) | |
| 302 | | subst (t,lev) = t | |
| 0 | 303 | in case args of [] => t | _ => subst (t,0) end; | 
| 304 | ||
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 305 | (*Special case: one argument*) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 306 | fun subst_bound (arg, t) : term = | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 307 | let fun subst (t as Bound i, lev) = | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 308 | if i<lev then t (*var is locally bound*) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 309 | else if i=lev then incr_boundvars lev arg | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 310 | else Bound(i-1) (*loose: change it*) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 311 | | subst (Abs(a,T,body), lev) = Abs(a, T, subst(body,lev+1)) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 312 | | subst (f$t, lev) = subst(f,lev) $ subst(t,lev) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 313 | | subst (t,lev) = t | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 314 | in subst (t,0) end; | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 315 | |
| 0 | 316 | (*beta-reduce if possible, else form application*) | 
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 317 | fun betapply (Abs(_,_,t), u) = subst_bound (u,t) | 
| 0 | 318 | | betapply (f,u) = f$u; | 
| 319 | ||
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 320 | (** Equality, membership and insertion of indexnames (string*ints) **) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 321 | |
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 322 | (*optimized equality test for indexnames. Yields a huge gain under Poly/ML*) | 
| 2959 | 323 | fun eq_ix ((a, i):indexname, (a',i'):indexname) = (a=a') andalso i=i'; | 
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 324 | |
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 325 | (*membership in a list, optimized version for indexnames*) | 
| 2959 | 326 | fun mem_ix (_, []) = false | 
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 327 | | mem_ix (x, y :: ys) = eq_ix(x,y) orelse mem_ix (x, ys); | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 328 | |
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 329 | (*insertion into list, optimized version for indexnames*) | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 330 | fun ins_ix (x,xs) = if mem_ix (x, xs) then xs else x :: xs; | 
| 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 331 | |
| 0 | 332 | (*Tests whether 2 terms are alpha-convertible and have same type. | 
| 333 | Note that constants and Vars may have more than one type.*) | |
| 334 | fun (Const(a,T)) aconv (Const(b,U)) = a=b andalso T=U | |
| 2752 | 335 | | (Free(a,T)) aconv (Free(b,U)) = a=b andalso T=U | 
| 336 | | (Var(v,T)) aconv (Var(w,U)) = eq_ix(v,w) andalso T=U | |
| 337 | | (Bound i) aconv (Bound j) = i=j | |
| 0 | 338 | | (Abs(_,T,t)) aconv (Abs(_,U,u)) = t aconv u andalso T=U | 
| 2752 | 339 | | (f$t) aconv (g$u) = (f aconv g) andalso (t aconv u) | 
| 0 | 340 | | _ aconv _ = false; | 
| 341 | ||
| 2176 | 342 | (** Membership, insertion, union for terms **) | 
| 343 | ||
| 344 | fun mem_term (_, []) = false | |
| 345 | | mem_term (t, t'::ts) = t aconv t' orelse mem_term(t,ts); | |
| 346 | ||
| 2182 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 347 | fun subset_term ([], ys) = true | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 348 | | subset_term (x :: xs, ys) = mem_term (x, ys) andalso subset_term(xs, ys); | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 349 | |
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 350 | fun eq_set_term (xs, ys) = | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 351 | xs = ys orelse (subset_term (xs, ys) andalso subset_term (ys, xs)); | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 352 | |
| 2176 | 353 | fun ins_term(t,ts) = if mem_term(t,ts) then ts else t :: ts; | 
| 354 | ||
| 355 | fun union_term (xs, []) = xs | |
| 356 | | union_term ([], ys) = ys | |
| 357 | | union_term ((x :: xs), ys) = union_term (xs, ins_term (x, ys)); | |
| 358 | ||
| 359 | (** Equality, membership and insertion of sorts (string lists) **) | |
| 360 | ||
| 361 | fun eq_sort ([]:sort, []) = true | |
| 362 | | eq_sort ((s::ss), (t::ts)) = s=t andalso eq_sort(ss,ts) | |
| 363 | | eq_sort (_, _) = false; | |
| 364 | ||
| 365 | fun mem_sort (_:sort, []) = false | |
| 366 | | mem_sort (S, S'::Ss) = eq_sort (S, S') orelse mem_sort(S,Ss); | |
| 367 | ||
| 368 | fun ins_sort(S,Ss) = if mem_sort(S,Ss) then Ss else S :: Ss; | |
| 369 | ||
| 370 | fun union_sort (xs, []) = xs | |
| 371 | | union_sort ([], ys) = ys | |
| 372 | | union_sort ((x :: xs), ys) = union_sort (xs, ins_sort (x, ys)); | |
| 373 | ||
| 2182 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 374 | fun subset_sort ([], ys) = true | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 375 | | subset_sort (x :: xs, ys) = mem_sort (x, ys) andalso subset_sort(xs, ys); | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 376 | |
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 377 | fun eq_set_sort (xs, ys) = | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 378 | xs = ys orelse (subset_sort (xs, ys) andalso subset_sort (ys, xs)); | 
| 
29e56f003599
Removal of polymorphic equality via mem, subset, eq_set, etc
 paulson parents: 
2176diff
changeset | 379 | |
| 0 | 380 | (*are two term lists alpha-convertible in corresponding elements?*) | 
| 381 | fun aconvs ([],[]) = true | |
| 382 | | aconvs (t::ts, u::us) = t aconv u andalso aconvs(ts,us) | |
| 383 | | aconvs _ = false; | |
| 384 | ||
| 385 | (*A fast unification filter: true unless the two terms cannot be unified. | |
| 386 | Terms must be NORMAL. Treats all Vars as distinct. *) | |
| 387 | fun could_unify (t,u) = | |
| 388 | let fun matchrands (f$t, g$u) = could_unify(t,u) andalso matchrands(f,g) | |
| 1460 | 389 | | matchrands _ = true | 
| 0 | 390 | in case (head_of t , head_of u) of | 
| 1460 | 391 | (_, Var _) => true | 
| 0 | 392 | | (Var _, _) => true | 
| 393 | | (Const(a,_), Const(b,_)) => a=b andalso matchrands(t,u) | |
| 394 | | (Free(a,_), Free(b,_)) => a=b andalso matchrands(t,u) | |
| 395 | | (Bound i, Bound j) => i=j andalso matchrands(t,u) | |
| 396 | | (Abs _, _) => true (*because of possible eta equality*) | |
| 397 | | (_, Abs _) => true | |
| 398 | | _ => false | |
| 399 | end; | |
| 400 | ||
| 401 | (*Substitute new for free occurrences of old in a term*) | |
| 402 | fun subst_free [] = (fn t=>t) | |
| 403 | | subst_free pairs = | |
| 404 | let fun substf u = | |
| 1460 | 405 | case gen_assoc (op aconv) (pairs, u) of | 
| 406 | Some u' => u' | |
| 407 | | None => (case u of Abs(a,T,t) => Abs(a, T, substf t) | |
| 408 | | t$u' => substf t $ substf u' | |
| 409 | | _ => u) | |
| 0 | 410 | in substf end; | 
| 411 | ||
| 412 | (*a total, irreflexive ordering on index names*) | |
| 413 | fun xless ((a,i), (b,j): indexname) = i<j orelse (i=j andalso a<b); | |
| 414 | ||
| 415 | ||
| 416 | (*Abstraction of the term "body" over its occurrences of v, | |
| 417 | which must contain no loose bound variables. | |
| 418 | The resulting term is ready to become the body of an Abs.*) | |
| 419 | fun abstract_over (v,body) = | |
| 420 | let fun abst (lev,u) = if (v aconv u) then (Bound lev) else | |
| 421 | (case u of | |
| 422 | Abs(a,T,t) => Abs(a, T, abst(lev+1, t)) | |
| 1460 | 423 | | f$rand => abst(lev,f) $ abst(lev,rand) | 
| 424 | | _ => u) | |
| 0 | 425 | in abst(0,body) end; | 
| 426 | ||
| 427 | ||
| 428 | (*Form an abstraction over a free variable.*) | |
| 429 | fun absfree (a,T,body) = Abs(a, T, abstract_over (Free(a,T), body)); | |
| 430 | ||
| 431 | (*Abstraction over a list of free variables*) | |
| 432 | fun list_abs_free ([ ] , t) = t | |
| 433 | | list_abs_free ((a,T)::vars, t) = | |
| 434 | absfree(a, T, list_abs_free(vars,t)); | |
| 435 | ||
| 436 | (*Quantification over a list of free variables*) | |
| 437 | fun list_all_free ([], t: term) = t | |
| 438 | | list_all_free ((a,T)::vars, t) = | |
| 439 | (all T) $ (absfree(a, T, list_all_free(vars,t))); | |
| 440 | ||
| 441 | (*Quantification over a list of variables (already bound in body) *) | |
| 442 | fun list_all ([], t) = t | |
| 443 | | list_all ((a,T)::vars, t) = | |
| 444 | (all T) $ (Abs(a, T, list_all(vars,t))); | |
| 445 | ||
| 446 | (*Replace the ATOMIC term ti by ui; instl = [(t1,u1), ..., (tn,un)]. | |
| 447 | A simultaneous substitution: [ (a,b), (b,a) ] swaps a and b. *) | |
| 448 | fun subst_atomic [] t = t : term | |
| 449 | | subst_atomic (instl: (term*term) list) t = | |
| 450 | let fun subst (Abs(a,T,body)) = Abs(a, T, subst body) | |
| 1460 | 451 | | subst (f$t') = subst f $ subst t' | 
| 452 | | subst t = (case assoc(instl,t) of | |
| 453 | Some u => u | None => t) | |
| 0 | 454 | in subst t end; | 
| 455 | ||
| 728 
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
 lcp parents: 
375diff
changeset | 456 | (*Substitute for type Vars in a type*) | 
| 0 | 457 | fun typ_subst_TVars iTs T = if null iTs then T else | 
| 458 | let fun subst(Type(a,Ts)) = Type(a, map subst Ts) | |
| 1460 | 459 | | subst(T as TFree _) = T | 
| 460 | | subst(T as TVar(ixn,_)) = | |
| 0 | 461 | (case assoc(iTs,ixn) of None => T | Some(U) => U) | 
| 462 | in subst T end; | |
| 463 | ||
| 728 
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
 lcp parents: 
375diff
changeset | 464 | (*Substitute for type Vars in a term*) | 
| 0 | 465 | val subst_TVars = map_term_types o typ_subst_TVars; | 
| 466 | ||
| 728 
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
 lcp parents: 
375diff
changeset | 467 | (*Substitute for Vars in a term; see also envir/norm_term*) | 
| 0 | 468 | fun subst_Vars itms t = if null itms then t else | 
| 469 | let fun subst(v as Var(ixn,_)) = | |
| 470 | (case assoc(itms,ixn) of None => v | Some t => t) | |
| 471 | | subst(Abs(a,T,t)) = Abs(a,T,subst t) | |
| 472 | | subst(f$t) = subst f $ subst t | |
| 473 | | subst(t) = t | |
| 474 | in subst t end; | |
| 475 | ||
| 728 
9a973c3ba350
Pure/term: commented typ_subst_TVars, subst_TVars, subst_Vars, subst_vars
 lcp parents: 
375diff
changeset | 476 | (*Substitute for type/term Vars in a term; see also envir/norm_term*) | 
| 0 | 477 | fun subst_vars(iTs,itms) = if null iTs then subst_Vars itms else | 
| 478 | let fun subst(Const(a,T)) = Const(a,typ_subst_TVars iTs T) | |
| 479 | | subst(Free(a,T)) = Free(a,typ_subst_TVars iTs T) | |
| 480 | | subst(v as Var(ixn,T)) = (case assoc(itms,ixn) of | |
| 481 | None => Var(ixn,typ_subst_TVars iTs T) | |
| 482 | | Some t => t) | |
| 483 | | subst(b as Bound _) = b | |
| 484 | | subst(Abs(a,T,t)) = Abs(a,typ_subst_TVars iTs T,subst t) | |
| 485 | | subst(f$t) = subst f $ subst t | |
| 486 | in subst end; | |
| 487 | ||
| 488 | ||
| 489 | (*Computing the maximum index of a typ*) | |
| 2146 | 490 | fun maxidx_of_typ(Type(_,Ts)) = maxidx_of_typs Ts | 
| 0 | 491 | | maxidx_of_typ(TFree _) = ~1 | 
| 2146 | 492 | | maxidx_of_typ(TVar((_,i),_)) = i | 
| 493 | and maxidx_of_typs [] = ~1 | |
| 494 | | maxidx_of_typs (T::Ts) = Int.max(maxidx_of_typ T, maxidx_of_typs Ts); | |
| 0 | 495 | |
| 496 | ||
| 497 | (*Computing the maximum index of a term*) | |
| 498 | fun maxidx_of_term (Const(_,T)) = maxidx_of_typ T | |
| 499 | | maxidx_of_term (Bound _) = ~1 | |
| 500 | | maxidx_of_term (Free(_,T)) = maxidx_of_typ T | |
| 2146 | 501 | | maxidx_of_term (Var ((_,i), T)) = Int.max(i, maxidx_of_typ T) | 
| 502 | | maxidx_of_term (Abs (_,T,u)) = Int.max(maxidx_of_term u, maxidx_of_typ T) | |
| 503 | | maxidx_of_term (f$t) = Int.max(maxidx_of_term f, maxidx_of_term t); | |
| 0 | 504 | |
| 505 | ||
| 506 | (* Increment the index of all Poly's in T by k *) | |
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 507 | fun incr_tvar k = map_type_tvar (fn ((a,i),S) => TVar((a,i+k),S)); | 
| 0 | 508 | |
| 509 | ||
| 510 | (**** Syntax-related declarations ****) | |
| 511 | ||
| 512 | ||
| 513 | (*Dummy type for parsing. Will be replaced during type inference. *) | |
| 514 | val dummyT = Type("dummy",[]);
 | |
| 515 | ||
| 516 | (*scan a numeral of the given radix, normally 10*) | |
| 517 | fun scan_radixint (radix: int, cs) : int * string list = | |
| 518 | let val zero = ord"0" | |
| 519 | val limit = zero+radix | |
| 520 | fun scan (num,[]) = (num,[]) | |
| 1460 | 521 | | scan (num, c::cs) = | 
| 522 | if zero <= ord c andalso ord c < limit | |
| 523 | then scan(radix*num + ord c - zero, cs) | |
| 524 | else (num, c::cs) | |
| 0 | 525 | in scan(0,cs) end; | 
| 526 | ||
| 527 | fun scan_int cs = scan_radixint(10,cs); | |
| 528 | ||
| 529 | ||
| 530 | (*** Printing ***) | |
| 531 | ||
| 532 | ||
| 533 | (*Makes a variant of the name c distinct from the names in bs. | |
| 534 | First attaches the suffix "a" and then increments this. *) | |
| 535 | fun variant bs c : string = | |
| 2138 
056dead45ae8
Changed some mem calls to mem_string for greater efficiency (not that it could matter)
 paulson parents: 
1460diff
changeset | 536 | let fun vary2 c = if (c mem_string bs) then vary2 (bump_string c) else c | 
| 
056dead45ae8
Changed some mem calls to mem_string for greater efficiency (not that it could matter)
 paulson parents: 
1460diff
changeset | 537 | fun vary1 c = if (c mem_string bs) then vary2 (c ^ "a") else c | 
| 0 | 538 | in vary1 (if c="" then "u" else c) end; | 
| 539 | ||
| 540 | (*Create variants of the list of names, with priority to the first ones*) | |
| 541 | fun variantlist ([], used) = [] | |
| 542 | | variantlist(b::bs, used) = | |
| 543 | let val b' = variant used b | |
| 544 | in b' :: variantlist (bs, b'::used) end; | |
| 545 | ||
| 546 | (** TFrees and TVars **) | |
| 547 | ||
| 548 | (*maps (bs,v) to v'::bs this reverses the identifiers bs*) | |
| 549 | fun add_new_id (bs, c) : string list = variant bs c :: bs; | |
| 550 | ||
| 551 | (*Accumulates the names in the term, suppressing duplicates. | |
| 552 | Includes Frees and Consts. For choosing unambiguous bound var names.*) | |
| 2176 | 553 | fun add_term_names (Const(a,_), bs) = a ins_string bs | 
| 554 | | add_term_names (Free(a,_), bs) = a ins_string bs | |
| 0 | 555 | | add_term_names (f$u, bs) = add_term_names (f, add_term_names(u, bs)) | 
| 556 | | add_term_names (Abs(_,_,t), bs) = add_term_names(t,bs) | |
| 557 | | add_term_names (_, bs) = bs; | |
| 558 | ||
| 559 | (*Accumulates the TVars in a type, suppressing duplicates. *) | |
| 560 | fun add_typ_tvars(Type(_,Ts),vs) = foldr add_typ_tvars (Ts,vs) | |
| 561 | | add_typ_tvars(TFree(_),vs) = vs | |
| 562 | | add_typ_tvars(TVar(v),vs) = v ins vs; | |
| 563 | ||
| 564 | (*Accumulates the TFrees in a type, suppressing duplicates. *) | |
| 565 | fun add_typ_tfree_names(Type(_,Ts),fs) = foldr add_typ_tfree_names (Ts,fs) | |
| 2176 | 566 | | add_typ_tfree_names(TFree(f,_),fs) = f ins_string fs | 
| 0 | 567 | | add_typ_tfree_names(TVar(_),fs) = fs; | 
| 568 | ||
| 569 | fun add_typ_tfrees(Type(_,Ts),fs) = foldr add_typ_tfrees (Ts,fs) | |
| 570 | | add_typ_tfrees(TFree(f),fs) = f ins fs | |
| 571 | | add_typ_tfrees(TVar(_),fs) = fs; | |
| 572 | ||
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 573 | fun add_typ_varnames(Type(_,Ts),nms) = foldr add_typ_varnames (Ts,nms) | 
| 2176 | 574 | | add_typ_varnames(TFree(nm,_),nms) = nm ins_string nms | 
| 575 | | add_typ_varnames(TVar((nm,_),_),nms) = nm ins_string nms; | |
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 576 | |
| 0 | 577 | (*Accumulates the TVars in a term, suppressing duplicates. *) | 
| 578 | val add_term_tvars = it_term_types add_typ_tvars; | |
| 579 | ||
| 580 | (*Accumulates the TFrees in a term, suppressing duplicates. *) | |
| 581 | val add_term_tfrees = it_term_types add_typ_tfrees; | |
| 582 | val add_term_tfree_names = it_term_types add_typ_tfree_names; | |
| 583 | ||
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 584 | val add_term_tvarnames = it_term_types add_typ_varnames; | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 585 | |
| 0 | 586 | (*Non-list versions*) | 
| 587 | fun typ_tfrees T = add_typ_tfrees(T,[]); | |
| 588 | fun typ_tvars T = add_typ_tvars(T,[]); | |
| 589 | fun term_tfrees t = add_term_tfrees(t,[]); | |
| 590 | fun term_tvars t = add_term_tvars(t,[]); | |
| 591 | ||
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 592 | (*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 | 593 | |
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 594 | fun add_typ_ixns(ixns,Type(_,Ts)) = foldl add_typ_ixns (ixns,Ts) | 
| 2176 | 595 | | add_typ_ixns(ixns,TVar(ixn,_)) = if mem_ix (ixn, ixns) then ixns | 
| 596 | else ixns@[ixn] | |
| 949 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 597 | | add_typ_ixns(ixns,TFree(_)) = ixns; | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 598 | |
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 599 | 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 | 600 | | 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 | 601 | | 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 | 602 | | add_term_tvar_ixns(Bound _,ixns) = ixns | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 603 | | add_term_tvar_ixns(Abs(_,T,t),ixns) = | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 604 | add_term_tvar_ixns(t,add_typ_ixns(ixns,T)) | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 605 | | add_term_tvar_ixns(f$t,ixns) = | 
| 
83c588d6fee9
Changed treatment of during type inference internally generated type
 nipkow parents: 
728diff
changeset | 606 | 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 | 607 | |
| 0 | 608 | (** Frees and Vars **) | 
| 609 | ||
| 610 | (*a partial ordering (not reflexive) for atomic terms*) | |
| 611 | fun atless (Const (a,_), Const (b,_)) = a<b | |
| 612 | | atless (Free (a,_), Free (b,_)) = a<b | |
| 613 | | atless (Var(v,_), Var(w,_)) = xless(v,w) | |
| 614 | | atless (Bound i, Bound j) = i<j | |
| 615 | | atless _ = false; | |
| 616 | ||
| 617 | (*insert atomic term into partially sorted list, suppressing duplicates (?)*) | |
| 618 | fun insert_aterm (t,us) = | |
| 619 | let fun inserta [] = [t] | |
| 620 | | inserta (us as u::us') = | |
| 1460 | 621 | if atless(t,u) then t::us | 
| 622 | else if t=u then us (*duplicate*) | |
| 623 | else u :: inserta(us') | |
| 0 | 624 | in inserta us end; | 
| 625 | ||
| 626 | (*Accumulates the Vars in the term, suppressing duplicates*) | |
| 627 | fun add_term_vars (t, vars: term list) = case t of | |
| 628 | Var _ => insert_aterm(t,vars) | |
| 629 | | Abs (_,_,body) => add_term_vars(body,vars) | |
| 630 | | f$t => add_term_vars (f, add_term_vars(t, vars)) | |
| 631 | | _ => vars; | |
| 632 | ||
| 633 | fun term_vars t = add_term_vars(t,[]); | |
| 634 | ||
| 635 | (*Accumulates the Frees in the term, suppressing duplicates*) | |
| 636 | fun add_term_frees (t, frees: term list) = case t of | |
| 637 | Free _ => insert_aterm(t,frees) | |
| 638 | | Abs (_,_,body) => add_term_frees(body,frees) | |
| 639 | | f$t => add_term_frees (f, add_term_frees(t, frees)) | |
| 640 | | _ => frees; | |
| 641 | ||
| 642 | fun term_frees t = add_term_frees(t,[]); | |
| 643 | ||
| 644 | (*Given an abstraction over P, replaces the bound variable by a Free variable | |
| 645 | having a unique name. *) | |
| 646 | fun variant_abs (a,T,P) = | |
| 647 | let val b = variant (add_term_names(P,[])) a | |
| 2192 
3bf092b5310b
Optimizations: removal of polymorphic equality; one-argument case
 paulson parents: 
2182diff
changeset | 648 | in (b, subst_bound (Free(b,T), P)) end; | 
| 0 | 649 | |
| 650 | (* renames and reverses the strings in vars away from names *) | |
| 651 | fun rename_aTs names vars : (string*typ)list = | |
| 652 | let fun rename_aT (vars,(a,T)) = | |
| 1460 | 653 | (variant (map #1 vars @ names) a, T) :: vars | 
| 0 | 654 | in foldl rename_aT ([],vars) end; | 
| 655 | ||
| 656 | fun rename_wrt_term t = rename_aTs (add_term_names(t,[])); | |
| 1364 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 657 | |
| 1417 | 658 | |
| 659 | ||
| 1426 | 660 | (*** Compression of terms and types by sharing common subtrees. | 
| 661 | Saves 50-75% on storage requirements. As it is fairly slow, | |
| 662 | it is called only for axioms, stored theorems, etc. ***) | |
| 1417 | 663 | |
| 664 | (** Sharing of types **) | |
| 665 | ||
| 666 | fun atomic_tag (Type (a,_)) = if a<>"fun" then a else raise Match | |
| 667 | | atomic_tag (TFree (a,_)) = a | |
| 668 | | atomic_tag (TVar ((a,_),_)) = a; | |
| 669 | ||
| 670 | fun type_tag (Type("fun",[S,T])) = atomic_tag S ^ type_tag T
 | |
| 671 | | type_tag T = atomic_tag T; | |
| 672 | ||
| 673 | val memo_types = ref (Symtab.null : typ list Symtab.table); | |
| 674 | ||
| 675 | fun find_type (T, []: typ list) = None | |
| 676 | | find_type (T, T'::Ts) = | |
| 677 | if T=T' then Some T' | |
| 678 | else find_type (T, Ts); | |
| 679 | ||
| 680 | fun compress_type T = | |
| 681 | let val tag = type_tag T | |
| 682 | val tylist = the (Symtab.lookup (!memo_types, tag)) | |
| 1460 | 683 | handle _ => [] | 
| 1417 | 684 | in | 
| 685 | case find_type (T,tylist) of | |
| 1460 | 686 | Some T' => T' | 
| 1417 | 687 | | None => | 
| 1460 | 688 | let val T' = | 
| 689 | case T of | |
| 690 | Type (a,Ts) => Type (a, map compress_type Ts) | |
| 691 | | _ => T | |
| 692 | in memo_types := Symtab.update ((tag, T'::tylist), !memo_types); | |
| 693 | T | |
| 694 | end | |
| 1417 | 695 | end | 
| 696 | handle Match => | |
| 697 | let val Type (a,Ts) = T | |
| 698 | in Type (a, map compress_type Ts) end; | |
| 699 | ||
| 700 | (** Sharing of atomic terms **) | |
| 701 | ||
| 702 | val memo_terms = ref (Symtab.null : term list Symtab.table); | |
| 703 | ||
| 704 | fun find_term (t, []: term list) = None | |
| 705 | | find_term (t, t'::ts) = | |
| 706 | if t=t' then Some t' | |
| 707 | else find_term (t, ts); | |
| 708 | ||
| 709 | fun const_tag (Const (a,_)) = a | |
| 710 | | const_tag (Free (a,_)) = a | |
| 711 | | const_tag (Var ((a,i),_)) = a | |
| 712 | | const_tag (t as Bound _) = ".B."; | |
| 713 | ||
| 714 | fun share_term (t $ u) = share_term t $ share_term u | |
| 715 | | share_term (Abs (a,T,u)) = Abs (a, T, share_term u) | |
| 716 | | share_term t = | |
| 717 | let val tag = const_tag t | |
| 1460 | 718 | val ts = the (Symtab.lookup (!memo_terms, tag)) | 
| 719 | handle _ => [] | |
| 1417 | 720 | in | 
| 1460 | 721 | case find_term (t,ts) of | 
| 722 | Some t' => t' | |
| 723 | | None => (memo_terms := Symtab.update ((tag, t::ts), !memo_terms); | |
| 724 | t) | |
| 1417 | 725 | end; | 
| 726 | ||
| 727 | val compress_term = share_term o map_term_types compress_type; | |
| 728 | ||
| 1364 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 729 | end; | 
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 730 | |
| 
8ea1a962ad72
files now define a structure to allow SML/NJ to optimize the code
 clasohm parents: 
1029diff
changeset | 731 | open Term; |