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