src/Pure/term.ML
author wenzelm
Fri, 19 Dec 1997 10:16:16 +0100
changeset 4444 fa05a79b3e97
parent 4286 a09e3e6da2de
child 4464 7a8150506746
permissions -rw-r--r--
term order;
signature;
clasohm@1460
     1
(*  Title: 	Pure/term.ML
clasohm@0
     2
    ID:         $Id$
clasohm@1460
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
clasohm@0
     4
    Copyright   Cambridge University 1992
clasohm@1364
     5
wenzelm@4444
     6
Simply typed lambda-calculus: types, terms, and basic operations.
clasohm@0
     7
*)
clasohm@0
     8
clasohm@1364
     9
infix 9  $;
clasohm@1364
    10
infixr 5 -->;
wenzelm@4444
    11
infixr --->;
wenzelm@4444
    12
infix aconv;
clasohm@0
    13
wenzelm@4444
    14
signature BASIC_TERM =
wenzelm@4444
    15
sig
wenzelm@4444
    16
  type indexname
wenzelm@4444
    17
  type class
wenzelm@4444
    18
  type sort
wenzelm@4444
    19
  datatype typ =
wenzelm@4444
    20
    Type  of string * typ list |
wenzelm@4444
    21
    TFree of string * sort |
wenzelm@4444
    22
    TVar  of indexname * sort
wenzelm@4444
    23
  val --> : typ * typ -> typ
wenzelm@4444
    24
  val ---> : typ list * typ -> typ
wenzelm@4444
    25
  val is_TVar: typ -> bool
wenzelm@4444
    26
  val domain_type: typ -> typ
wenzelm@4444
    27
  val binder_types: typ -> typ list
wenzelm@4444
    28
  val body_type: typ -> typ
wenzelm@4444
    29
  val strip_type: typ -> typ list * typ
wenzelm@4444
    30
  datatype term =
wenzelm@4444
    31
    Const of string * typ |
wenzelm@4444
    32
    Free of string * typ |
wenzelm@4444
    33
    Var of indexname * typ |
wenzelm@4444
    34
    Bound of int |
wenzelm@4444
    35
    Abs of string * typ * term |
wenzelm@4444
    36
    op $ of term * term
wenzelm@4444
    37
  exception TYPE of string * typ list * term list
wenzelm@4444
    38
  exception TERM of string * term list
wenzelm@4444
    39
  val is_Const: term -> bool
wenzelm@4444
    40
  val is_Free: term -> bool
wenzelm@4444
    41
  val is_Var: term -> bool
wenzelm@4444
    42
  val dest_Const: term -> string * typ
wenzelm@4444
    43
  val dest_Free: term -> string * typ
wenzelm@4444
    44
  val dest_Var: term -> indexname * typ
wenzelm@4444
    45
  val type_of: term -> typ
wenzelm@4444
    46
  val type_of1: typ list * term -> typ
wenzelm@4444
    47
  val fastype_of: term -> typ
wenzelm@4444
    48
  val fastype_of1: typ list * term -> typ
wenzelm@4444
    49
  val strip_abs_body: term -> term
wenzelm@4444
    50
  val strip_abs_vars: term -> (string * typ) list
wenzelm@4444
    51
  val strip_qnt_body: string -> term -> term
wenzelm@4444
    52
  val strip_qnt_vars: string -> term -> (string * typ) list
wenzelm@4444
    53
  val list_comb: term * term list -> term
wenzelm@4444
    54
  val strip_comb: term -> term * term list
wenzelm@4444
    55
  val head_of: term -> term
wenzelm@4444
    56
  val size_of_term: term -> int
wenzelm@4444
    57
  val map_type_tvar: (indexname * sort -> typ) -> typ -> typ
wenzelm@4444
    58
  val map_type_tfree: (string * sort -> typ) -> typ -> typ
wenzelm@4444
    59
  val map_term_types: (typ -> typ) -> term -> term
wenzelm@4444
    60
  val it_term_types: (typ * 'a -> 'a) -> term * 'a -> 'a
wenzelm@4444
    61
  val map_typ: (class -> class) -> (string -> string) -> typ -> typ
wenzelm@4444
    62
  val map_term:
wenzelm@4444
    63
     (class -> class) ->
wenzelm@4444
    64
     (string -> string) -> (string -> string) -> term -> term
wenzelm@4444
    65
  val foldl_atyps: ('a * typ -> 'a) -> 'a * typ -> 'a
wenzelm@4444
    66
  val foldl_types: ('a * typ -> 'a) -> 'a * term -> 'a
wenzelm@4444
    67
  val foldl_aterms: ('a * term -> 'a) -> 'a * term -> 'a
wenzelm@4444
    68
  val dummyT: typ
wenzelm@4444
    69
  val logicC: class
wenzelm@4444
    70
  val logicS: sort
wenzelm@4444
    71
  val itselfT: typ -> typ
wenzelm@4444
    72
  val a_itselfT: typ
wenzelm@4444
    73
  val propT: typ
wenzelm@4444
    74
  val implies: term
wenzelm@4444
    75
  val all: typ -> term
wenzelm@4444
    76
  val equals: typ -> term
wenzelm@4444
    77
  val flexpair: typ -> term
wenzelm@4444
    78
  val strip_all_body: term -> term
wenzelm@4444
    79
  val strip_all_vars: term -> (string * typ) list
wenzelm@4444
    80
  val incr_bv: int * int * term -> term
wenzelm@4444
    81
  val incr_boundvars: int -> term -> term
wenzelm@4444
    82
  val add_loose_bnos: term * int * int list -> int list
wenzelm@4444
    83
  val loose_bnos: term -> int list
wenzelm@4444
    84
  val loose_bvar: term * int -> bool
wenzelm@4444
    85
  val loose_bvar1: term * int -> bool
wenzelm@4444
    86
  val subst_bounds: term list * term -> term
wenzelm@4444
    87
  val subst_bound: term * term -> term
wenzelm@4444
    88
  val subst_TVars: (indexname * typ) list -> term -> term
wenzelm@4444
    89
  val betapply: term * term -> term
wenzelm@4444
    90
  val eq_ix: indexname * indexname -> bool
wenzelm@4444
    91
  val ins_ix: indexname * indexname list -> indexname list
wenzelm@4444
    92
  val mem_ix: indexname * indexname list -> bool
wenzelm@4444
    93
  val eq_sort: sort * class list -> bool
wenzelm@4444
    94
  val mem_sort: sort * class list list -> bool
wenzelm@4444
    95
  val subset_sort: sort list * class list list -> bool
wenzelm@4444
    96
  val eq_set_sort: sort list * sort list -> bool
wenzelm@4444
    97
  val ins_sort: sort * class list list -> class list list
wenzelm@4444
    98
  val union_sort: sort list * sort list -> sort list
wenzelm@4444
    99
  val aconv: term * term -> bool
wenzelm@4444
   100
  val aconvs: term list * term list -> bool
wenzelm@4444
   101
  val mem_term: term * term list -> bool
wenzelm@4444
   102
  val subset_term: term list * term list -> bool
wenzelm@4444
   103
  val eq_set_term: term list * term list -> bool
wenzelm@4444
   104
  val ins_term: term * term list -> term list
wenzelm@4444
   105
  val union_term: term list * term list -> term list
wenzelm@4444
   106
  val could_unify: term * term -> bool
wenzelm@4444
   107
  val subst_free: (term * term) list -> term -> term
wenzelm@4444
   108
  val subst_atomic: (term * term) list -> term -> term
wenzelm@4444
   109
  val subst_vars: (indexname * typ) list * (indexname * term) list -> term -> term
wenzelm@4444
   110
  val typ_subst_TVars: (indexname * typ) list -> typ -> typ
wenzelm@4444
   111
  val subst_Vars: (indexname * term) list -> term -> term
wenzelm@4444
   112
  val incr_tvar: int -> typ -> typ
wenzelm@4444
   113
  val xless: (string * int) * indexname -> bool
wenzelm@4444
   114
  val atless: term * term -> bool
wenzelm@4444
   115
  val insert_aterm: term * term list -> term list
wenzelm@4444
   116
  val abstract_over: term * term -> term
wenzelm@4444
   117
  val absfree: string * typ * term -> term
wenzelm@4444
   118
  val list_abs_free: (string * typ) list * term -> term
wenzelm@4444
   119
  val list_all_free: (string * typ) list * term -> term
wenzelm@4444
   120
  val list_all: (string * typ) list * term -> term
wenzelm@4444
   121
  val maxidx_of_typ: typ -> int
wenzelm@4444
   122
  val maxidx_of_typs: typ list -> int
wenzelm@4444
   123
  val maxidx_of_term: term -> int
wenzelm@4444
   124
  val scan_radixint: int * string list -> int * string list
wenzelm@4444
   125
  val scan_int: string list -> int * string list
wenzelm@4444
   126
  val variant: string list -> string -> string
wenzelm@4444
   127
  val variantlist: string list * string list -> string list
wenzelm@4444
   128
  val variant_abs: string * typ * term -> string * term
wenzelm@4444
   129
  val rename_wrt_term: term -> (string * typ) list -> (string * typ) list
wenzelm@4444
   130
  val add_new_id: string list * string -> string list
wenzelm@4444
   131
  val add_typ_classes: typ * class list -> class list
wenzelm@4444
   132
  val add_typ_ixns: indexname list * typ -> indexname list
wenzelm@4444
   133
  val add_typ_tfree_names: typ * string list -> string list
wenzelm@4444
   134
  val add_typ_tfrees: typ * (string * sort) list -> (string * sort) list
wenzelm@4444
   135
  val typ_tfrees: typ -> (string * sort) list
wenzelm@4444
   136
  val add_typ_tvars: typ * (indexname * sort) list -> (indexname * sort) list
wenzelm@4444
   137
  val typ_tvars: typ -> (indexname * sort) list
wenzelm@4444
   138
  val add_typ_tycons: typ * string list -> string list
wenzelm@4444
   139
  val add_typ_varnames: typ * string list -> string list
wenzelm@4444
   140
  val add_term_classes: term * class list -> class list
wenzelm@4444
   141
  val add_term_consts: term * string list -> string list
wenzelm@4444
   142
  val add_term_frees: term * term list -> term list
wenzelm@4444
   143
  val term_frees: term -> term list
wenzelm@4444
   144
  val add_term_names: term * string list -> string list
wenzelm@4444
   145
  val add_term_tfree_names: term * string list -> string list
wenzelm@4444
   146
  val add_term_tfrees: term * (string * sort) list -> (string * sort) list
wenzelm@4444
   147
  val term_tfrees: term -> (string * sort) list
wenzelm@4444
   148
  val add_term_tvar_ixns: term * indexname list -> indexname list
wenzelm@4444
   149
  val add_term_tvarnames: term * string list -> string list
wenzelm@4444
   150
  val add_term_tvars: term * (indexname * sort) list -> (indexname * sort) list
wenzelm@4444
   151
  val term_tvars: term -> (indexname * sort) list
wenzelm@4444
   152
  val add_term_tycons: term * string list -> string list
wenzelm@4444
   153
  val add_term_vars: term * term list -> term list
wenzelm@4444
   154
  val term_vars: term -> term list
wenzelm@4444
   155
  val exists_Const: (string * typ -> bool) -> term -> bool
wenzelm@4444
   156
  val compress_type: typ -> typ
wenzelm@4444
   157
  val compress_term: term -> term
wenzelm@4444
   158
end;
clasohm@0
   159
wenzelm@4444
   160
signature TERM =
wenzelm@4444
   161
sig
wenzelm@4444
   162
  include BASIC_TERM
wenzelm@4444
   163
  val indexname_ord: indexname * indexname -> order
wenzelm@4444
   164
  val typ_ord: typ * typ -> order
wenzelm@4444
   165
  val typs_ord: typ list * typ list -> order
wenzelm@4444
   166
  val term_ord: term * term -> order
wenzelm@4444
   167
  val terms_ord: term list * term list -> order
wenzelm@4444
   168
  val termless: term * term -> bool
wenzelm@4444
   169
end;
wenzelm@4444
   170
wenzelm@4444
   171
structure Term: TERM =
clasohm@1364
   172
struct
clasohm@0
   173
clasohm@0
   174
(*Indexnames can be quickly renamed by adding an offset to the integer part,
clasohm@0
   175
  for resolution.*)
clasohm@0
   176
type indexname = string*int;
clasohm@0
   177
clasohm@0
   178
(* Types are classified by classes. *)
clasohm@0
   179
type class = string;
clasohm@0
   180
type sort  = class list;
clasohm@0
   181
clasohm@0
   182
(* The sorts attached to TFrees and TVars specify the sort of that variable *)
clasohm@0
   183
datatype typ = Type  of string * typ list
clasohm@0
   184
             | TFree of string * sort
clasohm@1460
   185
	     | TVar  of indexname * sort;
clasohm@0
   186
clasohm@0
   187
fun S --> T = Type("fun",[S,T]);
clasohm@0
   188
clasohm@0
   189
(*handy for multiple args: [T1,...,Tn]--->T  gives  T1-->(T2--> ... -->T)*)
clasohm@0
   190
val op ---> = foldr (op -->);
clasohm@0
   191
clasohm@0
   192
clasohm@0
   193
(*terms.  Bound variables are indicated by depth number.
clasohm@0
   194
  Free variables, (scheme) variables and constants have names.
clasohm@0
   195
  An term is "closed" if there every bound variable of level "lev"
clasohm@0
   196
  is enclosed by at least "lev" abstractions. 
clasohm@0
   197
clasohm@0
   198
  It is possible to create meaningless terms containing loose bound vars
clasohm@0
   199
  or type mismatches.  But such terms are not allowed in rules. *)
clasohm@0
   200
clasohm@0
   201
clasohm@0
   202
clasohm@0
   203
datatype term = 
clasohm@0
   204
    Const of string * typ
clasohm@0
   205
  | Free  of string * typ 
clasohm@0
   206
  | Var   of indexname * typ
clasohm@0
   207
  | Bound of int
clasohm@0
   208
  | Abs   of string*typ*term
wenzelm@3965
   209
  | op $  of term*term;
clasohm@0
   210
clasohm@0
   211
clasohm@0
   212
(*For errors involving type mismatches*)
clasohm@0
   213
exception TYPE of string * typ list * term list;
clasohm@0
   214
clasohm@0
   215
(*For system errors involving terms*)
clasohm@0
   216
exception TERM of string * term list;
clasohm@0
   217
clasohm@0
   218
clasohm@0
   219
(*Note variable naming conventions!
clasohm@0
   220
    a,b,c: string
clasohm@0
   221
    f,g,h: functions (including terms of function type)
clasohm@0
   222
    i,j,m,n: int
clasohm@0
   223
    t,u: term
clasohm@0
   224
    v,w: indexnames
clasohm@0
   225
    x,y: any
clasohm@0
   226
    A,B,C: term (denoting formulae)
clasohm@0
   227
    T,U: typ
clasohm@0
   228
*)
clasohm@0
   229
clasohm@0
   230
clasohm@0
   231
(** Discriminators **)
clasohm@0
   232
clasohm@0
   233
fun is_Const (Const _) = true
clasohm@0
   234
  | is_Const _ = false;
clasohm@0
   235
clasohm@0
   236
fun is_Free (Free _) = true
clasohm@0
   237
  | is_Free _ = false;
clasohm@0
   238
clasohm@0
   239
fun is_Var (Var _) = true
clasohm@0
   240
  | is_Var _ = false;
clasohm@0
   241
clasohm@0
   242
fun is_TVar (TVar _) = true
clasohm@0
   243
  | is_TVar _ = false;
clasohm@0
   244
clasohm@0
   245
(** Destructors **)
clasohm@0
   246
clasohm@0
   247
fun dest_Const (Const x) =  x
clasohm@0
   248
  | dest_Const t = raise TERM("dest_Const", [t]);
clasohm@0
   249
clasohm@0
   250
fun dest_Free (Free x) =  x
clasohm@0
   251
  | dest_Free t = raise TERM("dest_Free", [t]);
clasohm@0
   252
clasohm@0
   253
fun dest_Var (Var x) =  x
clasohm@0
   254
  | dest_Var t = raise TERM("dest_Var", [t]);
clasohm@0
   255
clasohm@0
   256
paulson@4064
   257
fun domain_type (Type("fun", [T,_])) = T;
paulson@4064
   258
clasohm@0
   259
(* maps  [T1,...,Tn]--->T  to the list  [T1,T2,...,Tn]*)
clasohm@0
   260
fun binder_types (Type("fun",[S,T])) = S :: binder_types T
clasohm@0
   261
  | binder_types _   =  [];
clasohm@0
   262
clasohm@0
   263
(* maps  [T1,...,Tn]--->T  to T*)
clasohm@0
   264
fun body_type (Type("fun",[S,T])) = body_type T
clasohm@0
   265
  | body_type T   =  T;
clasohm@0
   266
clasohm@0
   267
(* maps  [T1,...,Tn]--->T  to   ([T1,T2,...,Tn], T)  *)
clasohm@0
   268
fun strip_type T : typ list * typ =
clasohm@0
   269
  (binder_types T, body_type T);
clasohm@0
   270
clasohm@0
   271
clasohm@0
   272
(*Compute the type of the term, checking that combinations are well-typed
clasohm@0
   273
  Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*)
clasohm@0
   274
fun type_of1 (Ts, Const (_,T)) = T
clasohm@0
   275
  | type_of1 (Ts, Free  (_,T)) = T
clasohm@0
   276
  | type_of1 (Ts, Bound i) = (nth_elem (i,Ts)  
clasohm@1460
   277
  	handle LIST _ => raise TYPE("type_of: bound variable", [], [Bound i]))
clasohm@0
   278
  | type_of1 (Ts, Var (_,T)) = T
clasohm@0
   279
  | type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body)
clasohm@0
   280
  | type_of1 (Ts, f$u) = 
clasohm@0
   281
      let val U = type_of1(Ts,u)
clasohm@0
   282
          and T = type_of1(Ts,f)
clasohm@0
   283
      in case T of
clasohm@1460
   284
	    Type("fun",[T1,T2]) =>
clasohm@1460
   285
	      if T1=U then T2  else raise TYPE
clasohm@1460
   286
	            ("type_of: type mismatch in application", [T1,U], [f$u])
clasohm@1460
   287
	  | _ => raise TYPE 
clasohm@1460
   288
		    ("type_of: function type is expected in application",
clasohm@1460
   289
		     [T,U], [f$u])
clasohm@0
   290
      end;
clasohm@0
   291
clasohm@0
   292
fun type_of t : typ = type_of1 ([],t);
clasohm@0
   293
clasohm@0
   294
(*Determines the type of a term, with minimal checking*)
lcp@61
   295
fun fastype_of1 (Ts, f$u) = 
lcp@61
   296
    (case fastype_of1 (Ts,f) of
clasohm@1460
   297
	Type("fun",[_,T]) => T
clasohm@1460
   298
	| _ => raise TERM("fastype_of: expected function type", [f$u]))
lcp@61
   299
  | fastype_of1 (_, Const (_,T)) = T
lcp@61
   300
  | fastype_of1 (_, Free (_,T)) = T
lcp@61
   301
  | fastype_of1 (Ts, Bound i) = (nth_elem(i,Ts)
clasohm@1460
   302
  	 handle LIST _ => raise TERM("fastype_of: Bound", [Bound i]))
lcp@61
   303
  | fastype_of1 (_, Var (_,T)) = T 
lcp@61
   304
  | fastype_of1 (Ts, Abs (_,T,u)) = T --> fastype_of1 (T::Ts, u);
lcp@61
   305
lcp@61
   306
fun fastype_of t : typ = fastype_of1 ([],t);
clasohm@0
   307
clasohm@0
   308
clasohm@0
   309
(* maps  (x1,...,xn)t   to   t  *)
clasohm@0
   310
fun strip_abs_body (Abs(_,_,t))  =  strip_abs_body t  
clasohm@0
   311
  | strip_abs_body u  =  u;
clasohm@0
   312
clasohm@0
   313
clasohm@0
   314
(* maps  (x1,...,xn)t   to   [x1, ..., xn]  *)
clasohm@0
   315
fun strip_abs_vars (Abs(a,T,t))  =  (a,T) :: strip_abs_vars t 
clasohm@0
   316
  | strip_abs_vars u  =  [] : (string*typ) list;
clasohm@0
   317
clasohm@0
   318
clasohm@0
   319
fun strip_qnt_body qnt =
clasohm@0
   320
let fun strip(tm as Const(c,_)$Abs(_,_,t)) = if c=qnt then strip t else tm
clasohm@0
   321
      | strip t = t
clasohm@0
   322
in strip end;
clasohm@0
   323
clasohm@0
   324
fun strip_qnt_vars qnt =
clasohm@0
   325
let fun strip(Const(c,_)$Abs(a,T,t)) = if c=qnt then (a,T)::strip t else []
clasohm@0
   326
      | strip t  =  [] : (string*typ) list
clasohm@0
   327
in strip end;
clasohm@0
   328
clasohm@0
   329
clasohm@0
   330
(* maps   (f, [t1,...,tn])  to  f(t1,...,tn) *)
clasohm@0
   331
val list_comb : term * term list -> term = foldl (op $);
clasohm@0
   332
clasohm@0
   333
clasohm@0
   334
(* maps   f(t1,...,tn)  to  (f, [t1,...,tn]) ; naturally tail-recursive*)
clasohm@0
   335
fun strip_comb u : term * term list = 
clasohm@0
   336
    let fun stripc (f$t, ts) = stripc (f, t::ts)
clasohm@0
   337
        |   stripc  x =  x 
clasohm@0
   338
    in  stripc(u,[])  end;
clasohm@0
   339
clasohm@0
   340
clasohm@0
   341
(* maps   f(t1,...,tn)  to  f , which is never a combination *)
clasohm@0
   342
fun head_of (f$t) = head_of f
clasohm@0
   343
  | head_of u = u;
clasohm@0
   344
clasohm@0
   345
clasohm@0
   346
(*Number of atoms and abstractions in a term*)
clasohm@0
   347
fun size_of_term (Abs (_,_,body)) = 1 + size_of_term body
clasohm@0
   348
  | size_of_term (f$t) = size_of_term f  +  size_of_term t
clasohm@0
   349
  | size_of_term _ = 1;
clasohm@0
   350
nipkow@949
   351
fun map_type_tvar f (Type(a,Ts)) = Type(a, map (map_type_tvar f) Ts)
nipkow@949
   352
  | map_type_tvar f (T as TFree _) = T
nipkow@949
   353
  | map_type_tvar f (TVar x) = f x;
nipkow@949
   354
nipkow@949
   355
fun map_type_tfree f (Type(a,Ts)) = Type(a, map (map_type_tfree f) Ts)
nipkow@949
   356
  | map_type_tfree f (TFree x) = f x
nipkow@949
   357
  | map_type_tfree f (T as TVar _) = T;
nipkow@949
   358
clasohm@0
   359
(* apply a function to all types in a term *)
clasohm@0
   360
fun map_term_types f =
clasohm@0
   361
let fun map(Const(a,T)) = Const(a, f T)
clasohm@0
   362
      | map(Free(a,T)) = Free(a, f T)
clasohm@0
   363
      | map(Var(v,T)) = Var(v, f T)
clasohm@0
   364
      | map(t as Bound _)  = t
clasohm@0
   365
      | map(Abs(a,T,t)) = Abs(a, f T, map t)
clasohm@0
   366
      | map(f$t) = map f $ map t;
clasohm@0
   367
in map end;
clasohm@0
   368
clasohm@0
   369
(* iterate a function over all types in a term *)
clasohm@0
   370
fun it_term_types f =
clasohm@0
   371
let fun iter(Const(_,T), a) = f(T,a)
clasohm@0
   372
      | iter(Free(_,T), a) = f(T,a)
clasohm@0
   373
      | iter(Var(_,T), a) = f(T,a)
clasohm@0
   374
      | iter(Abs(_,T,t), a) = iter(t,f(T,a))
clasohm@0
   375
      | iter(f$u, a) = iter(f, iter(u, a))
clasohm@0
   376
      | iter(Bound _, a) = a
clasohm@0
   377
in iter end
clasohm@0
   378
clasohm@0
   379
clasohm@0
   380
(** Connectives of higher order logic **)
clasohm@0
   381
wenzelm@375
   382
val logicC: class = "logic";
wenzelm@375
   383
val logicS: sort = [logicC];
wenzelm@375
   384
wenzelm@375
   385
fun itselfT ty = Type ("itself", [ty]);
wenzelm@375
   386
val a_itselfT = itselfT (TFree ("'a", logicS));
wenzelm@375
   387
clasohm@0
   388
val propT : typ = Type("prop",[]);
clasohm@0
   389
clasohm@0
   390
val implies = Const("==>", propT-->propT-->propT);
clasohm@0
   391
clasohm@0
   392
fun all T = Const("all", (T-->propT)-->propT);
clasohm@0
   393
clasohm@0
   394
fun equals T = Const("==", T-->T-->propT);
clasohm@0
   395
clasohm@0
   396
fun flexpair T = Const("=?=", T-->T-->propT);
clasohm@0
   397
clasohm@0
   398
(* maps  !!x1...xn. t   to   t  *)
clasohm@0
   399
fun strip_all_body (Const("all",_)$Abs(_,_,t))  =  strip_all_body t  
clasohm@0
   400
  | strip_all_body t  =  t;
clasohm@0
   401
clasohm@0
   402
(* maps  !!x1...xn. t   to   [x1, ..., xn]  *)
clasohm@0
   403
fun strip_all_vars (Const("all",_)$Abs(a,T,t))  =
clasohm@1460
   404
		(a,T) :: strip_all_vars t 
clasohm@0
   405
  | strip_all_vars t  =  [] : (string*typ) list;
clasohm@0
   406
clasohm@0
   407
(*increments a term's non-local bound variables
clasohm@0
   408
  required when moving a term within abstractions
clasohm@0
   409
     inc is  increment for bound variables
clasohm@0
   410
     lev is  level at which a bound variable is considered 'loose'*)
clasohm@0
   411
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u 
clasohm@0
   412
  | incr_bv (inc, lev, Abs(a,T,body)) =
clasohm@1460
   413
	Abs(a, T, incr_bv(inc,lev+1,body))
clasohm@0
   414
  | incr_bv (inc, lev, f$t) = 
clasohm@0
   415
      incr_bv(inc,lev,f) $ incr_bv(inc,lev,t)
clasohm@0
   416
  | incr_bv (inc, lev, u) = u;
clasohm@0
   417
clasohm@0
   418
fun incr_boundvars  0  t = t
clasohm@0
   419
  | incr_boundvars inc t = incr_bv(inc,0,t);
clasohm@0
   420
clasohm@0
   421
clasohm@0
   422
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond.
clasohm@0
   423
   (Bound 0) is loose at level 0 *)
clasohm@0
   424
fun add_loose_bnos (Bound i, lev, js) = 
paulson@2176
   425
	if i<lev then js  else  (i-lev) ins_int js
clasohm@0
   426
  | add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js)
clasohm@0
   427
  | add_loose_bnos (f$t, lev, js) =
clasohm@1460
   428
	add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) 
clasohm@0
   429
  | add_loose_bnos (_, _, js) = js;
clasohm@0
   430
clasohm@0
   431
fun loose_bnos t = add_loose_bnos (t, 0, []);
clasohm@0
   432
clasohm@0
   433
(* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to
clasohm@0
   434
   level k or beyond. *)
clasohm@0
   435
fun loose_bvar(Bound i,k) = i >= k
clasohm@0
   436
  | loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k)
clasohm@0
   437
  | loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1)
clasohm@0
   438
  | loose_bvar _ = false;
clasohm@0
   439
nipkow@2792
   440
fun loose_bvar1(Bound i,k) = i = k
nipkow@2792
   441
  | loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k)
nipkow@2792
   442
  | loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1)
nipkow@2792
   443
  | loose_bvar1 _ = false;
clasohm@0
   444
clasohm@0
   445
(*Substitute arguments for loose bound variables.
clasohm@0
   446
  Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi).
clasohm@0
   447
  Note that for ((x,y)c)(a,b), the bound vars in c are x=1 and y=0
clasohm@1460
   448
	and the appropriate call is  subst_bounds([b,a], c) .
clasohm@0
   449
  Loose bound variables >=n are reduced by "n" to
clasohm@0
   450
     compensate for the disappearance of lambdas.
clasohm@0
   451
*)
clasohm@0
   452
fun subst_bounds (args: term list, t) : term = 
clasohm@0
   453
  let val n = length args;
clasohm@0
   454
      fun subst (t as Bound i, lev) =
paulson@2580
   455
 	   (if i<lev then  t    (*var is locally bound*)
paulson@2580
   456
	    else  incr_boundvars lev (List.nth(args, i-lev))
paulson@2580
   457
		    handle Subscript => Bound(i-n)  (*loose: change it*))
clasohm@1460
   458
	| subst (Abs(a,T,body), lev) = Abs(a, T,  subst(body,lev+1))
clasohm@1460
   459
	| subst (f$t, lev) =  subst(f,lev)  $  subst(t,lev)
clasohm@1460
   460
	| subst (t,lev) = t
clasohm@0
   461
  in   case args of [] => t  | _ => subst (t,0)  end;
clasohm@0
   462
paulson@2192
   463
(*Special case: one argument*)
paulson@2192
   464
fun subst_bound (arg, t) : term = 
paulson@2192
   465
  let fun subst (t as Bound i, lev) =
paulson@2192
   466
 	    if i<lev then  t    (*var is locally bound*)
paulson@2192
   467
	    else  if i=lev then incr_boundvars lev arg
paulson@2192
   468
		           else Bound(i-1)  (*loose: change it*)
paulson@2192
   469
	| subst (Abs(a,T,body), lev) = Abs(a, T,  subst(body,lev+1))
paulson@2192
   470
	| subst (f$t, lev) =  subst(f,lev)  $  subst(t,lev)
paulson@2192
   471
	| subst (t,lev) = t
paulson@2192
   472
  in  subst (t,0)  end;
paulson@2192
   473
clasohm@0
   474
(*beta-reduce if possible, else form application*)
paulson@2192
   475
fun betapply (Abs(_,_,t), u) = subst_bound (u,t)
clasohm@0
   476
  | betapply (f,u) = f$u;
clasohm@0
   477
paulson@2192
   478
(** Equality, membership and insertion of indexnames (string*ints) **)
paulson@2192
   479
paulson@2192
   480
(*optimized equality test for indexnames.  Yields a huge gain under Poly/ML*)
wenzelm@2959
   481
fun eq_ix ((a, i):indexname, (a',i'):indexname) = (a=a') andalso i=i';
paulson@2192
   482
paulson@2192
   483
(*membership in a list, optimized version for indexnames*)
wenzelm@2959
   484
fun mem_ix (_, []) = false
paulson@2192
   485
  | mem_ix (x, y :: ys) = eq_ix(x,y) orelse mem_ix (x, ys);
paulson@2192
   486
paulson@2192
   487
(*insertion into list, optimized version for indexnames*)
paulson@2192
   488
fun ins_ix (x,xs) = if mem_ix (x, xs) then xs else x :: xs;
paulson@2192
   489
clasohm@0
   490
(*Tests whether 2 terms are alpha-convertible and have same type.
clasohm@0
   491
  Note that constants and Vars may have more than one type.*)
clasohm@0
   492
fun (Const(a,T)) aconv (Const(b,U)) = a=b  andalso  T=U
paulson@2752
   493
  | (Free(a,T))  aconv (Free(b,U))  = a=b  andalso  T=U
paulson@2752
   494
  | (Var(v,T))   aconv (Var(w,U))   = eq_ix(v,w)  andalso  T=U
paulson@2752
   495
  | (Bound i)    aconv (Bound j)    = i=j
clasohm@0
   496
  | (Abs(_,T,t)) aconv (Abs(_,U,u)) = t aconv u  andalso  T=U
paulson@2752
   497
  | (f$t)        aconv (g$u)        = (f aconv g) andalso (t aconv u)
clasohm@0
   498
  | _ aconv _  =  false;
clasohm@0
   499
paulson@2176
   500
(** Membership, insertion, union for terms **)
paulson@2176
   501
paulson@2176
   502
fun mem_term (_, []) = false
paulson@2176
   503
  | mem_term (t, t'::ts) = t aconv t' orelse mem_term(t,ts);
paulson@2176
   504
paulson@2182
   505
fun subset_term ([], ys) = true
paulson@2182
   506
  | subset_term (x :: xs, ys) = mem_term (x, ys) andalso subset_term(xs, ys);
paulson@2182
   507
paulson@2182
   508
fun eq_set_term (xs, ys) =
paulson@2182
   509
    xs = ys orelse (subset_term (xs, ys) andalso subset_term (ys, xs));
paulson@2182
   510
paulson@2176
   511
fun ins_term(t,ts) = if mem_term(t,ts) then ts else t :: ts;
paulson@2176
   512
paulson@2176
   513
fun union_term (xs, []) = xs
paulson@2176
   514
  | union_term ([], ys) = ys
paulson@2176
   515
  | union_term ((x :: xs), ys) = union_term (xs, ins_term (x, ys));
paulson@2176
   516
paulson@2176
   517
(** Equality, membership and insertion of sorts (string lists) **)
paulson@2176
   518
paulson@2176
   519
fun eq_sort ([]:sort, []) = true
paulson@2176
   520
  | eq_sort ((s::ss), (t::ts)) = s=t andalso eq_sort(ss,ts)
paulson@2176
   521
  | eq_sort (_, _) = false;
paulson@2176
   522
paulson@2176
   523
fun mem_sort (_:sort, []) = false
paulson@2176
   524
  | mem_sort (S, S'::Ss) = eq_sort (S, S') orelse mem_sort(S,Ss);
paulson@2176
   525
paulson@2176
   526
fun ins_sort(S,Ss) = if mem_sort(S,Ss) then Ss else S :: Ss;
paulson@2176
   527
paulson@2176
   528
fun union_sort (xs, []) = xs
paulson@2176
   529
  | union_sort ([], ys) = ys
paulson@2176
   530
  | union_sort ((x :: xs), ys) = union_sort (xs, ins_sort (x, ys));
paulson@2176
   531
paulson@2182
   532
fun subset_sort ([], ys) = true
paulson@2182
   533
  | subset_sort (x :: xs, ys) = mem_sort (x, ys) andalso subset_sort(xs, ys);
paulson@2182
   534
paulson@2182
   535
fun eq_set_sort (xs, ys) =
paulson@2182
   536
    xs = ys orelse (subset_sort (xs, ys) andalso subset_sort (ys, xs));
paulson@2182
   537
clasohm@0
   538
(*are two term lists alpha-convertible in corresponding elements?*)
clasohm@0
   539
fun aconvs ([],[]) = true
clasohm@0
   540
  | aconvs (t::ts, u::us) = t aconv u andalso aconvs(ts,us)
clasohm@0
   541
  | aconvs _ = false;
clasohm@0
   542
clasohm@0
   543
(*A fast unification filter: true unless the two terms cannot be unified. 
clasohm@0
   544
  Terms must be NORMAL.  Treats all Vars as distinct. *)
clasohm@0
   545
fun could_unify (t,u) =
clasohm@0
   546
  let fun matchrands (f$t, g$u) = could_unify(t,u) andalso  matchrands(f,g)
clasohm@1460
   547
	| matchrands _ = true
clasohm@0
   548
  in case (head_of t , head_of u) of
clasohm@1460
   549
	(_, Var _) => true
clasohm@0
   550
      | (Var _, _) => true
clasohm@0
   551
      | (Const(a,_), Const(b,_)) =>  a=b andalso matchrands(t,u)
clasohm@0
   552
      | (Free(a,_), Free(b,_)) =>  a=b andalso matchrands(t,u)
clasohm@0
   553
      | (Bound i, Bound j) =>  i=j andalso matchrands(t,u)
clasohm@0
   554
      | (Abs _, _) =>  true   (*because of possible eta equality*)
clasohm@0
   555
      | (_, Abs _) =>  true
clasohm@0
   556
      | _ => false
clasohm@0
   557
  end;
clasohm@0
   558
clasohm@0
   559
(*Substitute new for free occurrences of old in a term*)
clasohm@0
   560
fun subst_free [] = (fn t=>t)
clasohm@0
   561
  | subst_free pairs =
clasohm@0
   562
      let fun substf u = 
clasohm@1460
   563
	    case gen_assoc (op aconv) (pairs, u) of
clasohm@1460
   564
		Some u' => u'
clasohm@1460
   565
	      | None => (case u of Abs(a,T,t) => Abs(a, T, substf t)
clasohm@1460
   566
				 | t$u' => substf t $ substf u'
clasohm@1460
   567
				 | _ => u)
clasohm@0
   568
      in  substf  end;
clasohm@0
   569
clasohm@0
   570
(*a total, irreflexive ordering on index names*)
clasohm@0
   571
fun xless ((a,i), (b,j): indexname) = i<j  orelse  (i=j andalso a<b);
clasohm@0
   572
clasohm@0
   573
clasohm@0
   574
(*Abstraction of the term "body" over its occurrences of v, 
clasohm@0
   575
    which must contain no loose bound variables.
clasohm@0
   576
  The resulting term is ready to become the body of an Abs.*)
clasohm@0
   577
fun abstract_over (v,body) =
clasohm@0
   578
  let fun abst (lev,u) = if (v aconv u) then (Bound lev) else
clasohm@0
   579
      (case u of
clasohm@0
   580
          Abs(a,T,t) => Abs(a, T, abst(lev+1, t))
clasohm@1460
   581
	| f$rand => abst(lev,f) $ abst(lev,rand)
clasohm@1460
   582
	| _ => u)
clasohm@0
   583
  in  abst(0,body)  end;
clasohm@0
   584
clasohm@0
   585
clasohm@0
   586
(*Form an abstraction over a free variable.*)
clasohm@0
   587
fun absfree (a,T,body) = Abs(a, T, abstract_over (Free(a,T), body));
clasohm@0
   588
clasohm@0
   589
(*Abstraction over a list of free variables*)
clasohm@0
   590
fun list_abs_free ([ ] ,     t) = t
clasohm@0
   591
  | list_abs_free ((a,T)::vars, t) = 
clasohm@0
   592
      absfree(a, T, list_abs_free(vars,t));
clasohm@0
   593
clasohm@0
   594
(*Quantification over a list of free variables*)
clasohm@0
   595
fun list_all_free ([], t: term) = t
clasohm@0
   596
  | list_all_free ((a,T)::vars, t) = 
clasohm@0
   597
        (all T) $ (absfree(a, T, list_all_free(vars,t)));
clasohm@0
   598
clasohm@0
   599
(*Quantification over a list of variables (already bound in body) *)
clasohm@0
   600
fun list_all ([], t) = t
clasohm@0
   601
  | list_all ((a,T)::vars, t) = 
clasohm@0
   602
        (all T) $ (Abs(a, T, list_all(vars,t)));
clasohm@0
   603
clasohm@0
   604
(*Replace the ATOMIC term ti by ui;    instl = [(t1,u1), ..., (tn,un)]. 
clasohm@0
   605
  A simultaneous substitution:  [ (a,b), (b,a) ] swaps a and b.  *)
clasohm@0
   606
fun subst_atomic [] t = t : term
clasohm@0
   607
  | subst_atomic (instl: (term*term) list) t =
clasohm@0
   608
      let fun subst (Abs(a,T,body)) = Abs(a, T, subst body)
clasohm@1460
   609
	    | subst (f$t') = subst f $ subst t'
clasohm@1460
   610
	    | subst t = (case assoc(instl,t) of
clasohm@1460
   611
		           Some u => u  |  None => t)
clasohm@0
   612
      in  subst t  end;
clasohm@0
   613
lcp@728
   614
(*Substitute for type Vars in a type*)
clasohm@0
   615
fun typ_subst_TVars iTs T = if null iTs then T else
clasohm@0
   616
  let fun subst(Type(a,Ts)) = Type(a, map subst Ts)
clasohm@1460
   617
	| subst(T as TFree _) = T
clasohm@1460
   618
	| subst(T as TVar(ixn,_)) =
clasohm@0
   619
            (case assoc(iTs,ixn) of None => T | Some(U) => U)
clasohm@0
   620
  in subst T end;
clasohm@0
   621
lcp@728
   622
(*Substitute for type Vars in a term*)
clasohm@0
   623
val subst_TVars = map_term_types o typ_subst_TVars;
clasohm@0
   624
lcp@728
   625
(*Substitute for Vars in a term; see also envir/norm_term*)
clasohm@0
   626
fun subst_Vars itms t = if null itms then t else
clasohm@0
   627
  let fun subst(v as Var(ixn,_)) =
clasohm@0
   628
            (case assoc(itms,ixn) of None => v | Some t => t)
clasohm@0
   629
        | subst(Abs(a,T,t)) = Abs(a,T,subst t)
clasohm@0
   630
        | subst(f$t) = subst f $ subst t
clasohm@0
   631
        | subst(t) = t
clasohm@0
   632
  in subst t end;
clasohm@0
   633
lcp@728
   634
(*Substitute for type/term Vars in a term; see also envir/norm_term*)
clasohm@0
   635
fun subst_vars(iTs,itms) = if null iTs then subst_Vars itms else
clasohm@0
   636
  let fun subst(Const(a,T)) = Const(a,typ_subst_TVars iTs T)
clasohm@0
   637
        | subst(Free(a,T)) = Free(a,typ_subst_TVars iTs T)
clasohm@0
   638
        | subst(v as Var(ixn,T)) = (case assoc(itms,ixn) of
clasohm@0
   639
            None   => Var(ixn,typ_subst_TVars iTs T)
clasohm@0
   640
          | Some t => t)
clasohm@0
   641
        | subst(b as Bound _) = b
clasohm@0
   642
        | subst(Abs(a,T,t)) = Abs(a,typ_subst_TVars iTs T,subst t)
clasohm@0
   643
        | subst(f$t) = subst f $ subst t
clasohm@0
   644
  in subst end;
clasohm@0
   645
clasohm@0
   646
clasohm@0
   647
(*Computing the maximum index of a typ*)
paulson@2146
   648
fun maxidx_of_typ(Type(_,Ts)) = maxidx_of_typs Ts
clasohm@0
   649
  | maxidx_of_typ(TFree _) = ~1
paulson@2146
   650
  | maxidx_of_typ(TVar((_,i),_)) = i
paulson@2146
   651
and maxidx_of_typs [] = ~1
paulson@2146
   652
  | maxidx_of_typs (T::Ts) = Int.max(maxidx_of_typ T, maxidx_of_typs Ts);
clasohm@0
   653
clasohm@0
   654
clasohm@0
   655
(*Computing the maximum index of a term*)
clasohm@0
   656
fun maxidx_of_term (Const(_,T)) = maxidx_of_typ T
clasohm@0
   657
  | maxidx_of_term (Bound _) = ~1
clasohm@0
   658
  | maxidx_of_term (Free(_,T)) = maxidx_of_typ T
paulson@2146
   659
  | maxidx_of_term (Var ((_,i), T)) = Int.max(i, maxidx_of_typ T)
paulson@2146
   660
  | maxidx_of_term (Abs (_,T,u)) = Int.max(maxidx_of_term u, maxidx_of_typ T)
paulson@2146
   661
  | maxidx_of_term (f$t) = Int.max(maxidx_of_term f,  maxidx_of_term t);
clasohm@0
   662
clasohm@0
   663
clasohm@0
   664
(* Increment the index of all Poly's in T by k *)
nipkow@949
   665
fun incr_tvar k = map_type_tvar (fn ((a,i),S) => TVar((a,i+k),S));
clasohm@0
   666
clasohm@0
   667
clasohm@0
   668
(**** Syntax-related declarations ****)
clasohm@0
   669
clasohm@0
   670
clasohm@0
   671
(*Dummy type for parsing.  Will be replaced during type inference. *)
clasohm@0
   672
val dummyT = Type("dummy",[]);
clasohm@0
   673
clasohm@0
   674
(*scan a numeral of the given radix, normally 10*)
clasohm@0
   675
fun scan_radixint (radix: int, cs) : int * string list =
clasohm@0
   676
  let val zero = ord"0"
clasohm@0
   677
      val limit = zero+radix
clasohm@0
   678
      fun scan (num,[]) = (num,[])
clasohm@1460
   679
	| scan (num, c::cs) =
clasohm@1460
   680
	      if  zero <= ord c  andalso  ord c < limit
clasohm@1460
   681
	      then scan(radix*num + ord c - zero, cs)
clasohm@1460
   682
	      else (num, c::cs)
clasohm@0
   683
  in  scan(0,cs)  end;
clasohm@0
   684
clasohm@0
   685
fun scan_int cs = scan_radixint(10,cs);
clasohm@0
   686
clasohm@0
   687
clasohm@0
   688
(*** Printing ***)
clasohm@0
   689
clasohm@0
   690
clasohm@0
   691
(*Makes a variant of the name c distinct from the names in bs.
clasohm@0
   692
  First attaches the suffix "a" and then increments this. *)
clasohm@0
   693
fun variant bs c : string =
paulson@2138
   694
  let fun vary2 c = if (c mem_string bs) then  vary2 (bump_string c)  else  c
paulson@2138
   695
      fun vary1 c = if (c mem_string bs) then  vary2 (c ^ "a")  else  c
clasohm@0
   696
  in  vary1 (if c="" then "u" else c)  end;
clasohm@0
   697
clasohm@0
   698
(*Create variants of the list of names, with priority to the first ones*)
clasohm@0
   699
fun variantlist ([], used) = []
clasohm@0
   700
  | variantlist(b::bs, used) = 
clasohm@0
   701
      let val b' = variant used b
clasohm@0
   702
      in  b' :: variantlist (bs, b'::used)  end;
clasohm@0
   703
wenzelm@4017
   704
wenzelm@4017
   705
wenzelm@4017
   706
(** Consts etc. **)
wenzelm@4017
   707
wenzelm@4017
   708
fun add_typ_classes (Type (_, Ts), cs) = foldr add_typ_classes (Ts, cs)
wenzelm@4017
   709
  | add_typ_classes (TFree (_, S), cs) = S union cs
wenzelm@4017
   710
  | add_typ_classes (TVar (_, S), cs) = S union cs;
wenzelm@4017
   711
wenzelm@4017
   712
fun add_typ_tycons (Type (c, Ts), cs) = foldr add_typ_tycons (Ts, c ins cs)
wenzelm@4017
   713
  | add_typ_tycons (_, cs) = cs;
wenzelm@4017
   714
wenzelm@4017
   715
val add_term_classes = it_term_types add_typ_classes;
wenzelm@4017
   716
val add_term_tycons = it_term_types add_typ_tycons;
wenzelm@4017
   717
wenzelm@4017
   718
fun add_term_consts (Const (c, _), cs) = c ins cs
wenzelm@4017
   719
  | add_term_consts (t $ u, cs) = add_term_consts (t, add_term_consts (u, cs))
wenzelm@4017
   720
  | add_term_consts (Abs (_, _, t), cs) = add_term_consts (t, cs)
wenzelm@4017
   721
  | add_term_consts (_, cs) = cs;
wenzelm@4017
   722
oheimb@4185
   723
fun exists_Const P t = let
oheimb@4185
   724
	fun ex (Const c      ) = P c
oheimb@4185
   725
	|   ex (t $ u        ) = ex t orelse ex u
oheimb@4185
   726
	|   ex (Abs (_, _, t)) = ex t
oheimb@4185
   727
	|   ex _               = false
oheimb@4185
   728
    in ex t end;
wenzelm@4017
   729
wenzelm@4017
   730
(*map classes, tycons*)
wenzelm@4017
   731
fun map_typ f g (Type (c, Ts)) = Type (g c, map (map_typ f g) Ts)
wenzelm@4017
   732
  | map_typ f _ (TFree (x, S)) = TFree (x, map f S)
wenzelm@4017
   733
  | map_typ f _ (TVar (xi, S)) = TVar (xi, map f S);
wenzelm@4017
   734
wenzelm@4017
   735
(*map classes, tycons, consts*)
wenzelm@4017
   736
fun map_term f g h (Const (c, T)) = Const (h c, map_typ f g T)
wenzelm@4017
   737
  | map_term f g _ (Free (x, T)) = Free (x, map_typ f g T)
wenzelm@4017
   738
  | map_term f g _ (Var (xi, T)) = Var (xi, map_typ f g T)
wenzelm@4017
   739
  | map_term _ _ _ (t as Bound _) = t
wenzelm@4017
   740
  | map_term f g h (Abs (x, T, t)) = Abs (x, map_typ f g T, map_term f g h t)
wenzelm@4017
   741
  | map_term f g h (t $ u) = map_term f g h t $ map_term f g h u;
wenzelm@4017
   742
wenzelm@4017
   743
wenzelm@4017
   744
clasohm@0
   745
(** TFrees and TVars **)
clasohm@0
   746
clasohm@0
   747
(*maps  (bs,v)  to   v'::bs    this reverses the identifiers bs*)
clasohm@0
   748
fun add_new_id (bs, c) : string list =  variant bs c  ::  bs;
clasohm@0
   749
clasohm@0
   750
(*Accumulates the names in the term, suppressing duplicates.
clasohm@0
   751
  Includes Frees and Consts.  For choosing unambiguous bound var names.*)
paulson@2176
   752
fun add_term_names (Const(a,_), bs) = a ins_string bs
paulson@2176
   753
  | add_term_names (Free(a,_), bs) = a ins_string bs
clasohm@0
   754
  | add_term_names (f$u, bs) = add_term_names (f, add_term_names(u, bs))
clasohm@0
   755
  | add_term_names (Abs(_,_,t), bs) = add_term_names(t,bs)
clasohm@0
   756
  | add_term_names (_, bs) = bs;
clasohm@0
   757
clasohm@0
   758
(*Accumulates the TVars in a type, suppressing duplicates. *)
clasohm@0
   759
fun add_typ_tvars(Type(_,Ts),vs) = foldr add_typ_tvars (Ts,vs)
clasohm@0
   760
  | add_typ_tvars(TFree(_),vs) = vs
clasohm@0
   761
  | add_typ_tvars(TVar(v),vs) = v ins vs;
clasohm@0
   762
clasohm@0
   763
(*Accumulates the TFrees in a type, suppressing duplicates. *)
clasohm@0
   764
fun add_typ_tfree_names(Type(_,Ts),fs) = foldr add_typ_tfree_names (Ts,fs)
paulson@2176
   765
  | add_typ_tfree_names(TFree(f,_),fs) = f ins_string fs
clasohm@0
   766
  | add_typ_tfree_names(TVar(_),fs) = fs;
clasohm@0
   767
clasohm@0
   768
fun add_typ_tfrees(Type(_,Ts),fs) = foldr add_typ_tfrees (Ts,fs)
clasohm@0
   769
  | add_typ_tfrees(TFree(f),fs) = f ins fs
clasohm@0
   770
  | add_typ_tfrees(TVar(_),fs) = fs;
clasohm@0
   771
nipkow@949
   772
fun add_typ_varnames(Type(_,Ts),nms) = foldr add_typ_varnames (Ts,nms)
paulson@2176
   773
  | add_typ_varnames(TFree(nm,_),nms) = nm ins_string nms
paulson@2176
   774
  | add_typ_varnames(TVar((nm,_),_),nms) = nm ins_string nms;
nipkow@949
   775
clasohm@0
   776
(*Accumulates the TVars in a term, suppressing duplicates. *)
clasohm@0
   777
val add_term_tvars = it_term_types add_typ_tvars;
clasohm@0
   778
clasohm@0
   779
(*Accumulates the TFrees in a term, suppressing duplicates. *)
clasohm@0
   780
val add_term_tfrees = it_term_types add_typ_tfrees;
clasohm@0
   781
val add_term_tfree_names = it_term_types add_typ_tfree_names;
clasohm@0
   782
nipkow@949
   783
val add_term_tvarnames = it_term_types add_typ_varnames;
nipkow@949
   784
clasohm@0
   785
(*Non-list versions*)
clasohm@0
   786
fun typ_tfrees T = add_typ_tfrees(T,[]);
clasohm@0
   787
fun typ_tvars T = add_typ_tvars(T,[]);
clasohm@0
   788
fun term_tfrees t = add_term_tfrees(t,[]);
clasohm@0
   789
fun term_tvars t = add_term_tvars(t,[]);
clasohm@0
   790
nipkow@949
   791
(*special code to enforce left-to-right collection of TVar-indexnames*)
nipkow@949
   792
nipkow@949
   793
fun add_typ_ixns(ixns,Type(_,Ts)) = foldl add_typ_ixns (ixns,Ts)
paulson@2176
   794
  | add_typ_ixns(ixns,TVar(ixn,_)) = if mem_ix (ixn, ixns) then ixns 
paulson@2176
   795
				     else ixns@[ixn]
nipkow@949
   796
  | add_typ_ixns(ixns,TFree(_)) = ixns;
nipkow@949
   797
nipkow@949
   798
fun add_term_tvar_ixns(Const(_,T),ixns) = add_typ_ixns(ixns,T)
nipkow@949
   799
  | add_term_tvar_ixns(Free(_,T),ixns) = add_typ_ixns(ixns,T)
nipkow@949
   800
  | add_term_tvar_ixns(Var(_,T),ixns) = add_typ_ixns(ixns,T)
nipkow@949
   801
  | add_term_tvar_ixns(Bound _,ixns) = ixns
nipkow@949
   802
  | add_term_tvar_ixns(Abs(_,T,t),ixns) =
nipkow@949
   803
      add_term_tvar_ixns(t,add_typ_ixns(ixns,T))
nipkow@949
   804
  | add_term_tvar_ixns(f$t,ixns) =
nipkow@949
   805
      add_term_tvar_ixns(t,add_term_tvar_ixns(f,ixns));
nipkow@949
   806
clasohm@0
   807
(** Frees and Vars **)
clasohm@0
   808
clasohm@0
   809
(*a partial ordering (not reflexive) for atomic terms*)
clasohm@0
   810
fun atless (Const (a,_), Const (b,_))  =  a<b
clasohm@0
   811
  | atless (Free (a,_), Free (b,_)) =  a<b
clasohm@0
   812
  | atless (Var(v,_), Var(w,_))  =  xless(v,w)
clasohm@0
   813
  | atless (Bound i, Bound j)  =   i<j
clasohm@0
   814
  | atless _  =  false;
clasohm@0
   815
clasohm@0
   816
(*insert atomic term into partially sorted list, suppressing duplicates (?)*)
clasohm@0
   817
fun insert_aterm (t,us) =
clasohm@0
   818
  let fun inserta [] = [t]
clasohm@0
   819
        | inserta (us as u::us') = 
clasohm@1460
   820
	      if atless(t,u) then t::us
clasohm@1460
   821
	      else if t=u then us (*duplicate*)
clasohm@1460
   822
	      else u :: inserta(us')
clasohm@0
   823
  in  inserta us  end;
clasohm@0
   824
clasohm@0
   825
(*Accumulates the Vars in the term, suppressing duplicates*)
clasohm@0
   826
fun add_term_vars (t, vars: term list) = case t of
clasohm@0
   827
    Var   _ => insert_aterm(t,vars)
clasohm@0
   828
  | Abs (_,_,body) => add_term_vars(body,vars)
clasohm@0
   829
  | f$t =>  add_term_vars (f, add_term_vars(t, vars))
clasohm@0
   830
  | _ => vars;
clasohm@0
   831
clasohm@0
   832
fun term_vars t = add_term_vars(t,[]);
clasohm@0
   833
clasohm@0
   834
(*Accumulates the Frees in the term, suppressing duplicates*)
clasohm@0
   835
fun add_term_frees (t, frees: term list) = case t of
clasohm@0
   836
    Free   _ => insert_aterm(t,frees)
clasohm@0
   837
  | Abs (_,_,body) => add_term_frees(body,frees)
clasohm@0
   838
  | f$t =>  add_term_frees (f, add_term_frees(t, frees))
clasohm@0
   839
  | _ => frees;
clasohm@0
   840
clasohm@0
   841
fun term_frees t = add_term_frees(t,[]);
clasohm@0
   842
clasohm@0
   843
(*Given an abstraction over P, replaces the bound variable by a Free variable
clasohm@0
   844
  having a unique name. *)
clasohm@0
   845
fun variant_abs (a,T,P) =
clasohm@0
   846
  let val b = variant (add_term_names(P,[])) a
paulson@2192
   847
  in  (b,  subst_bound (Free(b,T), P))  end;
clasohm@0
   848
clasohm@0
   849
(* renames and reverses the strings in vars away from names *)
clasohm@0
   850
fun rename_aTs names vars : (string*typ)list =
clasohm@0
   851
  let fun rename_aT (vars,(a,T)) =
clasohm@1460
   852
		(variant (map #1 vars @ names) a, T) :: vars
clasohm@0
   853
  in foldl rename_aT ([],vars) end;
clasohm@0
   854
clasohm@0
   855
fun rename_wrt_term t = rename_aTs (add_term_names(t,[]));
clasohm@1364
   856
paulson@1417
   857
wenzelm@4286
   858
(* left-ro-right traversal *)
wenzelm@4286
   859
wenzelm@4286
   860
(*foldl atoms of type*)
wenzelm@4286
   861
fun foldl_atyps f (x, Type (_, Ts)) = foldl (foldl_atyps f) (x, Ts)
wenzelm@4286
   862
  | foldl_atyps f x_atom = f x_atom;
wenzelm@4286
   863
wenzelm@4286
   864
(*foldl atoms of term*)
wenzelm@4286
   865
fun foldl_aterms f (x, t $ u) = foldl_aterms f (foldl_aterms f (x, t), u)
wenzelm@4286
   866
  | foldl_aterms f (x, Abs (_, _, t)) = foldl_aterms f (x, t)
wenzelm@4286
   867
  | foldl_aterms f x_atom = f x_atom;
wenzelm@4286
   868
wenzelm@4286
   869
(*foldl types of term*)
wenzelm@4286
   870
fun foldl_types f (x, Const (_, T)) = f (x, T)
wenzelm@4286
   871
  | foldl_types f (x, Free (_, T)) = f (x, T)
wenzelm@4286
   872
  | foldl_types f (x, Var (_, T)) = f (x, T)
wenzelm@4286
   873
  | foldl_types f (x, Bound _) = x
wenzelm@4286
   874
  | foldl_types f (x, Abs (_, T, t)) = foldl_types f (f (x, T), t)
wenzelm@4286
   875
  | foldl_types f (x, t $ u) = foldl_types f (foldl_types f (x, t), u);
wenzelm@4286
   876
wenzelm@4286
   877
paulson@1417
   878
wenzelm@4444
   879
(** type and term orders **)
wenzelm@4444
   880
wenzelm@4444
   881
fun indexname_ord ((x, i), (y, j)) =
wenzelm@4444
   882
  (case int_ord (i, j) of EQUAL => string_ord (x, y) | ord => ord);
wenzelm@4444
   883
wenzelm@4444
   884
wenzelm@4444
   885
(* typ_ord *)
wenzelm@4444
   886
wenzelm@4444
   887
(*assumes that TFrees / TVars with the same name have same sorts*)
wenzelm@4444
   888
fun typ_ord (Type (a, Ts), Type (b, Us)) =
wenzelm@4444
   889
      (case string_ord (a, b) of EQUAL => typs_ord (Ts, Us) | ord => ord)
wenzelm@4444
   890
  | typ_ord (Type _, _) = GREATER
wenzelm@4444
   891
  | typ_ord (TFree _, Type _) = LESS
wenzelm@4444
   892
  | typ_ord (TFree (a, _), TFree (b, _)) = string_ord (a, b)
wenzelm@4444
   893
  | typ_ord (TFree _, TVar _) = GREATER
wenzelm@4444
   894
  | typ_ord (TVar _, Type _) = LESS
wenzelm@4444
   895
  | typ_ord (TVar _, TFree _) = LESS
wenzelm@4444
   896
  | typ_ord (TVar (xi, _), TVar (yj, _)) = indexname_ord (xi, yj)
wenzelm@4444
   897
and typs_ord Ts_Us = list_ord typ_ord Ts_Us;
wenzelm@4444
   898
wenzelm@4444
   899
wenzelm@4444
   900
(* term_ord *)
wenzelm@4444
   901
wenzelm@4444
   902
(*a linear well-founded AC-compatible ordering for terms:
wenzelm@4444
   903
  s < t <=> 1. size(s) < size(t) or
wenzelm@4444
   904
            2. size(s) = size(t) and s=f(...) and t=g(...) and f<g or
wenzelm@4444
   905
            3. size(s) = size(t) and s=f(s1..sn) and t=f(t1..tn) and
wenzelm@4444
   906
               (s1..sn) < (t1..tn) (lexicographically)*)
wenzelm@4444
   907
wenzelm@4444
   908
fun dest_hd (Const (a, T)) = (((a, 0), T), 0)
wenzelm@4444
   909
  | dest_hd (Free (a, T)) = (((a, 0), T), 1)
wenzelm@4444
   910
  | dest_hd (Var v) = (v, 2)
wenzelm@4444
   911
  | dest_hd (Bound i) = ((("", i), dummyT), 3)
wenzelm@4444
   912
  | dest_hd (Abs (_, T, _)) = ((("", 0), T), 4);
wenzelm@4444
   913
wenzelm@4444
   914
fun term_ord (Abs (_, T, t), Abs(_, U, u)) =
wenzelm@4444
   915
      (case term_ord (t, u) of EQUAL => typ_ord (T, U) | ord => ord)
wenzelm@4444
   916
  | term_ord (t, u) =
wenzelm@4444
   917
      (case int_ord (size_of_term t, size_of_term u) of
wenzelm@4444
   918
        EQUAL =>
wenzelm@4444
   919
          let val (f, ts) = strip_comb t and (g, us) = strip_comb u in
wenzelm@4444
   920
            (case hd_ord (f, g) of EQUAL => terms_ord (ts, us) | ord => ord)
wenzelm@4444
   921
          end
wenzelm@4444
   922
      | ord => ord)
wenzelm@4444
   923
and hd_ord (f, g) =
wenzelm@4444
   924
  prod_ord (prod_ord indexname_ord typ_ord) int_ord (dest_hd f, dest_hd g)
wenzelm@4444
   925
and terms_ord (ts, us) = list_ord term_ord (ts, us);
wenzelm@4444
   926
wenzelm@4444
   927
fun termless tu = (term_ord tu = LESS);
wenzelm@4444
   928
wenzelm@4444
   929
wenzelm@4444
   930
paulson@1426
   931
(*** Compression of terms and types by sharing common subtrees.  
paulson@1426
   932
     Saves 50-75% on storage requirements.  As it is fairly slow, 
paulson@1426
   933
     it is called only for axioms, stored theorems, etc. ***)
paulson@1417
   934
paulson@1417
   935
(** Sharing of types **)
paulson@1417
   936
paulson@1417
   937
fun atomic_tag (Type (a,_)) = if a<>"fun" then a else raise Match
paulson@1417
   938
  | atomic_tag (TFree (a,_)) = a
paulson@1417
   939
  | atomic_tag (TVar ((a,_),_)) = a;
paulson@1417
   940
paulson@1417
   941
fun type_tag (Type("fun",[S,T])) = atomic_tag S ^ type_tag T
paulson@1417
   942
  | type_tag T = atomic_tag T;
paulson@1417
   943
paulson@1417
   944
val memo_types = ref (Symtab.null : typ list Symtab.table);
paulson@1417
   945
oheimb@4188
   946
(* special case of library/find_first *)
paulson@1417
   947
fun find_type (T, []: typ list) = None
paulson@1417
   948
  | find_type (T, T'::Ts) =
paulson@1417
   949
       if T=T' then Some T'
paulson@1417
   950
       else find_type (T, Ts);
paulson@1417
   951
paulson@1417
   952
fun compress_type T =
paulson@1417
   953
  let val tag = type_tag T
paulson@1417
   954
      val tylist = the (Symtab.lookup (!memo_types, tag))
clasohm@1460
   955
	           handle _ => []
paulson@1417
   956
  in  
paulson@1417
   957
      case find_type (T,tylist) of
clasohm@1460
   958
	Some T' => T'
paulson@1417
   959
      | None => 
clasohm@1460
   960
	    let val T' =
clasohm@1460
   961
		case T of
clasohm@1460
   962
		    Type (a,Ts) => Type (a, map compress_type Ts)
clasohm@1460
   963
		  | _ => T
clasohm@1460
   964
	    in  memo_types := Symtab.update ((tag, T'::tylist), !memo_types);
clasohm@1460
   965
		T
clasohm@1460
   966
	    end
paulson@1417
   967
  end
paulson@1417
   968
  handle Match =>
paulson@1417
   969
      let val Type (a,Ts) = T
paulson@1417
   970
      in  Type (a, map compress_type Ts)  end;
paulson@1417
   971
paulson@1417
   972
(** Sharing of atomic terms **)
paulson@1417
   973
paulson@1417
   974
val memo_terms = ref (Symtab.null : term list Symtab.table);
paulson@1417
   975
oheimb@4188
   976
(* special case of library/find_first *)
paulson@1417
   977
fun find_term (t, []: term list) = None
paulson@1417
   978
  | find_term (t, t'::ts) =
paulson@1417
   979
       if t=t' then Some t'
paulson@1417
   980
       else find_term (t, ts);
paulson@1417
   981
paulson@1417
   982
fun const_tag (Const (a,_)) = a
paulson@1417
   983
  | const_tag (Free (a,_))  = a
paulson@1417
   984
  | const_tag (Var ((a,i),_)) = a
paulson@1417
   985
  | const_tag (t as Bound _)  = ".B.";
paulson@1417
   986
paulson@1417
   987
fun share_term (t $ u) = share_term t $ share_term u
paulson@1417
   988
  | share_term (Abs (a,T,u)) = Abs (a, T, share_term u)
paulson@1417
   989
  | share_term t =
paulson@1417
   990
      let val tag = const_tag t
clasohm@1460
   991
	  val ts = the (Symtab.lookup (!memo_terms, tag))
clasohm@1460
   992
	               handle _ => []
paulson@1417
   993
      in 
clasohm@1460
   994
	  case find_term (t,ts) of
clasohm@1460
   995
	      Some t' => t'
clasohm@1460
   996
	    | None => (memo_terms := Symtab.update ((tag, t::ts), !memo_terms);
clasohm@1460
   997
		       t)
paulson@1417
   998
      end;
paulson@1417
   999
paulson@1417
  1000
val compress_term = share_term o map_term_types compress_type;
paulson@1417
  1001
wenzelm@4444
  1002
clasohm@1364
  1003
end;
clasohm@1364
  1004
wenzelm@4444
  1005
wenzelm@4444
  1006
structure BasicTerm: BASIC_TERM = Term;
wenzelm@4444
  1007
open BasicTerm;