src/HOL/Tools/hologic.ML
author haftmann
Thu, 19 Jun 2025 17:15:40 +0200
changeset 82734 89347c0cc6a3
parent 81942 da3c3948a39c
permissions -rw-r--r--
treat map_filter similar to list_all, list_ex, list_ex1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 37676
diff changeset
     1
(*  Title:      HOL/Tools/hologic.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    Author:     Lawrence C Paulson and Markus Wenzel
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
Abstract syntax operations for HOL.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
signature HOLOGIC =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
sig
41363
57ebe94c7fbf renamed mk_id to the more canonical id_const
haftmann
parents: 41339
diff changeset
     9
  val id_const: typ -> term
40845
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
    10
  val mk_comp: term * term -> term
8275
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
    11
  val boolN: string
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
  val boolT: typ
67710
cc2db3239932 added HOLogic.mk_obj_eq convenience and eliminated some clones;
wenzelm
parents: 67149
diff changeset
    13
  val mk_obj_eq: thm -> thm
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    14
  val Trueprop: term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    15
  val mk_Trueprop: term -> term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    16
  val dest_Trueprop: term -> term
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    17
  val is_Trueprop: term -> bool
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51143
diff changeset
    18
  val Trueprop_conv: conv -> conv
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    19
  val mk_judgment: cterm -> cterm
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    20
  val is_judgment: cterm -> bool
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    21
  val dest_judgment: cterm -> cterm
44868
92be5b32ca71 more modularization
haftmann
parents: 44241
diff changeset
    22
  val mk_induct_forall: typ -> term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
  val mk_setT: typ -> typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
  val dest_setT: typ -> typ
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    25
  val Collect_const: typ -> term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    26
  val mk_Collect: string * typ * term -> term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    27
  val mk_mem: term * term -> term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    28
  val dest_mem: term -> term * term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    29
  val mk_set: typ -> term list -> term
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    30
  val dest_set: term -> term list
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
    31
  val mk_UNIV: typ -> term
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    32
  val conj_intr: thm -> thm -> thm
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    33
  val conj_elim: thm -> thm * thm
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
    34
  val conj_elims: thm -> thm list
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
  val conj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
  val disj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
  val imp: term
8429
515fa7533354 added Not;
wenzelm
parents: 8302
diff changeset
    38
  val Not: term
7690
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    39
  val mk_conj: term * term -> term
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    40
  val mk_disj: term * term -> term
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    41
  val mk_imp: term * term -> term
16835
2e7d7ec7a268 removed not_const -- use Not instead;
wenzelm
parents: 15965
diff changeset
    42
  val mk_not: term -> term
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
    43
  val dest_conj: term -> term list
53887
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
    44
  val conjuncts: term -> term list
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
    45
  val dest_disj: term -> term list
24958
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
    46
  val disjuncts: term -> term list
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    47
  val dest_imp: term -> term * term
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
    48
  val dest_not: term -> term
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
    49
  val conj_conv: conv -> conv -> conv
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
  val eq_const: typ -> term
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
    51
  val mk_eq: term * term -> term
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
    52
  val dest_eq: term -> term * term
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
    53
  val eq_conv: conv -> conv -> conv
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
  val all_const: typ -> term
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
    55
  val mk_all: string * typ * term -> term
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
    56
  val list_all: (string * typ) list * term -> term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
  val exists_const: typ -> term
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
    58
  val mk_exists: string * typ * term -> term
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
    59
  val choice_const: typ -> term
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
    60
  val class_equal: string
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    61
  val mk_binop: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    62
  val mk_binrel: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    63
  val dest_bin: string -> typ -> term -> term * term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    64
  val unitT: typ
9362
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
    65
  val is_unitT: typ -> bool
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    66
  val unit: term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    67
  val is_unit: term -> bool
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    68
  val mk_prodT: typ * typ -> typ
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    69
  val dest_prodT: typ -> typ * typ
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
    70
  val pair_const: typ -> typ -> term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    71
  val mk_prod: term * term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    72
  val dest_prod: term -> term * term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    73
  val mk_fst: term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    74
  val mk_snd: term -> term
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
    75
  val case_prod_const: typ * typ * typ -> term
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
    76
  val mk_case_prod: term -> term
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
    77
  val flatten_tupleT: typ -> typ list
39756
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
    78
  val tupled_lambda: term -> term -> term
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    79
  val mk_tupleT: typ list -> typ
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    80
  val strip_tupleT: typ -> typ list
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    81
  val mk_tuple: term list -> term
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    82
  val strip_tuple: term -> term list
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    83
  val mk_ptupleT: int list list -> typ list -> typ
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    84
  val strip_ptupleT: int list list -> typ -> typ list
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
    85
  val flat_tupleT_paths: typ -> int list list
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    86
  val mk_ptuple: int list list -> typ -> term list -> term
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
    87
  val strip_ptuple: int list list -> term -> term list
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
    88
  val flat_tuple_paths: term -> int list list
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
    89
  val mk_ptupleabs: int list list -> typ -> typ -> term -> term
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
    90
  val strip_ptupleabs: term -> term * typ list * int list list
5207
wenzelm
parents: 5096
diff changeset
    91
  val natT: typ
wenzelm
parents: 5096
diff changeset
    92
  val zero: term
wenzelm
parents: 5096
diff changeset
    93
  val is_zero: term -> bool
wenzelm
parents: 5096
diff changeset
    94
  val mk_Suc: term -> term
wenzelm
parents: 5096
diff changeset
    95
  val dest_Suc: term -> term
21621
f9fd69d96c4e slight cleanup in hologic.ML
haftmann
parents: 21550
diff changeset
    96
  val Suc_zero: term
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
    97
  val mk_nat: int -> term
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
    98
  val dest_nat: term -> int
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
    99
  val class_size: string
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   100
  val size_const: typ -> term
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
   101
  val intT: typ
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   102
  val one_const: term
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26036
diff changeset
   103
  val bit0_const: term
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26036
diff changeset
   104
  val bit1_const: term
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
   105
  val mk_numeral: int -> term
62342
1cf129590be8 consolidated name
haftmann
parents: 61424
diff changeset
   106
  val dest_numeral: term -> int
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   107
  val numeral_const: typ -> term
23269
851b8ea067ac simplified/renamed add_numerals;
wenzelm
parents: 23247
diff changeset
   108
  val add_numerals: term -> (term * typ) list -> (term * typ) list
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
   109
  val mk_number: typ -> int -> term
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
   110
  val dest_number: term -> typ * int
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   111
  val code_integerT: typ
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   112
  val code_naturalT: typ
21778
66440bf72cdc binary numerals: restricted to actual abstract syntax;
wenzelm
parents: 21755
diff changeset
   113
  val realT: typ
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   114
  val charT: typ
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   115
  val mk_char: int -> term
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   116
  val dest_char: term -> int
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
   117
  val listT: typ -> typ
25887
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   118
  val nil_const: typ -> term
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   119
  val cons_const: typ -> term
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
   120
  val mk_list: typ -> term list -> term
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
   121
  val dest_list: term -> term list
21778
66440bf72cdc binary numerals: restricted to actual abstract syntax;
wenzelm
parents: 21755
diff changeset
   122
  val stringT: typ
21820
2f2b6a965ccc introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents: 21788
diff changeset
   123
  val mk_string: string -> term
2f2b6a965ccc introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents: 21788
diff changeset
   124
  val dest_string: term -> string
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   125
  val literalT: typ
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   126
  val mk_literal: string -> term
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   127
  val dest_literal: term -> string
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   128
  val mk_typerep: typ -> term
32339
40612b7ace87 termT and term_of_const
haftmann
parents: 32287
diff changeset
   129
  val termT: typ
40612b7ace87 termT and term_of_const
haftmann
parents: 32287
diff changeset
   130
  val term_of_const: typ -> term
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   131
  val mk_term_of: typ -> term -> term
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   132
  val reflect_term: term -> term
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   133
  val mk_valtermify_app: string -> (string * typ) list -> typ -> term
31183
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   134
  val mk_return: typ -> typ -> term -> term
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   135
  val mk_ST: ((term * typ) * (string * typ) option)  list -> term -> typ -> typ option * typ -> term
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   136
  val mk_random: typ -> term -> term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
structure HOLogic: HOLOGIC =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
struct
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
40845
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   142
(* functions *)
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   143
41363
57ebe94c7fbf renamed mk_id to the more canonical id_const
haftmann
parents: 41339
diff changeset
   144
fun id_const T = Const ("Fun.id", T --> T);
41339
481c89fabcbc HOLogic.mk_id
haftmann
parents: 40845
diff changeset
   145
40845
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   146
fun mk_comp (f, g) =
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   147
  let
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   148
    val fT = fastype_of f;
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   149
    val gT = fastype_of g;
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   150
    val compT = fT --> gT --> domain_type gT --> range_type fT;
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   151
  in Const ("Fun.comp", compT) $ f $ g end;
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   152
15b97bd4b5c0 just one HOLogic.mk_comp;
wenzelm
parents: 40627
diff changeset
   153
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   154
(* bool and set *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   156
val boolT = \<^Type>\<open>bool\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   157
val boolN = dest_Type_name boolT;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
44868
92be5b32ca71 more modularization
haftmann
parents: 44241
diff changeset
   159
fun mk_induct_forall T = Const ("HOL.induct_forall", (T --> boolT) --> boolT);
92be5b32ca71 more modularization
haftmann
parents: 44241
diff changeset
   160
45977
e3accf78bb07 `set` is now a proper type constructor
haftmann
parents: 45740
diff changeset
   161
fun mk_setT T = Type ("Set.set", [T]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
45977
e3accf78bb07 `set` is now a proper type constructor
haftmann
parents: 45740
diff changeset
   163
fun dest_setT (Type ("Set.set", [T])) = T
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   164
  | dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   166
fun mk_set T ts =
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   167
  let
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   168
    val sT = mk_setT T;
32264
0be31453f698 Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents: 31736
diff changeset
   169
    val empty = Const ("Orderings.bot_class.bot", sT);
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31205
diff changeset
   170
    fun insert t u = Const ("Set.insert", T --> sT --> sT) $ t $ u;
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   171
  in fold_rev insert ts empty end;
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   172
32264
0be31453f698 Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents: 31736
diff changeset
   173
fun mk_UNIV T = Const ("Orderings.top_class.top", mk_setT T);
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   174
32264
0be31453f698 Set.UNIV and Set.empty are mere abbreviations for top and bot
haftmann
parents: 31736
diff changeset
   175
fun dest_set (Const ("Orderings.bot_class.bot", _)) = []
31456
55edadbd43d5 insert now qualified and with authentic syntax
haftmann
parents: 31205
diff changeset
   176
  | dest_set (Const ("Set.insert", _) $ t $ u) = t :: dest_set u
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   177
  | dest_set t = raise TERM ("dest_set", [t]);
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   178
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   179
fun Collect_const T = Const ("Set.Collect", (T --> boolT) --> mk_setT T);
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 41363
diff changeset
   180
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T) t;
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   181
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   182
fun mk_mem (x, A) =
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   183
  let val setT = fastype_of A in
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   184
    Const ("Set.member", dest_setT setT --> setT --> boolT) $ x $ A
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   185
  end;
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   186
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   187
fun dest_mem (Const ("Set.member", _) $ x $ A) = (x, A)
30450
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   188
  | dest_mem t = raise TERM ("dest_mem", [t]);
7655e6533209 HOLogic.mk_set, HOLogic.dest_set
haftmann
parents: 30304
diff changeset
   189
8275
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
   190
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
   191
(* logic *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
67710
cc2db3239932 added HOLogic.mk_obj_eq convenience and eliminated some clones;
wenzelm
parents: 67149
diff changeset
   193
fun mk_obj_eq th = th RS @{thm meta_eq_to_obj_eq};
cc2db3239932 added HOLogic.mk_obj_eq convenience and eliminated some clones;
wenzelm
parents: 67149
diff changeset
   194
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   195
val Trueprop = \<^Const>\<open>Trueprop\<close>;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
fun mk_Trueprop P = Trueprop $ P;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   199
fun dest_Trueprop \<^Const_>\<open>Trueprop for P\<close> = P
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   200
  | dest_Trueprop t = raise TERM ("dest_Trueprop", [t]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   201
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   202
fun is_Trueprop \<^Const_>\<open>Trueprop for _\<close> = true
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   203
  | is_Trueprop _ = false;
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   204
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   205
val is_judgment = is_Trueprop o Thm.term_of;
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   206
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51143
diff changeset
   207
fun Trueprop_conv cv ct =
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   208
  if is_judgment ct then Conv.arg_conv cv ct
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   209
  else raise CTERM ("Trueprop_conv", [ct]);
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51143
diff changeset
   210
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   211
val mk_judgment = Thm.apply \<^cterm>\<open>Trueprop\<close>;
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51143
diff changeset
   212
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   213
fun dest_judgment ct =
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   214
  if is_judgment ct then Thm.dest_arg ct
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   215
  else raise CTERM ("dest_judgment", [ct]);
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   216
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   217
fun conj_intr thP thQ =
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   218
  let
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   219
    val (P, Q) = apply2 (dest_judgment o Thm.cprop_of) (thP, thQ)
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   220
      handle CTERM (msg, _) => raise THM (msg, 0, [thP, thQ]);
74610
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   221
    val rule = \<^instantiate>\<open>P and Q in lemma (open) \<open>P \<Longrightarrow> Q \<Longrightarrow> P \<and> Q\<close> by (rule conjI)\<close>
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   222
  in Drule.implies_elim_list rule [thP, thQ] end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   224
fun conj_elim thPQ =
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   225
  let
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   226
    val (P, Q) = Thm.dest_binop (dest_judgment (Thm.cprop_of thPQ))
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   227
      handle CTERM (msg, _) => raise THM (msg, 0, [thPQ]);
74610
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   228
    val thP =
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   229
      Thm.implies_elim \<^instantiate>\<open>P and Q in lemma (open) \<open>P \<and> Q \<Longrightarrow> P\<close> by (rule conjunct1)\<close> thPQ;
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   230
    val thQ =
87fc10f5826c clarified antiquotations;
wenzelm
parents: 74290
diff changeset
   231
      Thm.implies_elim \<^instantiate>\<open>P and Q in lemma (open) \<open>P \<and> Q \<Longrightarrow> Q\<close> by (rule conjunct2)\<close> thPQ;
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   232
  in (thP, thQ) end;
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   233
81942
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   234
fun conj_elims th =
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   235
  let val (th1, th2) = conj_elim th
da3c3948a39c clarified signature: more uniform cterm operations, without context;
wenzelm
parents: 81939
diff changeset
   236
  in conj_elims th1 @ conj_elims th2 end handle THM _ => [th];
23555
16e5fd18905c assume basic HOL context for compilation (antiquotations);
wenzelm
parents: 23297
diff changeset
   237
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   238
val conj = \<^Const>\<open>conj\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   239
val disj = \<^Const>\<open>disj\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   240
val imp = \<^Const>\<open>implies\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   241
val Not = \<^Const>\<open>Not\<close>;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   242
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   243
fun mk_conj (t1, t2) = \<^Const>\<open>conj for t1 t2\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   244
fun mk_disj (t1, t2) = \<^Const>\<open>disj for t1 t2\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   245
fun mk_imp (t1, t2) = \<^Const>\<open>implies for t1 t2\<close>;
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   246
fun mk_not t = \<^Const>\<open>Not for t\<close>;
7690
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
   247
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   248
fun dest_conj \<^Const_>\<open>conj for t t'\<close> = t :: dest_conj t'
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   249
  | dest_conj t = [t];
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   250
53887
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
   251
(*Like dest_conj, but flattens conjunctions however nested*)
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   252
fun conjuncts_aux \<^Const_>\<open>conj for t t'\<close> conjs = conjuncts_aux t (conjuncts_aux t' conjs)
53887
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
   253
  | conjuncts_aux t conjs = t::conjs;
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
   254
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
   255
fun conjuncts t = conjuncts_aux t [];
ee91bd2a506a filled in gap in library offering
blanchet
parents: 51523
diff changeset
   256
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   257
fun dest_disj \<^Const_>\<open>disj for t t'\<close> = t :: dest_disj t'
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   258
  | dest_disj t = [t];
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   259
24958
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
   260
(*Like dest_disj, but flattens disjunctions however nested*)
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   261
fun disjuncts_aux \<^Const_>\<open>disj for t t'\<close> disjs = disjuncts_aux t (disjuncts_aux t' disjs)
24958
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
   262
  | disjuncts_aux t disjs = t::disjs;
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
   263
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
   264
fun disjuncts t = disjuncts_aux t [];
ff15f76741bd rationalized redundant code
paulson
parents: 24630
diff changeset
   265
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   266
fun dest_imp \<^Const_>\<open>implies for A B\<close> = (A, B)
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4294
diff changeset
   267
  | dest_imp  t = raise TERM ("dest_imp", [t]);
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4294
diff changeset
   268
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   269
fun dest_not \<^Const_>\<open>Not for t\<close> = t
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   270
  | dest_not t = raise TERM ("dest_not", [t]);
8302
da404f79c1fc added dest_conj;
wenzelm
parents: 8275
diff changeset
   271
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   272
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   273
fun conj_conv cv1 cv2 ct =
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   274
  (case Thm.term_of ct of
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   275
    \<^Const_>\<open>conj for _ _\<close> =>
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   276
      Conv.combination_conv (Conv.arg_conv cv1) cv2 ct
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   277
  | _ => raise CTERM ("conj_conv", [ct]));
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   278
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   279
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   280
fun eq_const T = \<^Const>\<open>HOL.eq T\<close>;
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   281
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   283
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   284
fun dest_eq \<^Const_>\<open>HOL.eq _ for lhs rhs\<close> = (lhs, rhs)
6031
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
   285
  | dest_eq t = raise TERM ("dest_eq", [t])
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
   286
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   287
fun eq_conv cv1 cv2 ct =
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   288
  (case Thm.term_of ct of
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   289
    \<^Const_>\<open>HOL.eq _ for _ _\<close> => Conv.combination_conv (Conv.arg_conv cv1) cv2 ct
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   290
  | _ => raise CTERM ("eq_conv", [ct]));
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   291
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   292
46216
wenzelm
parents: 45977
diff changeset
   293
fun all_const T = Const ("HOL.All", (T --> boolT) --> boolT);
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 41363
diff changeset
   294
fun mk_all (x, T, P) = all_const T $ absfree (x, T) P;
21173
663a7b39894c removed is_Trueprop (use can dest_Trueprop'' instead);
wenzelm
parents: 21078
diff changeset
   295
fun list_all (xs, t) = fold_rev (fn (x, T) => fn P => all_const T $ Abs (x, T, P)) xs t;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   296
46216
wenzelm
parents: 45977
diff changeset
   297
fun exists_const T = Const ("HOL.Ex", (T --> boolT) --> boolT);
44241
7943b69f0188 modernized signature of Term.absfree/absdummy;
wenzelm
parents: 41363
diff changeset
   298
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T) P;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   299
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   300
fun choice_const T = Const("Hilbert_Choice.Eps", (T --> boolT) --> T);
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   301
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38795
diff changeset
   302
val class_equal = "HOL.equal";
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20973
diff changeset
   303
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   304
13743
f8f9393be64c Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents: 13640
diff changeset
   305
(* binary operations and relations *)
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   306
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   307
fun mk_binop c (t, u) =
46216
wenzelm
parents: 45977
diff changeset
   308
  let val T = fastype_of t
wenzelm
parents: 45977
diff changeset
   309
  in Const (c, T --> T --> T) $ t $ u end;
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   310
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   311
fun mk_binrel c (t, u) =
46216
wenzelm
parents: 45977
diff changeset
   312
  let val T = fastype_of t
wenzelm
parents: 45977
diff changeset
   313
  in Const (c, T --> T --> boolT) $ t $ u end;
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   314
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14103
diff changeset
   315
(*destruct the application of a binary operator. The dummyT case is a crude
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14103
diff changeset
   316
  way of handling polymorphic operators.*)
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   317
fun dest_bin c T (tm as Const (c', \<^Type>\<open>fun T' _\<close>) $ t $ u) =
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   318
      if c = c' andalso (T = T' orelse T = dummyT) then (t, u)
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   319
      else raise TERM ("dest_bin " ^ c, [tm])
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   320
  | dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]);
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   321
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   322
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   323
(* unit *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   324
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   325
val unitT = Type ("Product_Type.unit", []);
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   326
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   327
fun is_unitT (Type ("Product_Type.unit", [])) = true
9362
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
   328
  | is_unitT _ = false;
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
   329
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   330
val unit = Const ("Product_Type.Unity", unitT);
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   331
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   332
fun is_unit (Const ("Product_Type.Unity", _)) = true
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   333
  | is_unit _ = false;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   334
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   335
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   336
(* prod *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   337
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   338
fun mk_prodT (T1, T2) = Type ("Product_Type.prod", [T1, T2]);
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   339
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   340
fun dest_prodT (Type ("Product_Type.prod", [T1, T2])) = (T1, T2)
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   341
  | dest_prodT T = raise TYPE ("dest_prodT", [T], []);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   342
46216
wenzelm
parents: 45977
diff changeset
   343
fun pair_const T1 T2 = Const ("Product_Type.Pair", T1 --> T2 --> mk_prodT (T1, T2));
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
   344
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   345
fun mk_prod (t1, t2) =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   346
  let val T1 = fastype_of t1 and T2 = fastype_of t2 in
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
   347
    pair_const T1 T2 $ t1 $ t2
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   348
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   349
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   350
fun dest_prod (Const ("Product_Type.Pair", _) $ t1 $ t2) = (t1, t2)
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   351
  | dest_prod t = raise TERM ("dest_prod", [t]);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   352
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   353
fun mk_fst p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   354
  let val pT = fastype_of p in
55411
27de2c976d90 repaired hard-coded constant names
blanchet
parents: 54489
diff changeset
   355
    Const ("Product_Type.prod.fst", pT --> fst (dest_prodT pT)) $ p
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   356
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   357
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   358
fun mk_snd p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   359
  let val pT = fastype_of p in
55411
27de2c976d90 repaired hard-coded constant names
blanchet
parents: 54489
diff changeset
   360
    Const ("Product_Type.prod.snd", pT --> snd (dest_prodT pT)) $ p
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   361
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   362
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   363
fun case_prod_const (A, B, C) =
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   364
  Const ("Product_Type.prod.case_prod", (A --> B --> C) --> mk_prodT (A, B) --> C);
18285
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   365
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   366
fun mk_case_prod t =
18285
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   367
  (case Term.fastype_of t of
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   368
    T as \<^Type>\<open>fun A \<^Type>\<open>fun B C\<close>\<close> =>
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   369
      Const ("Product_Type.prod.case_prod", T --> mk_prodT (A, B) --> C) $ t
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   370
  | _ => raise TERM ("mk_case_prod: bad body type", [t]));
18285
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   371
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   372
(*Maps the type T1 * ... * Tn to [T1, ..., Tn], however nested*)
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   373
fun flatten_tupleT (Type ("Product_Type.prod", [T1, T2])) = flatten_tupleT T1 @ flatten_tupleT T2
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   374
  | flatten_tupleT T = [T];
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   375
39756
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   376
(*abstraction over nested tuples*)
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   377
fun tupled_lambda (x as Free _) b = lambda x b
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   378
  | tupled_lambda (x as Var _) b = lambda x b
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   379
  | tupled_lambda (Const ("Product_Type.Pair", _) $ u $ v) b =
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   380
      mk_case_prod (tupled_lambda u (tupled_lambda v b))
39756
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   381
  | tupled_lambda (Const ("Product_Type.Unity", _)) b =
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   382
      Abs ("x", unitT, b)
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   383
  | tupled_lambda t _ = raise TERM ("tupled_lambda: bad tuple", [t]);
6c8e83d94536 consolidated tupled_lambda; moved to structure HOLogic
krauss
parents: 39250
diff changeset
   384
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   385
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   386
(* tuples with right-fold structure *)
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   387
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   388
fun mk_tupleT [] = unitT
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   389
  | mk_tupleT Ts = foldr1 mk_prodT Ts;
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   390
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   391
fun strip_tupleT (Type ("Product_Type.unit", [])) = []
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   392
  | strip_tupleT (Type ("Product_Type.prod", [T1, T2])) = T1 :: strip_tupleT T2
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   393
  | strip_tupleT T = [T];
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   394
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   395
fun mk_tuple [] = unit
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   396
  | mk_tuple ts = foldr1 mk_prod ts;
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   397
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   398
fun strip_tuple (Const ("Product_Type.Unity", _)) = []
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   399
  | strip_tuple (Const ("Product_Type.Pair", _) $ t1 $ t2) = t1 :: strip_tuple t2
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   400
  | strip_tuple t = [t];
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   401
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   402
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   403
(* tuples with specific arities
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   404
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   405
   an "arity" of a tuple is a list of lists of integers,
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   406
   denoting paths to subterms that are pairs
25172
ad25033f9ca4 tuned comments;
wenzelm
parents: 24958
diff changeset
   407
*)
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   408
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   409
fun ptuple_err s = raise TERM (s ^ ": inconsistent use of nested products", []);
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   410
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   411
fun mk_ptupleT ps =
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   412
  let
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   413
    fun mk p Ts =
36692
54b64d4ad524 farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents: 35625
diff changeset
   414
      if member (op =) ps p then
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   415
        let
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   416
          val (T, Ts') = mk (1::p) Ts;
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   417
          val (U, Ts'') = mk (2::p) Ts'
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   418
        in (mk_prodT (T, U), Ts'') end
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   419
      else (hd Ts, tl Ts)
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   420
  in fst o mk [] end;
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   421
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   422
fun strip_ptupleT ps =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   423
  let
36692
54b64d4ad524 farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents: 35625
diff changeset
   424
    fun factors p T = if member (op =) ps p then (case T of
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   425
        Type ("Product_Type.prod", [T1, T2]) =>
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   426
          factors (1::p) T1 @ factors (2::p) T2
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   427
      | _ => ptuple_err "strip_ptupleT") else [T]
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   428
  in factors [] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   429
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   430
val flat_tupleT_paths =
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   431
  let
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   432
    fun factors p (Type ("Product_Type.prod", [T1, T2])) =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   433
          p :: factors (1::p) T1 @ factors (2::p) T2
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   434
      | factors p _ = []
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   435
  in factors [] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   436
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   437
fun mk_ptuple ps =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   438
  let
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   439
    fun mk p T ts =
36692
54b64d4ad524 farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents: 35625
diff changeset
   440
      if member (op =) ps p then (case T of
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   441
          Type ("Product_Type.prod", [T1, T2]) =>
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   442
            let
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   443
              val (t, ts') = mk (1::p) T1 ts;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   444
              val (u, ts'') = mk (2::p) T2 ts'
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   445
            in (pair_const T1 T2 $ t $ u, ts'') end
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   446
        | _ => ptuple_err "mk_ptuple")
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   447
      else (hd ts, tl ts)
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   448
  in fst oo mk [] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   449
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   450
fun strip_ptuple ps =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   451
  let
36692
54b64d4ad524 farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents: 35625
diff changeset
   452
    fun dest p t = if member (op =) ps p then (case t of
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   453
        Const ("Product_Type.Pair", _) $ t $ u =>
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   454
          dest (1::p) t @ dest (2::p) u
32342
3fabf5b5fc83 path-sensitive tuple combinators carry a "p"(ath) prefix; combinators for standard right-fold tuples
haftmann
parents: 32339
diff changeset
   455
      | _ => ptuple_err "strip_ptuple") else [t]
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   456
  in dest [] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   457
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   458
val flat_tuple_paths =
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   459
  let
37389
09467cdfa198 qualified type "*"; qualified constants Pair, fst, snd, split
haftmann
parents: 37387
diff changeset
   460
    fun factors p (Const ("Product_Type.Pair", _) $ t $ u) =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   461
          p :: factors (1::p) t @ factors (2::p) u
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   462
      | factors p _ = []
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   463
  in factors [] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   464
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   465
(*In mk_ptupleabs ps S T u, term u expects separate arguments for the factors of S,
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   466
  with result type T.  The call creates a new term expecting one argument
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   467
  of type S.*)
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   468
fun mk_ptupleabs ps T T3 u =
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   469
  let
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   470
    fun ap ((p, T) :: pTs) =
36692
54b64d4ad524 farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents: 35625
diff changeset
   471
          if member (op =) ps p then (case T of
37676
f433cb9caea4 "prod" and "sum" replace "*" and "+" respectively; qualified constants Set.member and Set.Collect
haftmann
parents: 37591
diff changeset
   472
              Type ("Product_Type.prod", [T1, T2]) =>
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   473
                case_prod_const (T1, T2, map snd pTs ---> T3) $
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   474
                  ap ((1::p, T1) :: (2::p, T2) :: pTs)
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   475
            | _ => ptuple_err "mk_ptupleabs")
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   476
          else Abs ("x", T, ap pTs)
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   477
      | ap [] =
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   478
          let val k = length ps
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   479
          in list_comb (incr_boundvars (k + 1) u, map Bound (k downto 0)) end
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   480
  in ap [([], T)] end;
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   481
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   482
val strip_ptupleabs =
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   483
  let
34962
807f6ce0273d HOLogic.strip_psplits: types are ordered after syntactic appearance, not after corresponding de-Bruin index (closer correspondence to similar strip operations)
haftmann
parents: 33245
diff changeset
   484
    fun strip [] qs Ts t = (t, rev Ts, qs)
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61125
diff changeset
   485
      | strip (p :: ps) qs Ts (Const ("Product_Type.prod.case_prod", _) $ t) =
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   486
          strip ((1 :: p) :: (2 :: p) :: ps) (p :: qs) Ts t
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   487
      | strip (p :: ps) qs Ts (Abs (s, T, t)) = strip ps qs (T :: Ts) t
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   488
      | strip (p :: ps) qs Ts t = strip ps qs
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   489
          (hd (binder_types (fastype_of1 (Ts, t))) :: Ts)
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   490
          (incr_boundvars 1 t $ Bound 0)
32287
65d5c5b30747 cleaned up abstract tuple operations and named them consistently
haftmann
parents: 32264
diff changeset
   491
  in strip [[]] [] [] end;
23745
28df61d931e2 New operations on tuples with specific arities.
berghofe
parents: 23576
diff changeset
   492
5207
wenzelm
parents: 5096
diff changeset
   493
wenzelm
parents: 5096
diff changeset
   494
(* nat *)
wenzelm
parents: 5096
diff changeset
   495
37387
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37145
diff changeset
   496
val natT = Type ("Nat.nat", []);
5207
wenzelm
parents: 5096
diff changeset
   497
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   498
val zero = Const ("Groups.zero_class.zero", natT);
5207
wenzelm
parents: 5096
diff changeset
   499
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   500
fun is_zero (Const ("Groups.zero_class.zero", _)) = true
5207
wenzelm
parents: 5096
diff changeset
   501
  | is_zero _ = false;
wenzelm
parents: 5096
diff changeset
   502
37387
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37145
diff changeset
   503
fun mk_Suc t = Const ("Nat.Suc", natT --> natT) $ t;
5207
wenzelm
parents: 5096
diff changeset
   504
37387
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37145
diff changeset
   505
fun dest_Suc (Const ("Nat.Suc", _) $ t) = t
5207
wenzelm
parents: 5096
diff changeset
   506
  | dest_Suc t = raise TERM ("dest_Suc", [t]);
wenzelm
parents: 5096
diff changeset
   507
21621
f9fd69d96c4e slight cleanup in hologic.ML
haftmann
parents: 21550
diff changeset
   508
val Suc_zero = mk_Suc zero;
f9fd69d96c4e slight cleanup in hologic.ML
haftmann
parents: 21550
diff changeset
   509
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 23745
diff changeset
   510
fun mk_nat n =
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   511
  let
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   512
    fun mk 0 = zero
23297
06f108974fa1 simplified type integer;
wenzelm
parents: 23269
diff changeset
   513
      | mk n = mk_Suc (mk (n - 1));
23576
1ffe739e5ee0 removed dest_cTrueprop (cf. ObjectLogic.dest_judgment);
wenzelm
parents: 23566
diff changeset
   514
  in if n < 0 then raise TERM ("mk_nat: negative number", []) else mk n end;
5207
wenzelm
parents: 5096
diff changeset
   515
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   516
fun dest_nat (Const ("Groups.zero_class.zero", _)) = 0
37387
3581483cca6c qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
haftmann
parents: 37145
diff changeset
   517
  | dest_nat (Const ("Nat.Suc", _) $ t) = dest_nat t + 1
5207
wenzelm
parents: 5096
diff changeset
   518
  | dest_nat t = raise TERM ("dest_nat", [t]);
wenzelm
parents: 5096
diff changeset
   519
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   520
val class_size = "Nat.size";
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   521
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   522
fun size_const T = Const ("Nat.size_class.size", T --> natT);
02440636214f abstract size function in hologic.ML
haftmann
parents: 22391
diff changeset
   523
5207
wenzelm
parents: 5096
diff changeset
   524
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   525
(* binary numerals and int *)
21778
66440bf72cdc binary numerals: restricted to actual abstract syntax;
wenzelm
parents: 21755
diff changeset
   526
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   527
val numT = Type ("Num.num", []);
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25887
diff changeset
   528
val intT = Type ("Int.int", []);
21778
66440bf72cdc binary numerals: restricted to actual abstract syntax;
wenzelm
parents: 21755
diff changeset
   529
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   530
val one_const = Const ("Num.num.One", numT)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   531
and bit0_const = Const ("Num.num.Bit0", numT --> numT)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   532
and bit1_const = Const ("Num.num.Bit1", numT --> numT);
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26036
diff changeset
   533
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   534
fun mk_numeral i =
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   535
  let
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   536
    fun mk 1 = one_const
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   537
      | mk i =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   538
          let
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   539
            val (q, r) = Integer.div_mod i 2
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   540
          in (if r = 0 then bit0_const else bit1_const) $ mk q end
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   541
  in
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   542
    if i > 0 then mk i else raise TERM ("mk_numeral: " ^ string_of_int i, [])
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   543
  end
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   544
62342
1cf129590be8 consolidated name
haftmann
parents: 61424
diff changeset
   545
fun dest_numeral (Const ("Num.num.One", _)) = 1
1cf129590be8 consolidated name
haftmann
parents: 61424
diff changeset
   546
  | dest_numeral (Const ("Num.num.Bit0", _) $ bs) = 2 * dest_numeral bs
1cf129590be8 consolidated name
haftmann
parents: 61424
diff changeset
   547
  | dest_numeral (Const ("Num.num.Bit1", _) $ bs) = 2 * dest_numeral bs + 1
1cf129590be8 consolidated name
haftmann
parents: 61424
diff changeset
   548
  | dest_numeral t = raise TERM ("dest_num", [t]);
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   549
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   550
fun numeral_const T = Const ("Num.numeral_class.numeral", numT --> T);
21820
2f2b6a965ccc introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents: 21788
diff changeset
   551
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   552
fun add_numerals (Const ("Num.numeral_class.numeral", Type (_, [_, T])) $ t) = cons (t, T)
23269
851b8ea067ac simplified/renamed add_numerals;
wenzelm
parents: 23247
diff changeset
   553
  | add_numerals (t $ u) = add_numerals t #> add_numerals u
851b8ea067ac simplified/renamed add_numerals;
wenzelm
parents: 23247
diff changeset
   554
  | add_numerals (Abs (_, _, t)) = add_numerals t
851b8ea067ac simplified/renamed add_numerals;
wenzelm
parents: 23247
diff changeset
   555
  | add_numerals _ = I;
22391
56861fe9c22c added add_numerals_of
haftmann
parents: 21829
diff changeset
   556
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   557
fun mk_number T 0 = Const ("Groups.zero_class.zero", T)
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   558
  | mk_number T 1 = Const ("Groups.one_class.one", T)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   559
  | mk_number T i =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46216
diff changeset
   560
    if i > 0 then numeral_const T $ mk_numeral i
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 53887
diff changeset
   561
    else Const ("Groups.uminus_class.uminus", T --> T) $ mk_number T (~ i);
21820
2f2b6a965ccc introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents: 21788
diff changeset
   562
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   563
fun dest_number (Const ("Groups.zero_class.zero", T)) = (T, 0)
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 34974
diff changeset
   564
  | dest_number (Const ("Groups.one_class.one", T)) = (T, 1)
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   565
  | dest_number (Const ("Num.numeral_class.numeral", \<^Type>\<open>fun _ T\<close>) $ t) = (T, dest_numeral t)
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   566
  | dest_number (Const ("Groups.uminus_class.uminus", \<^Type>\<open>fun _ _\<close>) $ t) =
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 53887
diff changeset
   567
      apsnd (op ~) (dest_number t)
21820
2f2b6a965ccc introduced mk/dest_numeral/number for mk/dest_binum etc.
haftmann
parents: 21788
diff changeset
   568
  | dest_number t = raise TERM ("dest_number", [t]);
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   569
21829
016eff9c5699 simplified mk/dest_numeral (cf. mk/dest_binum of 1.65);
wenzelm
parents: 21820
diff changeset
   570
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   571
(* code target numerals *)
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   572
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   573
val code_integerT = Type ("Code_Numeral.integer", []);
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   574
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   575
val code_naturalT = Type ("Code_Numeral.natural", []);
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   576
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   577
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   578
(* real *)
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   579
51523
97b5e8a1291c rename RealDef to Real
hoelzl
parents: 51315
diff changeset
   580
val realT = Type ("Real.real", []);
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   581
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   582
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   583
(* list *)
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   584
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   585
fun listT T = Type ("List.list", [T]);
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   586
25887
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   587
fun nil_const T = Const ("List.list.Nil", listT T);
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   588
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   589
fun cons_const T =
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   590
  let val lT = listT T
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   591
  in Const ("List.list.Cons", T --> lT --> lT) end;
5dcc3c257922 Added nil_const and cons_const.
berghofe
parents: 25172
diff changeset
   592
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   593
fun mk_list T ts =
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   594
  let
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   595
    val lT = listT T;
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   596
    val Nil = Const ("List.list.Nil", lT);
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   597
    fun Cons t u = Const ("List.list.Cons", T --> lT --> lT) $ t $ u;
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   598
  in fold_rev Cons ts Nil end;
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   599
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   600
fun dest_list (Const ("List.list.Nil", _)) = []
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   601
  | dest_list (Const ("List.list.Cons", _) $ t $ u) = t :: dest_list u
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   602
  | dest_list t = raise TERM ("dest_list", [t]);
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   603
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   604
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   605
(* booleans as bits *)
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   606
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   607
fun mk_bit b =
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   608
  if b = 0 then \<^Const>\<open>False\<close>
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   609
  else if b = 1 then \<^Const>\<open>True\<close>
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   610
  else raise TERM ("mk_bit", []);
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   611
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   612
fun mk_bits len = map mk_bit o Integer.radicify 2 len;
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   613
81939
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   614
fun dest_bit \<^Const>\<open>False\<close> = 0
07fefe59ac20 misc tuning: more antiquotations;
wenzelm
parents: 74610
diff changeset
   615
  | dest_bit \<^Const>\<open>True\<close> = 1
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   616
  | dest_bit _ = raise TERM ("dest_bit", []);
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   617
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   618
val dest_bits = Integer.eval_radix 2 o map dest_bit;
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   619
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   620
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   621
(* char *)
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   622
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   623
val charT = Type ("String.char", []);
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   624
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   625
val Char_const = Const ("String.char.Char", replicate 8 boolT ---> charT);
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   626
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   627
fun mk_char i =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   628
  if 0 <= i andalso i <= 255
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   629
  then list_comb (Char_const, mk_bits 8 i)
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   630
  else raise TERM ("mk_char", [])
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   631
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   632
fun dest_char (Const ("String.char.Char", _) $ b0 $ b1 $ b2 $ b3 $ b4 $ b5 $ b6 $ b7) =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   633
      dest_bits [b0, b1, b2, b3, b4, b5, b6, b7]
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   634
  | dest_char t = raise TERM ("dest_char", [t]);
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   635
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   636
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   637
(* string *)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   638
32446
cde4f2c8bdd5 fixed HOLogic.stringT
krauss
parents: 32342
diff changeset
   639
val stringT = listT charT;
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   640
40627
becf5d5187cc renamed raw "explode" function to "raw_explode" to emphasize its meaning;
wenzelm
parents: 39756
diff changeset
   641
val mk_string = mk_list charT o map (mk_char o ord) o raw_explode;
21755
22dd32812116 misc cleanup -- removed non-HOL operations;
wenzelm
parents: 21621
diff changeset
   642
val dest_string = implode o map (chr o dest_char) o dest_list;
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   643
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   644
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   645
(* literal *)
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   646
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   647
val literalT = Type ("String.literal", []);
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   648
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   649
val Literal_const = Const ("String.Literal", replicate 7 boolT ---> literalT --> literalT);
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   650
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   651
fun mk_literal s = 
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   652
  let
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   653
    fun mk [] =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   654
          Const ("Groups.zero_class.zero", literalT)
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   655
      | mk (c :: cs) =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   656
          list_comb (Literal_const, mk_bits 7 c) $ mk cs;
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   657
    val cs = map ord (raw_explode s);
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   658
  in
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   659
    if forall (fn c => c < 128) cs
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   660
    then mk cs
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   661
    else raise TERM ("mk_literal", [])
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   662
  end;
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   663
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   664
val dest_literal =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   665
  let
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   666
    fun dest (Const ("Groups.zero_class.zero", Type ("String.literal", []))) = []
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   667
      | dest (Const ("String.Literal", _) $ b0 $ b1 $ b2 $ b3 $ b4 $ b5 $ b6 $ t) =
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   668
          chr (dest_bits [b0, b1, b2, b3, b4, b5, b6]) :: dest t
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   669
      | dest t = raise TERM ("dest_literal", [t]);
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67710
diff changeset
   670
  in implode o dest end;
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 30453
diff changeset
   671
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   672
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   673
(* typerep and term *)
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   674
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   675
val typerepT = Type ("Typerep.typerep", []);
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   676
31736
926ebca5a145 more appropriate mk_typerep
haftmann
parents: 31463
diff changeset
   677
fun mk_typerep (Type (tyco, Ts)) = Const ("Typerep.typerep.Typerep",
926ebca5a145 more appropriate mk_typerep
haftmann
parents: 31463
diff changeset
   678
      literalT --> listT typerepT --> typerepT) $ mk_literal tyco
926ebca5a145 more appropriate mk_typerep
haftmann
parents: 31463
diff changeset
   679
        $ mk_list typerepT (map mk_typerep Ts)
926ebca5a145 more appropriate mk_typerep
haftmann
parents: 31463
diff changeset
   680
  | mk_typerep (T as TFree _) = Const ("Typerep.typerep_class.typerep",
926ebca5a145 more appropriate mk_typerep
haftmann
parents: 31463
diff changeset
   681
      Term.itselfT T --> typerepT) $ Logic.mk_type T;
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   682
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32446
diff changeset
   683
val termT = Type ("Code_Evaluation.term", []);
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   684
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32446
diff changeset
   685
fun term_of_const T = Const ("Code_Evaluation.term_of_class.term_of", T --> termT);
32339
40612b7ace87 termT and term_of_const
haftmann
parents: 32287
diff changeset
   686
40612b7ace87 termT and term_of_const
haftmann
parents: 32287
diff changeset
   687
fun mk_term_of T t = term_of_const T $ t;
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   688
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   689
fun reflect_term (Const (c, T)) =
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32446
diff changeset
   690
      Const ("Code_Evaluation.Const", literalT --> typerepT --> termT)
31205
98370b26c2ce String.literal replaces message_string, code_numeral replaces (code_)index
haftmann
parents: 31183
diff changeset
   691
        $ mk_literal c $ mk_typerep T
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   692
  | reflect_term (t1 $ t2) =
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32446
diff changeset
   693
      Const ("Code_Evaluation.App", termT --> termT --> termT)
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   694
        $ reflect_term t1 $ reflect_term t2
31183
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   695
  | reflect_term (Abs (v, _, t)) = Abs (v, termT, reflect_term t)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   696
  | reflect_term t = t;
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   697
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   698
fun mk_valtermify_app c vs T =
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   699
  let
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   700
    fun termifyT T = mk_prodT (T, unitT --> termT);
32657
5f13912245ff Code_Eval(uation)
haftmann
parents: 32446
diff changeset
   701
    fun valapp T T' = Const ("Code_Evaluation.valapp",
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   702
      termifyT (T --> T') --> termifyT T --> termifyT T');
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   703
    fun mk_fTs [] _ = []
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   704
      | mk_fTs (_ :: Ts) T = (Ts ---> T) :: mk_fTs Ts T;
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   705
    val Ts = map snd vs;
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   706
    val t = Const (c, Ts ---> T);
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   707
    val tt = mk_prod (t, Abs ("u", unitT, reflect_term t));
33245
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32657
diff changeset
   708
    fun app (fT, (v, T)) t = valapp T fT $ t $ Free (v, termifyT T);
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32657
diff changeset
   709
  in fold app (mk_fTs Ts T ~~ vs) tt end;
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   710
31183
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   711
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   712
(* open state monads *)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   713
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   714
fun mk_return T U x = pair_const T U $ x;
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   715
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   716
fun mk_ST clauses t U (someT, V) =
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   717
  let
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   718
    val R = case someT of SOME T => mk_prodT (T, V) | NONE => V
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   719
    fun mk_clause ((t, U), SOME (v, T)) (t', U') =
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   720
          (Const ("Product_Type.scomp", (U --> mk_prodT (T, U')) --> (T --> U' --> R) --> U --> R)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   721
            $ t $ lambda (Free (v, T)) t', U)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   722
      | mk_clause ((t, U), NONE) (t', U') =
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   723
          (Const ("Product_Type.fcomp", (U --> U') --> (U' --> R) --> U --> R)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   724
            $ t $ t', U)
13effe47174c combinators for single-threaded operations
haftmann
parents: 31135
diff changeset
   725
  in fold_rev mk_clause clauses (t, U) |> fst end;
31135
e2d777dcf161 added abstract operations for typerep/term_of
haftmann
parents: 31048
diff changeset
   726
38550
haftmann
parents: 38548
diff changeset
   727
haftmann
parents: 38548
diff changeset
   728
(* random seeds *)
haftmann
parents: 38548
diff changeset
   729
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   730
val random_seedT = mk_prodT (code_naturalT, code_naturalT);
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   731
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   732
fun mk_random T t = Const ("Quickcheck_Random.random_class.random", code_naturalT
31463
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   733
  --> random_seedT --> mk_prodT (mk_prodT (T, unitT --> termT), random_seedT)) $ t;
c5681ed50eab added mk_valtermify_app and mk_random
haftmann
parents: 31456
diff changeset
   734
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   735
end;