src/Pure/term.ML
author wenzelm
Sun, 31 Dec 2023 19:24:37 +0100
changeset 79409 e1895596e1b9
parent 79383 8c9cce335a3d
child 79411 700d4f16b5f2
permissions -rw-r--r--
minor performance tuning: proper Same.operation; clarified modules;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
     1
(*  Title:      Pure/term.ML
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
29280
c5531bf7c6b2 updated header;
wenzelm
parents: 29278
diff changeset
     3
    Author:     Makarius
1364
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
     4
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
     5
Simply typed lambda-calculus: types, terms, and basic operations.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
     8
infix 9 $;
1364
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
     9
infixr 5 -->;
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    10
infixr --->;
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    11
infix aconv;
1364
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
    12
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    13
signature BASIC_TERM =
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    14
sig
34922
e35f608f81a2 tuned signature;
wenzelm
parents: 33697
diff changeset
    15
  type indexname = string * int
e35f608f81a2 tuned signature;
wenzelm
parents: 33697
diff changeset
    16
  type class = string
e35f608f81a2 tuned signature;
wenzelm
parents: 33697
diff changeset
    17
  type sort = class list
e35f608f81a2 tuned signature;
wenzelm
parents: 33697
diff changeset
    18
  type arity = string * sort list * sort
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    19
  datatype typ =
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    20
    Type  of string * typ list |
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    21
    TFree of string * sort |
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    22
    TVar  of indexname * sort
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    23
  datatype term =
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    24
    Const of string * typ |
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    25
    Free of string * typ |
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    26
    Var of indexname * typ |
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    27
    Bound of int |
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    28
    Abs of string * typ * term |
17756
d4a35f82fbb4 minor tweaks for Poplog/ML;
wenzelm
parents: 17642
diff changeset
    29
    $ of term * term
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    30
  exception TYPE of string * typ list * term list
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
    31
  exception TERM of string * term list
21353
cfee13454195 added dummyS;
wenzelm
parents: 21013
diff changeset
    32
  val dummyS: sort
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    33
  val dummyT: typ
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    34
  val no_dummyT: typ -> typ
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    35
  val --> : typ * typ -> typ
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    36
  val ---> : typ list * typ -> typ
67703
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
    37
  val is_Type: typ -> bool
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
    38
  val is_TFree: typ -> bool
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
    39
  val is_TVar: typ -> bool
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    40
  val dest_Type: typ -> string * typ list
67703
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
    41
  val dest_TFree: typ -> string * sort
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    42
  val dest_TVar: typ -> indexname * sort
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    43
  val is_Bound: term -> bool
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    44
  val is_Const: term -> bool
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    45
  val is_Free: term -> bool
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    46
  val is_Var: term -> bool
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    47
  val dest_Const: term -> string * typ
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    48
  val dest_Free: term -> string * typ
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    49
  val dest_Var: term -> indexname * typ
35227
d67857e3a8c0 added dest_comb
haftmann
parents: 34922
diff changeset
    50
  val dest_comb: term -> term * term
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    51
  val domain_type: typ -> typ
4480
d26e28c52788 export range_type;
wenzelm
parents: 4464
diff changeset
    52
  val range_type: typ -> typ
40840
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 39293
diff changeset
    53
  val dest_funT: typ -> typ * typ
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    54
  val binder_types: typ -> typ list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    55
  val body_type: typ -> typ
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    56
  val strip_type: typ -> typ list * typ
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    57
  val type_of1: typ list * term -> typ
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    58
  val type_of: term -> typ
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    59
  val fastype_of1: typ list * term -> typ
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    60
  val fastype_of: term -> typ
18927
2e5b0f3f1418 added strip_abs
haftmann
parents: 18893
diff changeset
    61
  val strip_abs: term -> (string * typ) list * term
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    62
  val strip_abs_body: term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    63
  val strip_abs_vars: term -> (string * typ) list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    64
  val strip_qnt_body: string -> term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    65
  val strip_qnt_vars: string -> term -> (string * typ) list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    66
  val list_comb: term * term list -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    67
  val strip_comb: term -> term * term list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    68
  val head_of: term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    69
  val size_of_term: term -> int
29882
29154e67731d New command find_consts searching for constants by type (by Timothy Bourke).
kleing
parents: 29286
diff changeset
    70
  val size_of_typ: typ -> int
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
    71
  val map_atyps: typ Same.operation -> typ -> typ
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
    72
  val map_aterms: term Same.operation -> term -> term
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
    73
  val map_types: typ Same.operation -> term -> term
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
    74
  val map_type_tvar: (indexname * sort, typ) Same.function -> typ -> typ
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
    75
  val map_type_tfree: (string * sort, typ) Same.function -> typ -> typ
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
    76
  val fold_atyps: (typ -> 'a -> 'a) -> typ -> 'a -> 'a
35986
b7fcca3d9a44 added Term.fold_atyps_sorts convenience;
wenzelm
parents: 35227
diff changeset
    77
  val fold_atyps_sorts: (typ * sort -> 'a -> 'a) -> typ -> 'a -> 'a
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
    78
  val fold_aterms: (term -> 'a -> 'a) -> term -> 'a -> 'a
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
    79
  val fold_term_types: (term -> typ -> 'a -> 'a) -> term -> 'a -> 'a
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
    80
  val fold_types: (typ -> 'a -> 'a) -> term -> 'a -> 'a
24483
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
    81
  val burrow_types: (typ list -> typ list) -> term list -> term list
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
    82
  val aconv: term * term -> bool
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    83
  val propT: typ
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    84
  val strip_all_body: term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    85
  val strip_all_vars: term -> (string * typ) list
79172
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
    86
  val incr_bv_same: int -> int -> term Same.operation
79170
4affbdbeefd4 clarified signature: more standard argument order;
wenzelm
parents: 79168
diff changeset
    87
  val incr_bv: int -> int -> term -> term
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    88
  val incr_boundvars: int -> term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    89
  val add_loose_bnos: term * int * int list -> int list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    90
  val loose_bnos: term -> int list
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    91
  val loose_bvar: term * int -> bool
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    92
  val loose_bvar1: term * int -> bool
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
    93
  val subst_bounds_same: term list -> int -> term Same.operation
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    94
  val subst_bounds: term list * term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    95
  val subst_bound: term * term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    96
  val betapply: term * term -> term
18183
a9f67248996a added betapplys;
wenzelm
parents: 18149
diff changeset
    97
  val betapplys: term * term list -> term
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    98
  val subst_free: (term * term) list -> term -> term
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
    99
  val abstract_over: term * term -> term
11922
78857e6107cb added lambda;
wenzelm
parents: 11903
diff changeset
   100
  val lambda: term -> term -> term
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43683
diff changeset
   101
  val absfree: string * typ -> term -> term
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43683
diff changeset
   102
  val absdummy: typ -> term -> term
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   103
  val subst_atomic: (term * term) list -> term -> term
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   104
  val typ_subst_atomic: (typ * typ) list -> typ -> typ
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   105
  val subst_atomic_types: (typ * typ) list -> term -> term
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   106
  val typ_subst_TVars: (indexname * typ) list -> typ -> typ
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   107
  val subst_TVars: (indexname * typ) list -> term -> term
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   108
  val subst_Vars: (indexname * term) list -> term -> term
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   109
  val subst_vars: (indexname * typ) list * (indexname * term) list -> term -> term
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   110
  val is_first_order: string list -> term -> bool
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   111
  val maxidx_of_typ: typ -> int
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   112
  val maxidx_of_typs: typ list -> int
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   113
  val maxidx_of_term: term -> int
61248
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   114
  val fold_subtypes: (typ -> 'a -> 'a) -> typ -> 'a -> 'a
19909
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   115
  val exists_subtype: (typ -> bool) -> typ -> bool
20531
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   116
  val exists_type: (typ -> bool) -> term -> bool
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   117
  val exists_subterm: (term -> bool) -> term -> bool
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   118
  val exists_Const: (string * typ -> bool) -> term -> bool
76047
f244926013e5 tuned signature;
wenzelm
parents: 74577
diff changeset
   119
  val is_schematic: term -> bool
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   120
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   121
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   122
signature TERM =
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   123
sig
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   124
  include BASIC_TERM
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   125
  val map_atyps_same: typ Same.operation -> typ Same.operation
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   126
  val map_aterms_same: term Same.operation -> term Same.operation
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   127
  val map_types_same: typ Same.operation -> term Same.operation
19394
9f69613362c1 added aT (from axclass.ML);
wenzelm
parents: 19065
diff changeset
   128
  val aT: sort -> typ
9f69613362c1 added aT (from axclass.ML);
wenzelm
parents: 19065
diff changeset
   129
  val itselfT: typ -> typ
9f69613362c1 added aT (from axclass.ML);
wenzelm
parents: 19065
diff changeset
   130
  val a_itselfT: typ
22908
ed66fbbe4a62 tuned argument_type_of;
wenzelm
parents: 22723
diff changeset
   131
  val argument_type_of: term -> int -> typ
46219
426ed18eba43 discontinued old-style Term.list_abs in favour of plain Term.abs;
wenzelm
parents: 46218
diff changeset
   132
  val abs: string * typ -> term -> term
74577
d4829a7333e2 clarified instantiation: local beta reduction after substitution, as for Envir.expand_term_defs;
wenzelm
parents: 74525
diff changeset
   133
  val args_of: term -> term list
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   134
  val add_tvar_namesT: typ -> indexname list -> indexname list
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   135
  val add_tvar_names: term -> indexname list -> indexname list
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   136
  val add_tvarsT: typ -> (indexname * sort) list -> (indexname * sort) list
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   137
  val add_tvars: term -> (indexname * sort) list -> (indexname * sort) list
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   138
  val add_var_names: term -> indexname list -> indexname list
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   139
  val add_vars: term -> (indexname * typ) list -> (indexname * typ) list
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   140
  val add_tfree_namesT: typ -> string list -> string list
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   141
  val add_tfree_names: term -> string list -> string list
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   142
  val add_tfreesT: typ -> (string * sort) list -> (string * sort) list
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   143
  val add_tfrees: term -> (string * sort) list -> (string * sort) list
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   144
  val add_free_names: term -> string list -> string list
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   145
  val add_frees: term -> (string * typ) list -> (string * typ) list
29286
5de880bda02d added canonical add_const_names, add_consts;
wenzelm
parents: 29280
diff changeset
   146
  val add_const_names: term -> string list -> string list
5de880bda02d added canonical add_const_names, add_consts;
wenzelm
parents: 29280
diff changeset
   147
  val add_consts: term -> (string * typ) list -> (string * typ) list
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   148
  val hidden_polymorphism: term -> (indexname * sort) list
29278
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   149
  val declare_typ_names: typ -> Name.context -> Name.context
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   150
  val declare_term_names: term -> Name.context -> Name.context
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   151
  val declare_term_frees: term -> Name.context -> Name.context
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   152
  val variant_frees: term -> (string * 'a) list -> (string * 'a) list
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   153
  val rename_wrt_term: term -> (string * 'a) list -> (string * 'a) list
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   154
  val eq_ix: indexname * indexname -> bool
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   155
  val eq_tvar: (indexname * sort) * (indexname * sort) -> bool
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   156
  val eq_var: (indexname * typ) * (indexname * typ) -> bool
33537
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   157
  val aconv_untyped: term * term -> bool
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   158
  val could_unify: term * term -> bool
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   159
  val strip_abs_eta: int -> term -> (string * typ) list * term
48263
94a7dc2276e4 prefer canonical fold_rev;
wenzelm
parents: 46219
diff changeset
   160
  val match_bvars: (term * term) -> (string * string) list -> (string * string) list
22031
70583c3f3fa5 added map_abs_vars
haftmann
parents: 21975
diff changeset
   161
  val map_abs_vars: (string -> string) -> term -> term
12981
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   162
  val rename_abs: term -> term -> term -> term option
42083
e1209fc7ecdc added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
wenzelm
parents: 40844
diff changeset
   163
  val is_open: term -> bool
e1209fc7ecdc added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
wenzelm
parents: 40844
diff changeset
   164
  val is_dependent: term -> bool
61655
f217bbe4e93e avoid vacuous quantification, as usual for shared variable scope;
wenzelm
parents: 61248
diff changeset
   165
  val term_name: term -> string
60404
422b63ef0147 clarified abstracted term bindings (again, see c8384ff11711);
wenzelm
parents: 60311
diff changeset
   166
  val dependent_lambda_name: string * term -> term -> term
32198
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   167
  val lambda_name: string * term -> term -> term
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   168
  val close_schematic_term: term -> term
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   169
  val maxidx_typ: typ -> int -> int
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   170
  val maxidx_typs: typ list -> int -> int
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   171
  val maxidx_term: term -> int -> int
63619
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   172
  val could_beta_contract: term -> bool
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   173
  val could_eta_contract: term -> bool
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   174
  val could_beta_eta_contract: term -> bool
74446
wenzelm
parents: 74410
diff changeset
   175
  val used_free: string -> term -> bool
74525
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
   176
  exception USED_FREE of string * term
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
   177
  val dest_abs_fresh: string -> term -> (string * typ) * term
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
   178
  val dest_abs_global: term -> (string * typ) * term
18253
0626a0a217ec added dummy_pattern;
wenzelm
parents: 18183
diff changeset
   179
  val dummy_pattern: typ -> term
45156
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 44241
diff changeset
   180
  val dummy: term
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 44241
diff changeset
   181
  val dummy_prop: term
22723
a3a856313bcf export is_dummy_pattern;
wenzelm
parents: 22651
diff changeset
   182
  val is_dummy_pattern: term -> bool
24733
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
   183
  val free_dummy_patterns: term -> Name.context -> term * Name.context
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   184
  val no_dummy_patterns: term -> term
24762
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
   185
  val replace_dummy_patterns: term -> int -> term * int
16035
31bd65f7b22a added show_dummy_patterns;
wenzelm
parents: 15986
diff changeset
   186
  val show_dummy_patterns: term -> term
14786
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
   187
  val string_of_vname: indexname -> string
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
   188
  val string_of_vname': indexname -> string
4444
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   189
end;
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   190
fa05a79b3e97 term order;
wenzelm
parents: 4286
diff changeset
   191
structure Term: TERM =
1364
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
   192
struct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   193
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   194
(*Indexnames can be quickly renamed by adding an offset to the integer part,
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   195
  for resolution.*)
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   196
type indexname = string * int;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   197
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   198
(*Types are classified by sorts.*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
type class = string;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   200
type sort  = class list;
14829
cfa5fe01a7b7 moved read_int etc. to library.ML; added type 'arity';
wenzelm
parents: 14786
diff changeset
   201
type arity = string * sort list * sort;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   202
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   203
(*The sorts attached to TFrees and TVars specify the sort of that variable.*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   204
datatype typ = Type  of string * typ list
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   205
             | TFree of string * sort
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   206
             | TVar  of indexname * sort;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   207
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   208
(*Terms.  Bound variables are indicated by depth number.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   209
  Free variables, (scheme) variables and constants have names.
4626
51dd12f34c78 tuned comments;
wenzelm
parents: 4604
diff changeset
   210
  An term is "closed" if every bound variable of level "lev"
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   211
  is enclosed by at least "lev" abstractions.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   212
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   213
  It is possible to create meaningless terms containing loose bound vars
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   214
  or type mismatches.  But such terms are not allowed in rules. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   215
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   216
datatype term =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   217
    Const of string * typ
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   218
  | Free  of string * typ
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   219
  | Var   of indexname * typ
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   220
  | Bound of int
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   221
  | Abs   of string*typ*term
3965
1d7b53e6a2cb made Poly/ML happy, but SML/NJ unhappy;
wenzelm
parents: 3958
diff changeset
   222
  | op $  of term*term;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   223
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   224
(*Errors involving type mismatches*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   225
exception TYPE of string * typ list * term list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   226
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   227
(*Errors errors involving terms*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   228
exception TERM of string * term list;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   229
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   230
(*Note variable naming conventions!
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   231
    a,b,c: string
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   232
    f,g,h: functions (including terms of function type)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   233
    i,j,m,n: int
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   234
    t,u: term
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   235
    v,w: indexnames
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   236
    x,y: any
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   237
    A,B,C: term (denoting formulae)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   238
    T,U: typ
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   239
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   240
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   241
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   242
(** Types **)
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   243
21353
cfee13454195 added dummyS;
wenzelm
parents: 21013
diff changeset
   244
(*dummies for type-inference etc.*)
cfee13454195 added dummyS;
wenzelm
parents: 21013
diff changeset
   245
val dummyS = [""];
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   246
val dummyT = Type ("dummy", []);
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   247
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   248
fun no_dummyT typ =
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   249
  let
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   250
    fun check (T as Type ("dummy", _)) =
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   251
          raise TYPE ("Illegal occurrence of '_' dummy type", [T], [])
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   252
      | check (Type (_, Ts)) = List.app check Ts
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   253
      | check _ = ();
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   254
  in check typ; typ end;
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   255
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   256
fun S --> T = Type("fun",[S,T]);
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   257
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   258
(*handy for multiple args: [T1,...,Tn]--->T  gives  T1-->(T2--> ... -->T)*)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   259
val op ---> = Library.foldr (op -->);
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   260
67703
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   261
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   262
(** Discriminators **)
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   263
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   264
fun is_Type (Type _) = true
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   265
  | is_Type _ = false;
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   266
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   267
fun is_TFree (TFree _) = true
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   268
  | is_TFree _ = false;
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   269
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   270
fun is_TVar (TVar _) = true
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   271
  | is_TVar _ = false;
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   272
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   273
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   274
(** Destructors **)
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   275
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   276
fun dest_Type (Type x) = x
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   277
  | dest_Type T = raise TYPE ("dest_Type", [T], []);
67703
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   278
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   279
fun dest_TFree (TFree x) = x
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   280
  | dest_TFree T = raise TYPE ("dest_TFree", [T], []);
8c4806fe827f tuned signature -- eliminated clones;
wenzelm
parents: 63619
diff changeset
   281
15914
2a8f86685745 lucas - added dest_TVar and dest_TFree.
dixon
parents: 15797
diff changeset
   282
fun dest_TVar (TVar x) = x
2a8f86685745 lucas - added dest_TVar and dest_TFree.
dixon
parents: 15797
diff changeset
   283
  | dest_TVar T = raise TYPE ("dest_TVar", [T], []);
6033
c8c69a4a7762 moved dest_Type to term.ML from HOL/Tools/primrec_package
paulson
parents: 5986
diff changeset
   284
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   285
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   286
(** Discriminators **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   287
7318
768fab6dae74 Corrected two busg in the simplifier.
nipkow
parents: 6963
diff changeset
   288
fun is_Bound (Bound _) = true
768fab6dae74 Corrected two busg in the simplifier.
nipkow
parents: 6963
diff changeset
   289
  | is_Bound _         = false;
768fab6dae74 Corrected two busg in the simplifier.
nipkow
parents: 6963
diff changeset
   290
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   291
fun is_Const (Const _) = true
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   292
  | is_Const _ = false;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   293
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   294
fun is_Free (Free _) = true
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   295
  | is_Free _ = false;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   296
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   297
fun is_Var (Var _) = true
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   298
  | is_Var _ = false;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   299
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   300
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   301
(** Destructors **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   302
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   303
fun dest_Const (Const x) =  x
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   304
  | dest_Const t = raise TERM("dest_Const", [t]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   305
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   306
fun dest_Free (Free x) =  x
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   307
  | dest_Free t = raise TERM("dest_Free", [t]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   308
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   309
fun dest_Var (Var x) =  x
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   310
  | dest_Var t = raise TERM("dest_Var", [t]);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   311
35227
d67857e3a8c0 added dest_comb
haftmann
parents: 34922
diff changeset
   312
fun dest_comb (t1 $ t2) = (t1, t2)
d67857e3a8c0 added dest_comb
haftmann
parents: 34922
diff changeset
   313
  | dest_comb t = raise TERM("dest_comb", [t]);
d67857e3a8c0 added dest_comb
haftmann
parents: 34922
diff changeset
   314
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   315
40841
wenzelm
parents: 40840
diff changeset
   316
fun domain_type (Type ("fun", [T, _])) = T;
wenzelm
parents: 40840
diff changeset
   317
wenzelm
parents: 40840
diff changeset
   318
fun range_type (Type ("fun", [_, U])) = U;
4064
9c18a0c9b6f8 New syntax function for types
paulson
parents: 4017
diff changeset
   319
40840
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 39293
diff changeset
   320
fun dest_funT (Type ("fun", [T, U])) = (T, U)
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 39293
diff changeset
   321
  | dest_funT T = raise TYPE ("dest_funT", [T], []);
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 39293
diff changeset
   322
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 39293
diff changeset
   323
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   324
(*maps  [T1,...,Tn]--->T  to the list  [T1,T2,...,Tn]*)
40841
wenzelm
parents: 40840
diff changeset
   325
fun binder_types (Type ("fun", [T, U])) = T :: binder_types U
wenzelm
parents: 40840
diff changeset
   326
  | binder_types _ = [];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   327
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   328
(*maps  [T1,...,Tn]--->T  to T*)
40841
wenzelm
parents: 40840
diff changeset
   329
fun body_type (Type ("fun", [_, U])) = body_type U
wenzelm
parents: 40840
diff changeset
   330
  | body_type T = T;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   331
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   332
(*maps  [T1,...,Tn]--->T  to   ([T1,T2,...,Tn], T)*)
40841
wenzelm
parents: 40840
diff changeset
   333
fun strip_type T = (binder_types T, body_type T);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   334
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   335
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   336
(*Compute the type of the term, checking that combinations are well-typed
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   337
  Ts = [T0,T1,...] holds types of bound variables 0, 1, ...*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   338
fun type_of1 (Ts, Const (_,T)) = T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   339
  | type_of1 (Ts, Free  (_,T)) = T
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 30144
diff changeset
   340
  | type_of1 (Ts, Bound i) = (nth Ts i
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 42083
diff changeset
   341
        handle General.Subscript => raise TYPE("type_of: bound variable", [], [Bound i]))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   342
  | type_of1 (Ts, Var (_,T)) = T
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   343
  | type_of1 (Ts, Abs (_,T,body)) = T --> type_of1(T::Ts, body)
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   344
  | type_of1 (Ts, f$u) =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   345
      let val U = type_of1(Ts,u)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   346
          and T = type_of1(Ts,f)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   347
      in case T of
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   348
            Type("fun",[T1,T2]) =>
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   349
              if T1=U then T2  else raise TYPE
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   350
                    ("type_of: type mismatch in application", [T1,U], [f$u])
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   351
          | _ => raise TYPE
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   352
                    ("type_of: function type is expected in application",
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   353
                     [T,U], [f$u])
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   354
      end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   355
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   356
fun type_of t : typ = type_of1 ([],t);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   357
73351
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   358
(*Determine the type of a term, with minimal checking*)
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   359
local
61
f8c1922b78e3 Pure/term/fastype_of1: renamed from fastype_of
lcp
parents: 40
diff changeset
   360
73351
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   361
fun fastype_of_term Ts (Abs (_, T, t)) = T --> fastype_of_term (T :: Ts) t
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   362
  | fastype_of_term Ts (t $ _) = range_type_of Ts t
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   363
  | fastype_of_term Ts a = fastype_of_atom Ts a
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   364
and fastype_of_atom _ (Const (_, T)) = T
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   365
  | fastype_of_atom _ (Free (_, T)) = T
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   366
  | fastype_of_atom _ (Var (_, T)) = T
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   367
  | fastype_of_atom Ts (Bound i) = fastype_of_bound Ts i
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   368
and fastype_of_bound (T :: Ts) i = if i = 0 then T else fastype_of_bound Ts (i - 1)
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   369
  | fastype_of_bound [] i = raise TERM ("fastype_of: Bound", [Bound i])
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   370
and range_type_of Ts (Abs (_, T, u)) = fastype_of_term (T :: Ts) u
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   371
  | range_type_of Ts (t $ u) = range_type_ofT (t $ u) (range_type_of Ts t)
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   372
  | range_type_of Ts a = range_type_ofT a (fastype_of_atom Ts a)
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   373
and range_type_ofT _ (Type ("fun", [_, T])) = T
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   374
  | range_type_ofT t _ = raise TERM ("fastype_of: expected function type", [t]);
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   375
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   376
in
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   377
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   378
val fastype_of1 = uncurry fastype_of_term;
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   379
val fastype_of = fastype_of_term [];
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   380
88dd8a6a42ba slightly more efficient Term.fastype_of (only little impact in regular applications);
wenzelm
parents: 67721
diff changeset
   381
end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   382
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   383
(*Determine the argument type of a function*)
22908
ed66fbbe4a62 tuned argument_type_of;
wenzelm
parents: 22723
diff changeset
   384
fun argument_type_of tm k =
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   385
  let
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   386
    fun argT i (Type ("fun", [T, U])) = if i = 0 then T else argT (i - 1) U
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   387
      | argT _ T = raise TYPE ("argument_type_of", [T], []);
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   388
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   389
    fun arg 0 _ (Abs (_, T, _)) = T
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   390
      | arg i Ts (Abs (_, T, t)) = arg (i - 1) (T :: Ts) t
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   391
      | arg i Ts (t $ _) = arg (i + 1) Ts t
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   392
      | arg i Ts a = argT i (fastype_of1 (Ts, a));
22908
ed66fbbe4a62 tuned argument_type_of;
wenzelm
parents: 22723
diff changeset
   393
  in arg k [] tm end;
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   394
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   395
46219
426ed18eba43 discontinued old-style Term.list_abs in favour of plain Term.abs;
wenzelm
parents: 46218
diff changeset
   396
fun abs (x, T) t = Abs (x, T, t);
10806
2eba1c06592c added list_abs;
wenzelm
parents: 10666
diff changeset
   397
79228
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   398
fun strip_abs (Abs (a, T, t)) = strip_abs t |>> cons (a, T)
18927
2e5b0f3f1418 added strip_abs
haftmann
parents: 18893
diff changeset
   399
  | strip_abs t = ([], t);
2e5b0f3f1418 added strip_abs
haftmann
parents: 18893
diff changeset
   400
79228
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   401
fun strip_abs_body (Abs (_, _, t)) = strip_abs_body t
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   402
  | strip_abs_body t = t;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   403
79228
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   404
fun strip_abs_vars (Abs (a, T, t)) = strip_abs_vars t |> cons (a, T)
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   405
  | strip_abs_vars _ = [];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   406
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   407
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   408
fun strip_qnt_body qnt =
79228
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   409
  let
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   410
    fun strip (tm as Const (c, _) $ Abs (_, _, t)) = if c = qnt then strip t else tm
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   411
      | strip t = t;
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   412
  in strip end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   413
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   414
fun strip_qnt_vars qnt =
79228
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   415
  let
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   416
    fun strip (Const (c, _) $ Abs (a, T, t)) = if c = qnt then (a, T) :: strip t else []
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   417
      | strip _ = [];
e81b7689b264 clarified ML;
wenzelm
parents: 79202
diff changeset
   418
  in strip end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   419
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   420
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   421
(*maps   (f, [t1,...,tn])  to  f(t1,...,tn)*)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   422
val list_comb : term * term list -> term = Library.foldl (op $);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   423
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   424
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   425
(*maps   f(t1,...,tn)  to  (f, [t1,...,tn]) ; naturally tail-recursive*)
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   426
fun strip_comb u : term * term list =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   427
    let fun stripc (f$t, ts) = stripc (f, t::ts)
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   428
        |   stripc  x =  x
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   429
    in  stripc(u,[])  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   430
74577
d4829a7333e2 clarified instantiation: local beta reduction after substitution, as for Envir.expand_term_defs;
wenzelm
parents: 74525
diff changeset
   431
fun args_of u =
d4829a7333e2 clarified instantiation: local beta reduction after substitution, as for Envir.expand_term_defs;
wenzelm
parents: 74525
diff changeset
   432
    let fun args (f $ x) xs = args f (x :: xs)
d4829a7333e2 clarified instantiation: local beta reduction after substitution, as for Envir.expand_term_defs;
wenzelm
parents: 74525
diff changeset
   433
        |   args _ xs = xs
d4829a7333e2 clarified instantiation: local beta reduction after substitution, as for Envir.expand_term_defs;
wenzelm
parents: 74525
diff changeset
   434
    in args u [] end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   435
63611
fb63942e470e tuned whitespace;
wenzelm
parents: 62529
diff changeset
   436
(*maps   f(t1,...,tn)  to  f , which is never a combination*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   437
fun head_of (f$t) = head_of f
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   438
  | head_of u = u;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   439
16599
34f99c3221bb tuned sort_ord: pointer_eq;
wenzelm
parents: 16589
diff changeset
   440
(*number of atoms and abstractions in a term*)
34f99c3221bb tuned sort_ord: pointer_eq;
wenzelm
parents: 16589
diff changeset
   441
fun size_of_term tm =
34f99c3221bb tuned sort_ord: pointer_eq;
wenzelm
parents: 16589
diff changeset
   442
  let
30144
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   443
    fun add_size (t $ u) n = add_size t (add_size u n)
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   444
      | add_size (Abs (_ ,_, t)) n = add_size t (n + 1)
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   445
      | add_size _ n = n + 1;
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   446
  in add_size tm 0 end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   447
30144
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   448
(*number of atoms and constructors in a type*)
29882
29154e67731d New command find_consts searching for constants by type (by Timothy Bourke).
kleing
parents: 29286
diff changeset
   449
fun size_of_typ ty =
29154e67731d New command find_consts searching for constants by type (by Timothy Bourke).
kleing
parents: 29286
diff changeset
   450
  let
30144
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   451
    fun add_size (Type (_, tys)) n = fold add_size tys (n + 1)
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   452
      | add_size _ n = n + 1;
56ae4893e8ae tuned/unified size_of_term and size_of_typ, eliminated obsolete foldl;
wenzelm
parents: 29882
diff changeset
   453
  in add_size ty 0 end;
29882
29154e67731d New command find_consts searching for constants by type (by Timothy Bourke).
kleing
parents: 29286
diff changeset
   454
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   455
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   456
(* map types and terms *)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   457
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   458
fun map_atyps_same f =
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   459
  let
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   460
    fun typ (Type (a, Ts)) = Type (a, Same.map typ Ts)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   461
      | typ T = f T;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   462
  in typ end;
18847
5fac129ae936 added map_atype, map_aterms
haftmann
parents: 18253
diff changeset
   463
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   464
fun map_aterms_same f =
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   465
  let
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   466
    fun term (Abs (x, T, t)) = Abs (x, T, term t)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   467
      | term (t $ u) =
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   468
          (term t $ Same.commit term u
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   469
            handle Same.SAME => t $ term u)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   470
      | term a = f a;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   471
  in term end;
949
83c588d6fee9 Changed treatment of during type inference internally generated type
nipkow
parents: 728
diff changeset
   472
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   473
fun map_types_same f =
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   474
  let
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   475
    fun term (Const (a, T)) = Const (a, f T)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   476
      | term (Free (a, T)) = Free (a, f T)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   477
      | term (Var (xi, T)) = Var (xi, f T)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   478
      | term (Bound _) = raise Same.SAME
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   479
      | term (Abs (x, T, t)) =
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   480
          (Abs (x, f T, Same.commit term t)
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   481
            handle Same.SAME => Abs (x, T, term t))
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   482
      | term (t $ u) =
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   483
          (term t $ Same.commit term u
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   484
            handle Same.SAME => t $ term u);
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   485
  in term end;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   486
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   487
val map_atyps = Same.commit o map_atyps_same;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   488
val map_aterms = Same.commit o map_aterms_same;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   489
val map_types = Same.commit o map_types_same;
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   490
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   491
fun map_type_tvar f = map_atyps (fn TVar x => f x | _ => raise Same.SAME);
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79383
diff changeset
   492
fun map_type_tfree f = map_atyps (fn TFree x => f x | _ => raise Same.SAME);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   493
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   494
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   495
(* fold types and terms *)
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   496
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   497
fun fold_atyps f (Type (_, Ts)) = fold (fold_atyps f) Ts
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   498
  | fold_atyps f T = f T;
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   499
35986
b7fcca3d9a44 added Term.fold_atyps_sorts convenience;
wenzelm
parents: 35227
diff changeset
   500
fun fold_atyps_sorts f =
b7fcca3d9a44 added Term.fold_atyps_sorts convenience;
wenzelm
parents: 35227
diff changeset
   501
  fold_atyps (fn T as TFree (_, S) => f (T, S) | T as TVar (_, S) => f (T, S));
b7fcca3d9a44 added Term.fold_atyps_sorts convenience;
wenzelm
parents: 35227
diff changeset
   502
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   503
fun fold_aterms f (t $ u) = fold_aterms f t #> fold_aterms f u
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   504
  | fold_aterms f (Abs (_, _, t)) = fold_aterms f t
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   505
  | fold_aterms f a = f a;
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   506
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   507
fun fold_term_types f (t as Const (_, T)) = f t T
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   508
  | fold_term_types f (t as Free (_, T)) = f t T
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   509
  | fold_term_types f (t as Var (_, T)) = f t T
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   510
  | fold_term_types f (Bound _) = I
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   511
  | fold_term_types f (t as Abs (_, T, b)) = f t T #> fold_term_types f b
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   512
  | fold_term_types f (t $ u) = fold_term_types f t #> fold_term_types f u;
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   513
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   514
fun fold_types f = fold_term_types (K f);
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   515
24483
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   516
fun replace_types (Const (c, _)) (T :: Ts) = (Const (c, T), Ts)
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   517
  | replace_types (Free (x, _)) (T :: Ts) = (Free (x, T), Ts)
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   518
  | replace_types (Var (xi, _)) (T :: Ts) = (Var (xi, T), Ts)
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   519
  | replace_types (Bound i) Ts = (Bound i, Ts)
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   520
  | replace_types (Abs (x, _, b)) (T :: Ts) =
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   521
      let val (b', Ts') = replace_types b Ts
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   522
      in (Abs (x, T, b'), Ts') end
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   523
  | replace_types (t $ u) Ts =
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   524
      let
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   525
        val (t', Ts') = replace_types t Ts;
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   526
        val (u', Ts'') = replace_types u Ts';
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   527
      in (t' $ u', Ts'') end;
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   528
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   529
fun burrow_types f ts =
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   530
  let
49674
dbadb4d03cbc report sort assignment of visible type variables;
wenzelm
parents: 48263
diff changeset
   531
    val Ts = rev ((fold o fold_types) cons ts []);
24483
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   532
    val Ts' = f Ts;
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   533
    val (ts', []) = fold_map replace_types ts Ts';
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   534
  in ts' end;
0b1a8fd26da9 added burrow_types;
wenzelm
parents: 23178
diff changeset
   535
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   536
(*collect variables*)
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   537
val add_tvar_namesT = fold_atyps (fn TVar (xi, _) => insert (op =) xi | _ => I);
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   538
val add_tvar_names = fold_types add_tvar_namesT;
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   539
val add_tvarsT = fold_atyps (fn TVar v => insert (op =) v | _ => I);
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   540
val add_tvars = fold_types add_tvarsT;
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   541
val add_var_names = fold_aterms (fn Var (xi, _) => insert (op =) xi | _ => I);
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   542
val add_vars = fold_aterms (fn Var v => insert (op =) v | _ => I);
33697
wenzelm
parents: 33537
diff changeset
   543
val add_tfree_namesT = fold_atyps (fn TFree (a, _) => insert (op =) a | _ => I);
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   544
val add_tfree_names = fold_types add_tfree_namesT;
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   545
val add_tfreesT = fold_atyps (fn TFree v => insert (op =) v | _ => I);
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   546
val add_tfrees = fold_types add_tfreesT;
29257
660234d959f7 provide canonical add_tvar_namesT, add_tvar_names, add_tfree_namesT, add_tfree_names, add_free_names;
wenzelm
parents: 29256
diff changeset
   547
val add_free_names = fold_aterms (fn Free (x, _) => insert (op =) x | _ => I);
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   548
val add_frees = fold_aterms (fn Free v => insert (op =) v | _ => I);
29286
5de880bda02d added canonical add_const_names, add_consts;
wenzelm
parents: 29280
diff changeset
   549
val add_const_names = fold_aterms (fn Const (c, _) => insert (op =) c | _ => I);
5de880bda02d added canonical add_const_names, add_consts;
wenzelm
parents: 29280
diff changeset
   550
val add_consts = fold_aterms (fn Const c => insert (op =) c | _ => I);
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   551
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   552
(*extra type variables in a term, not covered by its type*)
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   553
fun hidden_polymorphism t =
21682
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   554
  let
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   555
    val T = fastype_of t;
21682
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   556
    val tvarsT = add_tvarsT T [];
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   557
    val extra_tvars = fold_types (fold_atyps
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   558
      (fn TVar v => if member (op =) tvarsT v then I else insert (op =) v | _ => I)) t [];
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   559
  in extra_tvars end;
53c9a026fcb7 added hidden_polymorphism (from variable.ML);
wenzelm
parents: 21493
diff changeset
   560
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   561
29278
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   562
(* renaming variables *)
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   563
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   564
val declare_typ_names = fold_atyps (fn TFree (a, _) => Name.declare a | _ => I);
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   565
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   566
fun declare_term_names tm =
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   567
  fold_aterms
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30285
diff changeset
   568
    (fn Const (a, _) => Name.declare (Long_Name.base_name a)
29278
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   569
      | Free (a, _) => Name.declare a
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   570
      | _ => I) tm #>
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   571
  fold_types declare_typ_names tm;
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   572
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   573
val declare_term_frees = fold_aterms (fn Free (x, _) => Name.declare x | _ => I);
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   574
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   575
fun variant_frees t frees =
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 43324
diff changeset
   576
  fst (fold_map Name.variant (map fst frees) (declare_term_names t Name.context)) ~~
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 43324
diff changeset
   577
    map snd frees;
29278
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   578
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   579
fun rename_wrt_term t frees = rev (variant_frees t frees);  (*reversed result!*)
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   580
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   581
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   582
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   583
(** Comparing terms **)
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   584
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   585
(* variables *)
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   586
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   587
fun eq_ix ((x, i): indexname, (y, j)) = i = j andalso x = y;
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   588
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   589
fun eq_tvar ((xi, S: sort), (xi', S')) = eq_ix (xi, xi') andalso S = S';
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   590
fun eq_var ((xi, T: typ), (xi', T')) = eq_ix (xi, xi') andalso T = T';
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   591
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   592
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   593
(* alpha equivalence *)
20511
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   594
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   595
fun tm1 aconv tm2 =
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   596
  pointer_eq (tm1, tm2) orelse
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   597
    (case (tm1, tm2) of
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   598
      (t1 $ u1, t2 $ u2) => t1 aconv t2 andalso u1 aconv u2
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   599
    | (Abs (_, T1, t1), Abs (_, T2, t2)) => t1 aconv t2 andalso T1 = T2
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   600
    | (a1, a2) => a1 = a2);
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   601
33537
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   602
fun aconv_untyped (tm1, tm2) =
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   603
  pointer_eq (tm1, tm2) orelse
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   604
    (case (tm1, tm2) of
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   605
      (t1 $ u1, t2 $ u2) => aconv_untyped (t1, t2) andalso aconv_untyped (u1, u2)
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   606
    | (Abs (_, _, t1), Abs (_, _, t2)) => aconv_untyped (t1, t2)
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   607
    | (Const (a, _), Const (b, _)) => a = b
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   608
    | (Free (x, _), Free (y, _)) => x = y
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   609
    | (Var (xi, _), Var (yj, _)) => xi = yj
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   610
    | (Bound i, Bound j) => i = j
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   611
    | _ => false);
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33063
diff changeset
   612
20511
c7daff0a3193 removed obsolete aconvs (use eq_list aconv);
wenzelm
parents: 20331
diff changeset
   613
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   614
(*A fast unification filter: true unless the two terms cannot be unified.
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   615
  Terms must be NORMAL.  Treats all Vars as distinct. *)
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   616
fun could_unify (t, u) =
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   617
  let
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   618
    fun matchrands (f $ t) (g $ u) = could_unify (t, u) andalso matchrands f g
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   619
      | matchrands _ _ = true;
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   620
  in
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   621
    case (head_of t, head_of u) of
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   622
      (_, Var _) => true
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   623
    | (Var _, _) => true
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   624
    | (Const (a, _), Const (b, _)) => a = b andalso matchrands t u
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   625
    | (Free (a, _), Free (b, _)) => a = b andalso matchrands t u
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   626
    | (Bound i, Bound j) => i = j andalso matchrands t u
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   627
    | (Abs _, _) => true   (*because of possible eta equality*)
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   628
    | (_, Abs _) => true
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   629
    | _ => false
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   630
  end;
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   631
16570
861b9fa2c98c Added term_lpo
nipkow
parents: 16537
diff changeset
   632
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   633
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   634
(** Connectives of higher order logic **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   635
24850
0cfd722ab579 Name.uu, Name.aT;
wenzelm
parents: 24762
diff changeset
   636
fun aT S = TFree (Name.aT, S);
19394
9f69613362c1 added aT (from axclass.ML);
wenzelm
parents: 19065
diff changeset
   637
375
d7ae7ac22d48 added logicC: class, logicS: sort;
wenzelm
parents: 61
diff changeset
   638
fun itselfT ty = Type ("itself", [ty]);
24850
0cfd722ab579 Name.uu, Name.aT;
wenzelm
parents: 24762
diff changeset
   639
val a_itselfT = itselfT (TFree (Name.aT, []));
375
d7ae7ac22d48 added logicC: class, logicS: sort;
wenzelm
parents: 61
diff changeset
   640
46217
7b19666f0e3d renamed Term.all to Logic.all_const, in accordance to HOLogic.all_const;
wenzelm
parents: 46215
diff changeset
   641
val propT : typ = Type ("prop",[]);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   642
67721
5348bea4accd eliminated ASCII syntax from Pure bootstrap;
wenzelm
parents: 67703
diff changeset
   643
(*maps  \<And>x1...xn. t   to   t*)
60311
599c4a27785c tuned whitespace;
wenzelm
parents: 56245
diff changeset
   644
fun strip_all_body (Const ("Pure.all", _) $ Abs (_, _, t)) = strip_all_body t
599c4a27785c tuned whitespace;
wenzelm
parents: 56245
diff changeset
   645
  | strip_all_body t = t;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   646
67721
5348bea4accd eliminated ASCII syntax from Pure bootstrap;
wenzelm
parents: 67703
diff changeset
   647
(*maps  \<And>x1...xn. t   to   [x1, ..., xn]*)
60311
599c4a27785c tuned whitespace;
wenzelm
parents: 56245
diff changeset
   648
fun strip_all_vars (Const ("Pure.all", _) $ Abs (a, T, t)) = (a, T) :: strip_all_vars t
599c4a27785c tuned whitespace;
wenzelm
parents: 56245
diff changeset
   649
  | strip_all_vars t = [];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   650
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   651
(*increments a term's non-local bound variables
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   652
  required when moving a term within abstractions
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   653
     inc is  increment for bound variables
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   654
     lev is  level at which a bound variable is considered 'loose'*)
79172
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   655
fun incr_bv_same inc =
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   656
  if inc = 0 then fn _ => Same.same
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   657
  else
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   658
    let
79285
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79282
diff changeset
   659
      fun term lev (Bound i) =
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79282
diff changeset
   660
            if i >= lev then Bound (i + inc) else raise Same.SAME
79172
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   661
        | term lev (Abs (a, T, t)) = Abs (a, T, term (lev + 1) t)
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   662
        | term lev (t $ u) =
79285
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79282
diff changeset
   663
            (term lev t $ Same.commit (term lev) u
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79282
diff changeset
   664
              handle Same.SAME => t $ term lev u)
79172
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   665
        | term _ _ = raise Same.SAME;
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   666
    in term end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   667
79172
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   668
fun incr_bv inc lev = Same.commit (incr_bv_same inc lev);
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   669
0bea00f77ba3 minor performance tuning: regular Same.operation;
wenzelm
parents: 79170
diff changeset
   670
fun incr_boundvars inc = incr_bv inc 0;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   671
79243
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   672
(*Scan a pair of terms; while they are similar, accumulate corresponding bound vars*)
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   673
fun match_bvs (Abs (x, _, s), Abs (y, _, t)) =
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   674
      (x <> "" andalso y <> "") ? cons (x, y) #> match_bvs (s, t)
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   675
  | match_bvs (f $ s, g $ t) = match_bvs (s, t) #> match_bvs (f, g)
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   676
  | match_bvs _ = I;
12981
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   677
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   678
(* strip abstractions created by parameters *)
79243
0e15387c0300 tuned: more standard accumulation;
wenzelm
parents: 79232
diff changeset
   679
val match_bvars = apply2 strip_abs_body #> match_bvs;
12981
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   680
79244
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   681
fun map_abs_vars_same rename =
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   682
  let
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   683
    fun term (Abs (x, T, t)) =
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   684
          let val y = rename x
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   685
          in if x = y then Abs (x, T, term t) else Abs (y, T, Same.commit term t) end
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   686
      | term (t $ u) = (term t $ Same.commit term u handle Same.SAME => t $ term u)
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   687
      | term _ = raise Same.SAME;
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   688
  in term end;
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   689
197b155f8818 minor performance tuning: prefer Same.operation;
wenzelm
parents: 79243
diff changeset
   690
fun map_abs_vars rename = Same.commit (map_abs_vars_same rename);
22031
70583c3f3fa5 added map_abs_vars
haftmann
parents: 21975
diff changeset
   691
12981
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   692
fun rename_abs pat obj t =
f48de47c32d6 added match_bvars, rename_abs (from thm.ML);
wenzelm
parents: 12902
diff changeset
   693
  let
79250
1414443e11c6 minor performance tuning;
wenzelm
parents: 79248
diff changeset
   694
    val renaming = Symtab.make_distinct (match_bvs (pat, obj) []);
1414443e11c6 minor performance tuning;
wenzelm
parents: 79248
diff changeset
   695
    fun rename x = perhaps (Symtab.lookup renaming) x;
1414443e11c6 minor performance tuning;
wenzelm
parents: 79248
diff changeset
   696
  in if Symtab.forall (op =) renaming then NONE else Same.catch (map_abs_vars_same rename) t end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   697
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   698
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   699
   (Bound 0) is loose at level 0 *)
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   700
fun add_loose_bnos (Bound i, lev, js) =
20854
f9cf9e62d11c insert replacing ins ins_int ins_string
haftmann
parents: 20664
diff changeset
   701
        if i<lev then js else insert (op =) (i - lev) js
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   702
  | add_loose_bnos (Abs (_,_,t), lev, js) = add_loose_bnos (t, lev+1, js)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   703
  | add_loose_bnos (f$t, lev, js) =
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   704
        add_loose_bnos (f, lev, add_loose_bnos (t, lev, js))
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   705
  | add_loose_bnos (_, _, js) = js;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   706
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   707
fun loose_bnos t = add_loose_bnos (t, 0, []);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   708
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   709
(* loose_bvar(t,k) iff t contains a 'loose' bound variable referring to
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   710
   level k or beyond. *)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   711
fun loose_bvar(Bound i,k) = i >= k
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   712
  | loose_bvar(f$t, k) = loose_bvar(f,k) orelse loose_bvar(t,k)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   713
  | loose_bvar(Abs(_,_,t),k) = loose_bvar(t,k+1)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   714
  | loose_bvar _ = false;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   715
2792
6c17c5ec3d8b Avoid eta-contraction in the simplifier.
nipkow
parents: 2752
diff changeset
   716
fun loose_bvar1(Bound i,k) = i = k
6c17c5ec3d8b Avoid eta-contraction in the simplifier.
nipkow
parents: 2752
diff changeset
   717
  | loose_bvar1(f$t, k) = loose_bvar1(f,k) orelse loose_bvar1(t,k)
6c17c5ec3d8b Avoid eta-contraction in the simplifier.
nipkow
parents: 2752
diff changeset
   718
  | loose_bvar1(Abs(_,_,t),k) = loose_bvar1(t,k+1)
6c17c5ec3d8b Avoid eta-contraction in the simplifier.
nipkow
parents: 2752
diff changeset
   719
  | loose_bvar1 _ = false;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   720
42083
e1209fc7ecdc added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
wenzelm
parents: 40844
diff changeset
   721
fun is_open t = loose_bvar (t, 0);
e1209fc7ecdc added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
wenzelm
parents: 40844
diff changeset
   722
fun is_dependent t = loose_bvar1 (t, 0);
e1209fc7ecdc added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
wenzelm
parents: 40844
diff changeset
   723
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   724
(*Substitute arguments for loose bound variables.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   725
  Beta-reduction of arg(n-1)...arg0 into t replacing (Bound i) with (argi).
67721
5348bea4accd eliminated ASCII syntax from Pure bootstrap;
wenzelm
parents: 67703
diff changeset
   726
  Note that for ((\<lambda>x y. c) a b), the bound vars in c are x=1 and y=0
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   727
        and the appropriate call is  subst_bounds([b,a], c) .
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   728
  Loose bound variables >=n are reduced by "n" to
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   729
     compensate for the disappearance of lambdas.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   730
*)
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   731
fun subst_bounds_same args =
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   732
  if null args then fn _ => Same.same
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   733
  else
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   734
    let
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   735
      val n = length args;
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   736
      fun term lev (Bound i) =
79282
wenzelm
parents: 79250
diff changeset
   737
            if i < lev then raise Same.SAME   (*var is locally bound*)
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   738
            else if i - lev < n then incr_boundvars lev (nth args (i - lev))
79282
wenzelm
parents: 79250
diff changeset
   739
            else Bound (i - n)  (*loose: change it*)
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   740
        | term lev (Abs (a, T, t)) = Abs (a, T, term (lev + 1) t)
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   741
        | term lev (t $ u) =
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   742
            (term lev t $ Same.commit (term lev) u
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   743
              handle Same.SAME => t $ term lev u)
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   744
        | term _ _ = raise Same.SAME;
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   745
    in term end;
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   746
79198
wenzelm
parents: 79196
diff changeset
   747
fun subst_bounds (args: term list, body) : term =
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79198
diff changeset
   748
  if null args then body else Same.commit (subst_bounds_same args 0) body;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   749
2192
3bf092b5310b Optimizations: removal of polymorphic equality; one-argument case
paulson
parents: 2182
diff changeset
   750
(*Special case: one argument*)
79198
wenzelm
parents: 79196
diff changeset
   751
fun subst_bound (arg, body) : term =
19065
82e2d66f995b tuned subst_bound(s);
wenzelm
parents: 19014
diff changeset
   752
  let
79168
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   753
    fun term lev (Bound i) =
32020
9abf5d66606e use structure Same;
wenzelm
parents: 30364
diff changeset
   754
          if i < lev then raise Same.SAME   (*var is locally bound*)
19065
82e2d66f995b tuned subst_bound(s);
wenzelm
parents: 19014
diff changeset
   755
          else if i = lev then incr_boundvars lev arg
82e2d66f995b tuned subst_bound(s);
wenzelm
parents: 19014
diff changeset
   756
          else Bound (i - 1)   (*loose: change it*)
79168
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   757
      | term lev (Abs (a, T, t)) = Abs (a, T, term (lev + 1) t)
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   758
      | term lev (t $ u) =
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   759
          (term lev t $ Same.commit (term lev) u
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   760
            handle Same.SAME => t $ term lev u)
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79166
diff changeset
   761
      | term _ _ = raise Same.SAME;
79198
wenzelm
parents: 79196
diff changeset
   762
  in Same.commit (term 0) body end;
2192
3bf092b5310b Optimizations: removal of polymorphic equality; one-argument case
paulson
parents: 2182
diff changeset
   763
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   764
(*beta-reduce if possible, else form application*)
2192
3bf092b5310b Optimizations: removal of polymorphic equality; one-argument case
paulson
parents: 2182
diff changeset
   765
fun betapply (Abs(_,_,t), u) = subst_bound (u,t)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   766
  | betapply (f,u) = f$u;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   767
18183
a9f67248996a added betapplys;
wenzelm
parents: 18149
diff changeset
   768
val betapplys = Library.foldl betapply;
a9f67248996a added betapplys;
wenzelm
parents: 18149
diff changeset
   769
14786
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
   770
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   771
(*unfolding abstractions with substitution
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   772
  of bound variables and implicit eta-expansion*)
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   773
fun strip_abs_eta k t =
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   774
  let
29278
e9d148a808eb added declare_term_frees;
wenzelm
parents: 29270
diff changeset
   775
    val used = fold_aterms declare_term_frees t Name.context;
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   776
    fun strip_abs t (0, used) = (([], t), (0, used))
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   777
      | strip_abs (Abs (v, T, t)) (k, used) =
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   778
          let
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 43324
diff changeset
   779
            val (v', used') = Name.variant v used;
21013
b9321724c2cc fixed bug
haftmann
parents: 20854
diff changeset
   780
            val t' = subst_bound (Free (v', T), t);
20122
27255556b762 strip_abs_eta: proper use of Name.context;
wenzelm
parents: 20116
diff changeset
   781
            val ((vs, t''), (k', used'')) = strip_abs t' (k - 1, used');
27255556b762 strip_abs_eta: proper use of Name.context;
wenzelm
parents: 20116
diff changeset
   782
          in (((v', T) :: vs, t''), (k', used'')) end
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   783
      | strip_abs t (k, used) = (([], t), (k, used));
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   784
    fun expand_eta [] t _ = ([], t)
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   785
      | expand_eta (T::Ts) t used =
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   786
          let
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 43324
diff changeset
   787
            val (v, used') = Name.variant "" used;
20122
27255556b762 strip_abs_eta: proper use of Name.context;
wenzelm
parents: 20116
diff changeset
   788
            val (vs, t') = expand_eta Ts (t $ Free (v, T)) used';
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   789
          in ((v, T) :: vs, t') end;
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   790
    val ((vs1, t'), (k', used')) = strip_abs t (k, used);
40844
5895c525739d more direct use of binder_types/body_type;
wenzelm
parents: 40841
diff changeset
   791
    val Ts = fst (chop k' (binder_types (fastype_of t')));
20109
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   792
    val (vs2, t'') = expand_eta Ts t' used';
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   793
  in (vs1 @ vs2, t'') end;
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   794
47fef41c68fb added strip_abs_eta
haftmann
parents: 20100
diff changeset
   795
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   796
(*Substitute new for free occurrences of old in a term*)
29256
2f1759641087 removed unused head_name_of;
wenzelm
parents: 27335
diff changeset
   797
fun subst_free [] = I
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   798
  | subst_free pairs =
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   799
      let fun substf u =
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17271
diff changeset
   800
            case AList.lookup (op aconv) pairs u of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15472
diff changeset
   801
                SOME u' => u'
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15472
diff changeset
   802
              | NONE => (case u of Abs(a,T,t) => Abs(a, T, substf t)
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   803
                                 | t$u' => substf t $ substf u'
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
   804
                                 | _ => u)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   805
      in  substf  end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   806
13000
e56aedec11f3 structure Typtab;
wenzelm
parents: 12981
diff changeset
   807
(*Abstraction of the term "body" over its occurrences of v,
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   808
    which must contain no loose bound variables.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   809
  The resulting term is ready to become the body of an Abs.*)
16882
a0273f573f23 moved incr_tvar to logic.ML;
wenzelm
parents: 16863
diff changeset
   810
fun abstract_over (v, body) =
a0273f573f23 moved incr_tvar to logic.ML;
wenzelm
parents: 16863
diff changeset
   811
  let
79196
wenzelm
parents: 79176
diff changeset
   812
    fun term lev tm =
16990
7fceb965cf52 removed atless (use term_ord instead);
wenzelm
parents: 16943
diff changeset
   813
      if v aconv tm then Bound lev
16882
a0273f573f23 moved incr_tvar to logic.ML;
wenzelm
parents: 16863
diff changeset
   814
      else
16990
7fceb965cf52 removed atless (use term_ord instead);
wenzelm
parents: 16943
diff changeset
   815
        (case tm of
79196
wenzelm
parents: 79176
diff changeset
   816
          Abs (a, T, t) => Abs (a, T, term (lev + 1) t)
32020
9abf5d66606e use structure Same;
wenzelm
parents: 30364
diff changeset
   817
        | t $ u =>
79196
wenzelm
parents: 79176
diff changeset
   818
            (term lev t $ Same.commit (term lev) u
wenzelm
parents: 79176
diff changeset
   819
              handle Same.SAME => t $ term lev u)
32020
9abf5d66606e use structure Same;
wenzelm
parents: 30364
diff changeset
   820
        | _ => raise Same.SAME);
79196
wenzelm
parents: 79176
diff changeset
   821
  in Same.commit (term 0) body end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   822
32198
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   823
fun term_name (Const (x, _)) = Long_Name.base_name x
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   824
  | term_name (Free (x, _)) = x
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   825
  | term_name (Var ((x, _), _)) = x
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   826
  | term_name _ = Name.uu;
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   827
60404
422b63ef0147 clarified abstracted term bindings (again, see c8384ff11711);
wenzelm
parents: 60311
diff changeset
   828
fun dependent_lambda_name (x, v) t =
422b63ef0147 clarified abstracted term bindings (again, see c8384ff11711);
wenzelm
parents: 60311
diff changeset
   829
  let val t' = abstract_over (v, t)
422b63ef0147 clarified abstracted term bindings (again, see c8384ff11711);
wenzelm
parents: 60311
diff changeset
   830
  in if is_dependent t' then Abs (if x = "" then term_name v else x, fastype_of v, t') else t end;
422b63ef0147 clarified abstracted term bindings (again, see c8384ff11711);
wenzelm
parents: 60311
diff changeset
   831
32198
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   832
fun lambda_name (x, v) t =
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   833
  Abs (if x = "" then term_name v else x, fastype_of v, abstract_over (v, t));
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   834
9bdd47909ea8 lambda/cabs/all: named variants;
wenzelm
parents: 32020
diff changeset
   835
fun lambda v t = lambda_name ("", v) t;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   836
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43683
diff changeset
   837
fun absfree (a, T) body = Abs (a, T, abstract_over (Free (a, T), body));
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 43683
diff changeset
   838
fun absdummy T body = Abs (Name.uu_, T, body);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   839
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   840
(*Replace the ATOMIC term ti by ui;    inst = [(t1,u1), ..., (tn,un)].
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   841
  A simultaneous substitution:  [ (a,b), (b,a) ] swaps a and b.  *)
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   842
fun subst_atomic [] tm = tm
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   843
  | subst_atomic inst tm =
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   844
      let
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   845
        fun subst (Abs (a, T, body)) = Abs (a, T, subst body)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   846
          | subst (t $ u) = subst t $ subst u
18942
9228bbe9cd4e lambda: abstract over any const;
wenzelm
parents: 18927
diff changeset
   847
          | subst t = the_default t (AList.lookup (op aconv) inst t);
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   848
      in subst tm end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   849
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   850
(*Replace the ATOMIC type Ti by Ui;    inst = [(T1,U1), ..., (Tn,Un)].*)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   851
fun typ_subst_atomic [] ty = ty
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   852
  | typ_subst_atomic inst ty =
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   853
      let
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   854
        fun subst (Type (a, Ts)) = Type (a, map subst Ts)
18942
9228bbe9cd4e lambda: abstract over any const;
wenzelm
parents: 18927
diff changeset
   855
          | subst T = the_default T (AList.lookup (op = : typ * typ -> bool) inst T);
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   856
      in subst ty end;
15797
a63605582573 - Eliminated nodup_vars check.
berghofe
parents: 15632
diff changeset
   857
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   858
fun subst_atomic_types [] tm = tm
20548
8ef25fe585a8 renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents: 20531
diff changeset
   859
  | subst_atomic_types inst tm = map_types (typ_subst_atomic inst) tm;
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   860
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   861
fun typ_subst_TVars [] ty = ty
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   862
  | typ_subst_TVars inst ty =
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   863
      let
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   864
        fun subst (Type (a, Ts)) = Type (a, map subst Ts)
18942
9228bbe9cd4e lambda: abstract over any const;
wenzelm
parents: 18927
diff changeset
   865
          | subst (T as TVar (xi, _)) = the_default T (AList.lookup (op =) inst xi)
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   866
          | subst T = T;
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   867
      in subst ty end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   868
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   869
fun subst_TVars [] tm = tm
20548
8ef25fe585a8 renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents: 20531
diff changeset
   870
  | subst_TVars inst tm = map_types (typ_subst_TVars inst) tm;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   871
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   872
fun subst_Vars [] tm = tm
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   873
  | subst_Vars inst tm =
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   874
      let
18942
9228bbe9cd4e lambda: abstract over any const;
wenzelm
parents: 18927
diff changeset
   875
        fun subst (t as Var (xi, _)) = the_default t (AList.lookup (op =) inst xi)
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   876
          | subst (Abs (a, T, t)) = Abs (a, T, subst t)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   877
          | subst (t $ u) = subst t $ subst u
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   878
          | subst t = t;
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   879
      in subst tm end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   880
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   881
fun subst_vars ([], []) tm = tm
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   882
  | subst_vars ([], inst) tm = subst_Vars inst tm
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   883
  | subst_vars (instT, inst) tm =
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   884
      let
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   885
        fun subst (Const (a, T)) = Const (a, typ_subst_TVars instT T)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   886
          | subst (Free (a, T)) = Free (a, typ_subst_TVars instT T)
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
   887
          | subst (Var (xi, T)) =
17271
2756a73f63a5 introduced some new-style AList operations
haftmann
parents: 16990
diff changeset
   888
              (case AList.lookup (op =) inst xi of
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   889
                NONE => Var (xi, typ_subst_TVars instT T)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   890
              | SOME t => t)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   891
          | subst (t as Bound _) = t
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   892
          | subst (Abs (a, T, t)) = Abs (a, typ_subst_TVars instT T, subst t)
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   893
          | subst (t $ u) = subst t $ subst u;
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
   894
      in subst tm end;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   895
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   896
fun close_schematic_term t =
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   897
  let
56243
2e10a36b8d46 more qualified names;
wenzelm
parents: 56241
diff changeset
   898
    val extra_types = map (fn v => Const ("Pure.type", itselfT (TVar v))) (hidden_polymorphism t);
30285
a135bfab6e83 close_schematic_term: uniform order of types/terms;
wenzelm
parents: 30280
diff changeset
   899
    val extra_terms = map Var (add_vars t []);
a135bfab6e83 close_schematic_term: uniform order of types/terms;
wenzelm
parents: 30280
diff changeset
   900
  in fold lambda (extra_terms @ extra_types) t end;
25050
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   901
0dc445970b4b tuned hidden_polymorphism;
wenzelm
parents: 24982
diff changeset
   902
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   903
15573
cf53c2dcf440 new first_order test
paulson
parents: 15570
diff changeset
   904
(** Identifying first-order terms **)
cf53c2dcf440 new first_order test
paulson
parents: 15570
diff changeset
   905
20199
3170fea83ae7 is_funtype: do not export internal operation;
wenzelm
parents: 20160
diff changeset
   906
(*Differs from proofterm/is_fun in its treatment of TVar*)
29256
2f1759641087 removed unused head_name_of;
wenzelm
parents: 27335
diff changeset
   907
fun is_funtype (Type ("fun", [_, _])) = true
20199
3170fea83ae7 is_funtype: do not export internal operation;
wenzelm
parents: 20160
diff changeset
   908
  | is_funtype _ = false;
3170fea83ae7 is_funtype: do not export internal operation;
wenzelm
parents: 20160
diff changeset
   909
15573
cf53c2dcf440 new first_order test
paulson
parents: 15570
diff changeset
   910
(*Argument Ts is a reverse list of binder types, needed if term t contains Bound vars*)
29256
2f1759641087 removed unused head_name_of;
wenzelm
parents: 27335
diff changeset
   911
fun has_not_funtype Ts t = not (is_funtype (fastype_of1 (Ts, t)));
15573
cf53c2dcf440 new first_order test
paulson
parents: 15570
diff changeset
   912
16537
954495db0f07 export sort_ord;
wenzelm
parents: 16338
diff changeset
   913
(*First order means in all terms of the form f(t1,...,tn) no argument has a
16589
24c32abc8b84 first-order check now allows quantifiers
paulson
parents: 16570
diff changeset
   914
  function type. The supplied quantifiers are excluded: their argument always
24c32abc8b84 first-order check now allows quantifiers
paulson
parents: 16570
diff changeset
   915
  has a function type through a recursive call into its body.*)
16667
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   916
fun is_first_order quants =
16589
24c32abc8b84 first-order check now allows quantifiers
paulson
parents: 16570
diff changeset
   917
  let fun first_order1 Ts (Abs (_,T,body)) = first_order1 (T::Ts) body
16667
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   918
        | first_order1 Ts (Const(q,_) $ Abs(a,T,body)) =
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   919
            member (op =) quants q  andalso   (*it is a known quantifier*)
16589
24c32abc8b84 first-order check now allows quantifiers
paulson
parents: 16570
diff changeset
   920
            not (is_funtype T)   andalso first_order1 (T::Ts) body
16667
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   921
        | first_order1 Ts t =
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   922
            case strip_comb t of
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   923
                 (Var _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   924
               | (Free _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   925
               | (Const _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   926
               | (Bound _, ts) => forall (first_order1 Ts andf has_not_funtype Ts) ts
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   927
               | (Abs _, ts) => false (*not in beta-normal form*)
f56080acd176 tuned term_ord: less garbage;
wenzelm
parents: 16599
diff changeset
   928
               | _ => error "first_order: unexpected case"
16589
24c32abc8b84 first-order check now allows quantifiers
paulson
parents: 16570
diff changeset
   929
    in  first_order1 []  end;
15573
cf53c2dcf440 new first_order test
paulson
parents: 15570
diff changeset
   930
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   931
16990
7fceb965cf52 removed atless (use term_ord instead);
wenzelm
parents: 16943
diff changeset
   932
(* maximum index of typs and terms *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   933
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   934
fun maxidx_typ (TVar ((_, j), _)) i = Int.max (i, j)
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   935
  | maxidx_typ (Type (_, Ts)) i = maxidx_typs Ts i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   936
  | maxidx_typ (TFree _) i = i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   937
and maxidx_typs [] i = i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   938
  | maxidx_typs (T :: Ts) i = maxidx_typs Ts (maxidx_typ T i);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   939
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   940
fun maxidx_term (Var ((_, j), T)) i = maxidx_typ T (Int.max (i, j))
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   941
  | maxidx_term (Const (_, T)) i = maxidx_typ T i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   942
  | maxidx_term (Free (_, T)) i = maxidx_typ T i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   943
  | maxidx_term (Bound _) i = i
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   944
  | maxidx_term (Abs (_, T, t)) i = maxidx_term t (maxidx_typ T i)
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   945
  | maxidx_term (t $ u) i = maxidx_term u (maxidx_term t i);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   946
16710
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   947
fun maxidx_of_typ T = maxidx_typ T ~1;
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   948
fun maxidx_of_typs Ts = maxidx_typs Ts ~1;
3d6335ff3982 tuned maxidx_of_typ/typs/term;
wenzelm
parents: 16678
diff changeset
   949
fun maxidx_of_term t = maxidx_term t ~1;
13665
66e151df01c8 - removed flexpair
berghofe
parents: 13646
diff changeset
   950
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   951
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   952
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   953
(** misc syntax operations **)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   954
19909
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   955
(* substructure *)
4017
63878e2587a7 add_typ_classes, add_typ_tycons, add_term_classes, add_term_tycons,
wenzelm
parents: 3965
diff changeset
   956
61248
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   957
fun fold_subtypes f =
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   958
  let
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   959
    fun iter ty =
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   960
      (case ty of Type (_, Ts) => f ty #> fold iter Ts | _ => f ty);
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   961
  in iter end;
066792098895 tuned signature;
wenzelm
parents: 60422
diff changeset
   962
19909
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   963
fun exists_subtype P =
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   964
  let
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   965
    fun ex ty = P ty orelse
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   966
      (case ty of Type (_, Ts) => exists ex Ts | _ => false);
6b5574d64aa4 added exists_subtype;
wenzelm
parents: 19647
diff changeset
   967
  in ex end;
13646
46ed3d042ba5 Ported find_intro/elim to Isar.
nipkow
parents: 13484
diff changeset
   968
20531
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   969
fun exists_type P =
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   970
  let
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   971
    fun ex (Const (_, T)) = P T
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   972
      | ex (Free (_, T)) = P T
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   973
      | ex (Var (_, T)) = P T
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   974
      | ex (Bound _) = false
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   975
      | ex (Abs (_, T, t)) = P T orelse ex t
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   976
      | ex (t $ u) = ex t orelse ex u;
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   977
  in ex end;
7de9caf4fd78 added exists_type;
wenzelm
parents: 20511
diff changeset
   978
16943
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   979
fun exists_subterm P =
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   980
  let
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   981
    fun ex tm = P tm orelse
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   982
      (case tm of
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   983
        t $ u => ex t orelse ex u
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   984
      | Abs (_, _, t) => ex t
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   985
      | _ => false);
ba05effdec42 added add_tfreesT, add_tfrees;
wenzelm
parents: 16882
diff changeset
   986
  in ex end;
16108
cf468b93a02e Implement cycle-free overloading, so that definitions cannot harm consistency any more (except of course via interaction with axioms).
obua
parents: 16035
diff changeset
   987
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   988
fun exists_Const P = exists_subterm (fn Const c => P c | _ => false);
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   989
76047
f244926013e5 tuned signature;
wenzelm
parents: 74577
diff changeset
   990
fun is_schematic t =
f244926013e5 tuned signature;
wenzelm
parents: 74577
diff changeset
   991
  exists_subterm is_Var t orelse
f244926013e5 tuned signature;
wenzelm
parents: 74577
diff changeset
   992
  (exists_type o exists_subtype) is_TVar t;
f244926013e5 tuned signature;
wenzelm
parents: 74577
diff changeset
   993
63619
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   994
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   995
(* contraction *)
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   996
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   997
fun could_beta_contract (Abs _ $ _) = true
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   998
  | could_beta_contract (t $ u) = could_beta_contract t orelse could_beta_contract u
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
   999
  | could_beta_contract (Abs (_, _, b)) = could_beta_contract b
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1000
  | could_beta_contract _ = false;
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1001
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1002
fun could_eta_contract (Abs (_, _, _ $ Bound 0)) = true
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1003
  | could_eta_contract (Abs (_, _, b)) = could_eta_contract b
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1004
  | could_eta_contract (t $ u) = could_eta_contract t orelse could_eta_contract u
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1005
  | could_eta_contract _ = false;
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1006
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1007
fun could_beta_eta_contract (Abs _ $ _) = true
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1008
  | could_beta_eta_contract (Abs (_, _, _ $ Bound 0)) = true
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1009
  | could_beta_eta_contract (Abs (_, _, b)) = could_beta_eta_contract b
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1010
  | could_beta_eta_contract (t $ u) = could_beta_eta_contract t orelse could_beta_eta_contract u
9c870388e87a more tight filtering;
wenzelm
parents: 63611
diff changeset
  1011
  | could_beta_eta_contract _ = false;
24671
35075a1e9599 added has_abs (from envir.ML);
wenzelm
parents: 24483
diff changeset
  1012
35075a1e9599 added has_abs (from envir.ML);
wenzelm
parents: 24483
diff changeset
  1013
20199
3170fea83ae7 is_funtype: do not export internal operation;
wenzelm
parents: 20160
diff changeset
  1014
(* dest abstraction *)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
  1015
74525
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1016
(*ASSUMPTION: x is fresh wrt. the current context, but the check
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1017
  of used_free merely guards against gross mistakes*)
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1018
74407
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1019
fun used_free x =
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
  1020
  let
74407
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1021
    fun used (Free (y, _)) = (x = y)
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1022
      | used (t $ u) = used t orelse used u
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1023
      | used (Abs (_, _, t)) = used t
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1024
      | used _ = false;
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1025
  in used end;
71dfb835025d tuned, following Syntax_Trans.variant_abs;
wenzelm
parents: 73351
diff changeset
  1026
74525
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1027
exception USED_FREE of string * term;
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1028
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1029
fun subst_abs v b = (v, subst_bound (Free v, b));
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1030
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1031
fun dest_abs_fresh x t =
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1032
  (case t of
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1033
    Abs (_, T, b) =>
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1034
      if used_free x b then raise USED_FREE (x, t)
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1035
      else subst_abs (x, T) b
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1036
  | _ => raise TERM ("dest_abs", [t]));
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1037
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1038
fun dest_abs_global t =
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1039
  (case t of
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1040
    Abs (x, T, b) =>
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1041
      if used_free x b then
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1042
        let
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1043
          val used = Name.build_context (declare_term_frees b);
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1044
          val x' = #1 (Name.variant x used);
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1045
        in subst_abs (x', T) b end
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1046
      else subst_abs (x, T) b
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74446
diff changeset
  1047
  | _ => raise TERM ("dest_abs", [t]));
16678
dcbdb1373d78 added fast_indexname_ord, fast_term_ord;
wenzelm
parents: 16667
diff changeset
  1048
20160
550e36c6a2d1 added variant_frees;
wenzelm
parents: 20148
diff changeset
  1049
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1050
(* dummy patterns *)
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1051
56241
029246729dc0 more qualified names;
wenzelm
parents: 54732
diff changeset
  1052
fun dummy_pattern T = Const ("Pure.dummy_pattern", T);
45156
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 44241
diff changeset
  1053
val dummy = dummy_pattern dummyT;
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 44241
diff changeset
  1054
val dummy_prop = dummy_pattern propT;
18253
0626a0a217ec added dummy_pattern;
wenzelm
parents: 18183
diff changeset
  1055
56241
029246729dc0 more qualified names;
wenzelm
parents: 54732
diff changeset
  1056
fun is_dummy_pattern (Const ("Pure.dummy_pattern", _)) = true
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1057
  | is_dummy_pattern _ = false;
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1058
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1059
fun no_dummy_patterns tm =
16787
b6b6e2faaa41 (intermediate commit)
haftmann
parents: 16724
diff changeset
  1060
  if not (fold_aterms (fn t => fn b => b orelse is_dummy_pattern t) tm false) then tm
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1061
  else raise TERM ("Illegal occurrence of '_' dummy pattern", [tm]);
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1062
56241
029246729dc0 more qualified names;
wenzelm
parents: 54732
diff changeset
  1063
fun free_dummy_patterns (Const ("Pure.dummy_pattern", T)) used =
43329
84472e198515 tuned signature: Name.invent and Name.invent_names;
wenzelm
parents: 43326
diff changeset
  1064
      let val [x] = Name.invent used Name.uu 1
24733
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1065
      in (Free (Name.internal x, T), Name.declare x used) end
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1066
  | free_dummy_patterns (Abs (x, T, b)) used =
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1067
      let val (b', used') = free_dummy_patterns b used
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1068
      in (Abs (x, T, b'), used') end
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1069
  | free_dummy_patterns (t $ u) used =
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1070
      let
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1071
        val (t', used') = free_dummy_patterns t used;
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1072
        val (u', used'') = free_dummy_patterns u used';
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1073
      in (t' $ u', used'') end
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1074
  | free_dummy_patterns a used = (a, used);
59e0b49688fb added free_dummy_patterns;
wenzelm
parents: 24671
diff changeset
  1075
56241
029246729dc0 more qualified names;
wenzelm
parents: 54732
diff changeset
  1076
fun replace_dummy Ts (Const ("Pure.dummy_pattern", T)) i =
33063
4d462963a7db map_range (and map_index) combinator
haftmann
parents: 32784
diff changeset
  1077
      (list_comb (Var (("_dummy_", i), Ts ---> T), map_range Bound (length Ts)), i + 1)
24762
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1078
  | replace_dummy Ts (Abs (x, T, t)) i =
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1079
      let val (t', i') = replace_dummy (T :: Ts) t i
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1080
      in (Abs (x, T, t'), i') end
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1081
  | replace_dummy Ts (t $ u) i =
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1082
      let
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1083
        val (t', i') = replace_dummy Ts t i;
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1084
        val (u', i'') = replace_dummy Ts u i';
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1085
      in (t' $ u', i'') end
8d7da66b1a2c added declare_typ_names;
wenzelm
parents: 24733
diff changeset
  1086
  | replace_dummy _ a i = (a, i);
11903
938dd8bca661 replace_dummy_patterns: lift over bounds;
wenzelm
parents: 11353
diff changeset
  1087
938dd8bca661 replace_dummy_patterns: lift over bounds;
wenzelm
parents: 11353
diff changeset
  1088
val replace_dummy_patterns = replace_dummy [];
9536
b79b002f32ae added dummy_patternN, no_dummy_patterns, replace_dummy_patterns;
wenzelm
parents: 9319
diff changeset
  1089
45156
a9b6c2ea7bec added Term.dummy_pattern conveniences;
wenzelm
parents: 44241
diff changeset
  1090
fun show_dummy_patterns (Var (("_dummy_", _), T)) = dummy_pattern T
16035
31bd65f7b22a added show_dummy_patterns;
wenzelm
parents: 15986
diff changeset
  1091
  | show_dummy_patterns (t $ u) = show_dummy_patterns t $ show_dummy_patterns u
31bd65f7b22a added show_dummy_patterns;
wenzelm
parents: 15986
diff changeset
  1092
  | show_dummy_patterns (Abs (x, T, t)) = Abs (x, T, show_dummy_patterns t)
31bd65f7b22a added show_dummy_patterns;
wenzelm
parents: 15986
diff changeset
  1093
  | show_dummy_patterns a = a;
31bd65f7b22a added show_dummy_patterns;
wenzelm
parents: 15986
diff changeset
  1094
13484
d8f5d3391766 adhoc_freeze_vars;
wenzelm
parents: 13000
diff changeset
  1095
20100
c96cb48eef53 removed obsolete xless;
wenzelm
parents: 20082
diff changeset
  1096
(* display variables *)
c96cb48eef53 removed obsolete xless;
wenzelm
parents: 20082
diff changeset
  1097
14786
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1098
fun string_of_vname (x, i) =
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1099
  let
15986
db3cd4fa9b19 renamed show_var_qmarks to show_question_marks;
wenzelm
parents: 15962
diff changeset
  1100
    val idx = string_of_int i;
db3cd4fa9b19 renamed show_var_qmarks to show_question_marks;
wenzelm
parents: 15962
diff changeset
  1101
    val dot =
db3cd4fa9b19 renamed show_var_qmarks to show_question_marks;
wenzelm
parents: 15962
diff changeset
  1102
      (case rev (Symbol.explode x) of
62529
8b7bdfc09f3b clarified treatment of fragments of Isabelle symbols during bootstrap;
wenzelm
parents: 61655
diff changeset
  1103
        _ :: "\<^sub>" :: _ => false
15986
db3cd4fa9b19 renamed show_var_qmarks to show_question_marks;
wenzelm
parents: 15962
diff changeset
  1104
      | c :: _ => Symbol.is_digit c
db3cd4fa9b19 renamed show_var_qmarks to show_question_marks;
wenzelm
parents: 15962
diff changeset
  1105
      | _ => true);
14786
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1106
  in
38980
af73cf0dc31f turned show_question_marks into proper configuration option;
wenzelm
parents: 35986
diff changeset
  1107
    if dot then "?" ^ x ^ "." ^ idx
af73cf0dc31f turned show_question_marks into proper configuration option;
wenzelm
parents: 35986
diff changeset
  1108
    else if i <> 0 then "?" ^ x ^ idx
af73cf0dc31f turned show_question_marks into proper configuration option;
wenzelm
parents: 35986
diff changeset
  1109
    else "?" ^ x
14786
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1110
  end;
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1111
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1112
fun string_of_vname' (x, ~1) = x
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1113
  | string_of_vname' xi = string_of_vname xi;
24a7bc97a27a moved some sort ops to sorts.ML; added string_of_vname (from Syntax module);
wenzelm
parents: 14695
diff changeset
  1114
1364
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
  1115
end;
8ea1a962ad72 files now define a structure to allow SML/NJ to optimize the code
clasohm
parents: 1029
diff changeset
  1116
40841
wenzelm
parents: 40840
diff changeset
  1117
structure Basic_Term: BASIC_TERM = Term;
wenzelm
parents: 40840
diff changeset
  1118
open Basic_Term;