src/HOL/hologic.ML
author haftmann
Mon, 27 Nov 2006 13:42:46 +0100
changeset 21550 7cc49399929a
parent 21473 02054bf31c0e
child 21621 f9fd69d96c4e
permissions -rw-r--r--
added Trueprop_conv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/hologic.ML
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson and Markus Wenzel
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
Abstract syntax operations for HOL.
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
signature HOLOGIC =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
sig
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
    10
  val typeS: sort
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
    11
  val typeT: typ
8275
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
    12
  val boolN: string
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
  val boolT: typ
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    14
  val false_const: term
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    15
  val true_const: term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
  val mk_setT: typ -> typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
  val dest_setT: typ -> typ
15965
f422f8283491 Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents: 15945
diff changeset
    18
  val Trueprop: term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
  val mk_Trueprop: term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
  val dest_Trueprop: term -> term
21550
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
    21
  val Trueprop_conv: (cterm -> thm) -> cterm -> thm
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
  val conj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
  val disj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
  val imp: term
8429
515fa7533354 added Not;
wenzelm
parents: 8302
diff changeset
    25
  val Not: term
7690
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    26
  val mk_conj: term * term -> term
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    27
  val mk_disj: term * term -> term
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
    28
  val mk_imp: term * term -> term
16835
2e7d7ec7a268 removed not_const -- use Not instead;
wenzelm
parents: 15965
diff changeset
    29
  val mk_not: term -> term
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
    30
  val dest_conj: term -> term list
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
    31
  val dest_disj: term -> term list
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    32
  val dest_imp: term -> term * term
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
    33
  val dest_not: term -> term
11683
f2268239b93f added dest_concls;
wenzelm
parents: 11604
diff changeset
    34
  val dest_concls: term -> term list
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
  val eq_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
  val all_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
  val exists_const: typ -> term
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
    38
  val choice_const: typ -> term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
  val Collect_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
  val mk_eq: term * term -> term
6031
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
    41
  val dest_eq: term -> term * term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
  val mk_all: string * typ * term -> term
13640
993576f4de30 Added list_all.
berghofe
parents: 12338
diff changeset
    43
  val list_all: (string * typ) list * term -> term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
  val mk_exists: string * typ * term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
  val mk_Collect: string * typ * term -> term
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20973
diff changeset
    46
  val class_eq: string
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
  val mk_mem: term * term -> term
6380
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
    48
  val dest_mem: term -> term * term
11818
9eab353e810b added mk_UNIV;
wenzelm
parents: 11683
diff changeset
    49
  val mk_UNIV: typ -> term
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    50
  val mk_binop: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    51
  val mk_binrel: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    52
  val dest_bin: string -> typ -> term -> term * term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    53
  val unitT: typ
9362
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
    54
  val is_unitT: typ -> bool
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    55
  val unit: term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    56
  val is_unit: term -> bool
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    57
  val mk_prodT: typ * typ -> typ
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    58
  val dest_prodT: typ -> typ * typ
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
    59
  val pair_const: typ -> typ -> term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    60
  val mk_prod: term * term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    61
  val dest_prod: term -> term * term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    62
  val mk_fst: term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    63
  val mk_snd: term -> term
18285
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
    64
  val mk_split: term -> term
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    65
  val prodT_factors: typ -> typ list
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    66
  val split_const: typ * typ * typ -> term
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    67
  val mk_tuple: typ -> term list -> term
5207
wenzelm
parents: 5096
diff changeset
    68
  val natT: typ
wenzelm
parents: 5096
diff changeset
    69
  val zero: term
wenzelm
parents: 5096
diff changeset
    70
  val is_zero: term -> bool
wenzelm
parents: 5096
diff changeset
    71
  val mk_Suc: term -> term
wenzelm
parents: 5096
diff changeset
    72
  val dest_Suc: term -> term
wenzelm
parents: 5096
diff changeset
    73
  val mk_nat: int -> term
wenzelm
parents: 5096
diff changeset
    74
  val dest_nat: term -> int
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    75
  val intT: typ
15965
f422f8283491 Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents: 15945
diff changeset
    76
  val mk_int: IntInf.int -> term
7163
3a2f8fdf4dab added realT
paulson
parents: 7073
diff changeset
    77
  val realT: typ
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
    78
  val bitT: typ
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
    79
  val B0_const: term
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
    80
  val B1_const: term
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    81
  val pls_const: term
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    82
  val min_const: term
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
    83
  val bit_const: term
8768
9f18aba48519 number_of now takes a type arg
paulson
parents: 8739
diff changeset
    84
  val number_of_const: typ -> term
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
    85
  val int_of: int list -> IntInf.int
15965
f422f8283491 Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents: 15945
diff changeset
    86
  val dest_binum: term -> IntInf.int
19481
a6205c6203ea renamed HOLogic.mk_bin to mk_binum for consistency with dest_binum
paulson
parents: 18285
diff changeset
    87
  val mk_binum: IntInf.int -> term
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
    88
  val bin_of : term -> int list
17083
051b0897bc98 added listT
nipkow
parents: 16971
diff changeset
    89
  val listT : typ -> typ
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
    90
  val mk_list: ('a -> term) -> typ -> 'a list -> term
15062
8049f217428e Added function dest_list.
berghofe
parents: 15013
diff changeset
    91
  val dest_list: term -> term list
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    92
  val charT : typ
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    93
  val int_of_nibble : string -> int
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    94
  val mk_char : string -> term
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    95
  val dest_char : term -> int option
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    96
  val print_char : string -> string
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    97
  val stringT : typ
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    98
  val mk_string : string -> term
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
    99
  val print_string : string -> string
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   102
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
structure HOLogic: HOLOGIC =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
struct
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
   106
(* HOL syntax *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
   108
val typeS: sort = ["HOL.type"];
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
   109
val typeT = TypeInfer.anyT typeS;
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11818
diff changeset
   110
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   112
(* bool and set *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
8275
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
   114
val boolN = "bool";
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
   115
val boolT = Type (boolN, []);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
9856
c34d3c94298c added not_const;
wenzelm
parents: 9473
diff changeset
   117
val true_const =  Const ("True", boolT);
c34d3c94298c added not_const;
wenzelm
parents: 9473
diff changeset
   118
val false_const = Const ("False", boolT);
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
   119
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
fun mk_setT T = Type ("set", [T]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
fun dest_setT (Type ("set", [T])) = T
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   123
  | 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
   124
8275
32387a2c7749 added boolN;
wenzelm
parents: 8100
diff changeset
   125
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
   126
(* logic *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
val Trueprop = Const ("Trueprop", boolT --> propT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
fun mk_Trueprop P = Trueprop $ P;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   133
  | dest_Trueprop t = raise TERM ("dest_Trueprop", [t]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
21550
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
   135
fun Trueprop_conv conv ct = (case term_of ct of
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
   136
    Const ("Trueprop", _) $ _ =>
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
   137
      let val (ct1, ct2) = Thm.dest_comb ct
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
   138
      in Thm.combination (Thm.reflexive ct1) (conv ct2) end
7cc49399929a added Trueprop_conv
haftmann
parents: 21473
diff changeset
   139
  | _ => raise TERM ("Trueprop_conv", []));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
val conj = Const ("op &", [boolT, boolT] ---> boolT)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
and disj = Const ("op |", [boolT, boolT] ---> boolT)
8429
515fa7533354 added Not;
wenzelm
parents: 8302
diff changeset
   143
and imp = Const ("op -->", [boolT, boolT] ---> boolT)
515fa7533354 added Not;
wenzelm
parents: 8302
diff changeset
   144
and Not = Const ("Not", boolT --> boolT);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
7690
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
   146
fun mk_conj (t1, t2) = conj $ t1 $ t2
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
   147
and mk_disj (t1, t2) = disj $ t1 $ t2
16835
2e7d7ec7a268 removed not_const -- use Not instead;
wenzelm
parents: 15965
diff changeset
   148
and mk_imp (t1, t2) = imp $ t1 $ t2
2e7d7ec7a268 removed not_const -- use Not instead;
wenzelm
parents: 15965
diff changeset
   149
and mk_not t = Not $ t;
7690
27676b51243d added mk_conj, mk_disj, mk_imp;
wenzelm
parents: 7548
diff changeset
   150
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   151
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t'
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   152
  | dest_conj t = [t];
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   153
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   154
fun dest_disj (Const ("op |", _) $ t $ t') = t :: dest_disj t'
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   155
  | dest_disj t = [t];
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   156
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4294
diff changeset
   157
fun dest_imp (Const("op -->",_) $ A $ B) = (A, B)
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4294
diff changeset
   158
  | 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
   159
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   160
fun dest_not (Const ("Not", _) $ t) = t
429666b09783 proof reconstruction for external ATPs
paulson
parents: 15062
diff changeset
   161
  | dest_not t = raise TERM ("dest_not", [t]);
8302
da404f79c1fc added dest_conj;
wenzelm
parents: 8275
diff changeset
   162
11683
f2268239b93f added dest_concls;
wenzelm
parents: 11604
diff changeset
   163
fun imp_concl_of t = imp_concl_of (#2 (dest_imp t)) handle TERM _ => t;
f2268239b93f added dest_concls;
wenzelm
parents: 11604
diff changeset
   164
val dest_concls = map imp_concl_of o dest_conj o dest_Trueprop;
f2268239b93f added dest_concls;
wenzelm
parents: 11604
diff changeset
   165
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
fun eq_const T = Const ("op =", [T, T] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
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
   168
6031
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
   169
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs)
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
   170
  | dest_eq t = raise TERM ("dest_eq", [t])
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
   171
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
fun all_const T = Const ("All", [T --> boolT] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
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
   174
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
   175
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
15945
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   179
fun choice_const T = Const("Hilbert_Choice.Eps", (T --> boolT) --> T)
08e8d3fb9343 choice_const moved to hologic.ML
paulson
parents: 15620
diff changeset
   180
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
21045
66d6d1b0ddfa slight cleanup
haftmann
parents: 20973
diff changeset
   184
val class_eq = "Code_Generator.eq";
66d6d1b0ddfa slight cleanup
haftmann
parents: 20973
diff changeset
   185
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
fun mk_mem (x, A) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
  let val setT = fastype_of A in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
    Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
6380
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   191
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A)
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   192
  | dest_mem t = raise TERM ("dest_mem", [t]);
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   193
11818
9eab353e810b added mk_UNIV;
wenzelm
parents: 11683
diff changeset
   194
fun mk_UNIV T = Const ("UNIV", mk_setT T);
9eab353e810b added mk_UNIV;
wenzelm
parents: 11683
diff changeset
   195
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
13743
f8f9393be64c Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents: 13640
diff changeset
   197
(* binary operations and relations *)
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   198
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   199
fun mk_binop c (t, u) =
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   200
  let val T = fastype_of t in
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   201
    Const (c, [T, T] ---> T) $ t $ u
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   202
  end;
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   203
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   204
fun mk_binrel c (t, u) =
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   205
  let val T = fastype_of t in
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   206
    Const (c, [T, T] ---> boolT) $ t $ u
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   207
  end;
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   208
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14103
diff changeset
   209
(*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
   210
  way of handling polymorphic operators.*)
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   211
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) =
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14103
diff changeset
   212
      if c = c' andalso (T=T' orelse T=dummyT) then (t, u)
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   213
      else raise TERM ("dest_bin " ^ c, [tm])
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   214
  | dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]);
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   215
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   216
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   217
(* unit *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   218
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   219
val unitT = Type ("Product_Type.unit", []);
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   220
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   221
fun is_unitT (Type ("Product_Type.unit", [])) = true
9362
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
   222
  | is_unitT _ = false;
b78d4246a320 added is_unitT;
wenzelm
parents: 8768
diff changeset
   223
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   224
val unit = Const ("Product_Type.Unity", unitT);
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   225
11604
14b03d1463d4 made unit type local;
wenzelm
parents: 10693
diff changeset
   226
fun is_unit (Const ("Product_Type.Unity", _)) = true
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   227
  | is_unit _ = false;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   228
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   229
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   230
(* prod *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   231
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   232
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   233
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   234
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   235
  | dest_prodT T = raise TYPE ("dest_prodT", [T], []);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   236
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
   237
fun pair_const T1 T2 = Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2));
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
   238
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   239
fun mk_prod (t1, t2) =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   240
  let val T1 = fastype_of t1 and T2 = fastype_of t2 in
14048
03a9adec9869 Added pair_const.
berghofe
parents: 13755
diff changeset
   241
    pair_const T1 T2 $ t1 $ t2
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   242
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   243
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   244
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   245
  | dest_prod t = raise TERM ("dest_prod", [t]);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   246
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   247
fun mk_fst p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   248
  let val pT = fastype_of p in
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   249
    Const ("fst", pT --> fst (dest_prodT pT)) $ p
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   250
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   251
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   252
fun mk_snd p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   253
  let val pT = fastype_of p in
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   254
    Const ("snd", pT --> snd (dest_prodT pT)) $ p
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   255
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   256
18285
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   257
fun split_const (A, B, C) =
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   258
  Const ("split", (A --> B --> C) --> mk_prodT (A, B) --> C);
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   259
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   260
fun mk_split t =
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   261
  (case Term.fastype_of t of
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   262
    T as (Type ("fun", [A, Type ("fun", [B, C])])) =>
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   263
      Const ("split", T --> mk_prodT (A, B) --> C) $ t
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   264
  | _ => raise TERM ("mk_split: bad body type", [t]));
83e92f9b32c4 added mk_split;
wenzelm
parents: 17083
diff changeset
   265
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   266
(*Maps the type T1 * ... * Tn to [T1, ..., Tn], however nested*)
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   267
fun prodT_factors (Type ("*", [T1, T2])) = prodT_factors T1 @ prodT_factors T2
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   268
  | prodT_factors T = [T];
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   269
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   270
(*Makes a nested tuple from a list, following the product type structure*)
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   271
fun mk_tuple (Type ("*", [T1, T2])) tms =
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   272
        mk_prod (mk_tuple T1 tms,
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15151
diff changeset
   273
                 mk_tuple T2 (Library.drop (length (prodT_factors T1), tms)))
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   274
  | mk_tuple T (t::_) = t;
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   275
5207
wenzelm
parents: 5096
diff changeset
   276
wenzelm
parents: 5096
diff changeset
   277
(* nat *)
wenzelm
parents: 5096
diff changeset
   278
wenzelm
parents: 5096
diff changeset
   279
val natT = Type ("nat", []);
wenzelm
parents: 5096
diff changeset
   280
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   281
val zero = Const ("HOL.zero", natT);
5207
wenzelm
parents: 5096
diff changeset
   282
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   283
fun is_zero (Const ("HOL.zero", _)) = true
5207
wenzelm
parents: 5096
diff changeset
   284
  | is_zero _ = false;
wenzelm
parents: 5096
diff changeset
   285
wenzelm
parents: 5096
diff changeset
   286
fun mk_Suc t = Const ("Suc", natT --> natT) $ t;
wenzelm
parents: 5096
diff changeset
   287
wenzelm
parents: 5096
diff changeset
   288
fun dest_Suc (Const ("Suc", _) $ t) = t
wenzelm
parents: 5096
diff changeset
   289
  | dest_Suc t = raise TERM ("dest_Suc", [t]);
wenzelm
parents: 5096
diff changeset
   290
wenzelm
parents: 5096
diff changeset
   291
fun mk_nat 0 = zero
wenzelm
parents: 5096
diff changeset
   292
  | mk_nat n = mk_Suc (mk_nat (n - 1));
wenzelm
parents: 5096
diff changeset
   293
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   294
fun dest_nat (Const ("HOL.zero", _)) = 0
5207
wenzelm
parents: 5096
diff changeset
   295
  | dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1
wenzelm
parents: 5096
diff changeset
   296
  | dest_nat t = raise TERM ("dest_nat", [t]);
wenzelm
parents: 5096
diff changeset
   297
wenzelm
parents: 5096
diff changeset
   298
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   299
(* binary numerals and int *)
7073
a959b4391fd8 added boolean and binary constants
paulson
parents: 6380
diff changeset
   300
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   301
val intT = Type ("IntDef.int", []);
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   302
val bitT = Type ("Numeral.bit", []);
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   303
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   304
val B0_const = Const ("Numeral.bit.B0", bitT);
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   305
val B1_const =  Const ("Numeral.bit.B1", bitT);
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   306
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   307
val pls_const = Const ("Numeral.Pls", intT)
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   308
and min_const = Const ("Numeral.Min", intT)
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   309
and bit_const = Const ("Numeral.Bit", [intT, bitT] ---> intT);
8768
9f18aba48519 number_of now takes a type arg
paulson
parents: 8739
diff changeset
   310
20485
3078fd2eec7b got rid of Numeral.bin type
haftmann
parents: 19481
diff changeset
   311
fun number_of_const T = Const ("Numeral.number_of", intT --> T);
8739
60a1ed9e3c34 added number_of_const: term
paulson
parents: 8429
diff changeset
   312
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   313
fun int_of [] = 0
15965
f422f8283491 Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents: 15945
diff changeset
   314
  | int_of (b :: bs) = IntInf.fromInt b + (2 * int_of bs);
15595
dc8a41c7cefc fix integer overflow in numeral syntax for SML NJ.
obua
parents: 15574
diff changeset
   315
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   316
(*When called from a print translation, the Numeral qualifier will probably have
21473
02054bf31c0e removed dead code;
wenzelm
parents: 21455
diff changeset
   317
  been removed from Bit, bit.B0, etc.*)  (* FIXME !? *)
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   318
fun dest_bit (Const ("Numeral.bit.B0", _)) = 0
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   319
  | dest_bit (Const ("Numeral.bit.B1", _)) = 1
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   320
  | dest_bit (Const ("bit.B0", _)) = 0
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   321
  | dest_bit (Const ("bit.B1", _)) = 1
7548
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   322
  | dest_bit t = raise TERM("dest_bit", [t]);
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   323
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 14387
diff changeset
   324
fun bin_of (Const ("Numeral.Pls", _)) = []
34264f5e4691 new treatment of binary numerals
paulson
parents: 14387
diff changeset
   325
  | bin_of (Const ("Numeral.Min", _)) = [~1]
34264f5e4691 new treatment of binary numerals
paulson
parents: 14387
diff changeset
   326
  | bin_of (Const ("Numeral.Bit", _) $ bs $ b) = dest_bit b :: bin_of bs
15620
8ccdc8bc66a2 replaced bool by a new datatype "bit" for binary numerals
paulson
parents: 15595
diff changeset
   327
  | bin_of (Const ("Bit", _) $ bs $ b) = dest_bit b :: bin_of bs
7548
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   328
  | bin_of t = raise TERM("bin_of", [t]);
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   329
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   330
val dest_binum = int_of o bin_of;
9e29a3af64ab ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents: 7163
diff changeset
   331
19481
a6205c6203ea renamed HOLogic.mk_bin to mk_binum for consistency with dest_binum
paulson
parents: 18285
diff changeset
   332
fun mk_binum n =
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   333
  let
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   334
    fun mk_bit n = if n = 0 then B0_const else B1_const;
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   335
    fun bin_of n =
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   336
      if n = 0 then pls_const
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   337
      else if n = ~1 then min_const
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   338
      else
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   339
        let
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   340
          val (q,r) = IntInf.divMod (n, 2);
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   341
        in bit_const $ bin_of q $ mk_bit r end;
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   342
  in bin_of n end;
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   343
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   344
fun mk_int 0 = Const ("HOL.zero", intT)
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20485
diff changeset
   345
  | mk_int 1 = Const ("HOL.one", intT)
19481
a6205c6203ea renamed HOLogic.mk_bin to mk_binum for consistency with dest_binum
paulson
parents: 18285
diff changeset
   346
  | mk_int i = number_of_const intT $ mk_binum i;
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   347
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   348
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   349
(* real *)
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   350
16971
968adbfbf93b removed read_cterm;
wenzelm
parents: 16835
diff changeset
   351
val realT = Type ("RealDef.real", []);
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   352
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   353
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   354
(* list *)
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   355
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   356
fun listT T =  Type ("List.list", [T]);
17083
051b0897bc98 added listT
nipkow
parents: 16971
diff changeset
   357
051b0897bc98 added listT
nipkow
parents: 16971
diff changeset
   358
fun mk_list f T [] = Const ("List.list.Nil", listT T)
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   359
  | mk_list f T (x :: xs) = Const ("List.list.Cons",
17083
051b0897bc98 added listT
nipkow
parents: 16971
diff changeset
   360
      T --> listT T --> listT T) $ f x $
13755
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   361
        mk_list f T xs;
a9bb54a3cfb7 Added mk_int and mk_list.
berghofe
parents: 13743
diff changeset
   362
15062
8049f217428e Added function dest_list.
berghofe
parents: 15013
diff changeset
   363
fun dest_list (Const ("List.list.Nil", _)) = []
8049f217428e Added function dest_list.
berghofe
parents: 15013
diff changeset
   364
  | dest_list (Const ("List.list.Cons", _) $ x $ xs) = x :: dest_list xs
8049f217428e Added function dest_list.
berghofe
parents: 15013
diff changeset
   365
  | dest_list t = raise TERM ("dest_list", [t]);
8049f217428e Added function dest_list.
berghofe
parents: 15013
diff changeset
   366
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   367
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   368
(* char *)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   369
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   370
val nibbleT = Type ("List.nibble", []);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   371
val charT = Type ("List.char", []);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   372
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   373
fun int_of_nibble h =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   374
  if "0" <= h andalso h <= "9" then ord h - ord "0"
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   375
  else if "A" <= h andalso h <= "F" then ord h - ord "A" + 10
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   376
  else raise Match;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   377
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   378
fun nibble_of_int i =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   379
  if i <= 9 then chr (ord "0" + i) else chr (ord "A" + i - 10);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   380
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   381
fun mk_char c =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   382
  Const ("List.char.Char", nibbleT --> nibbleT --> charT) $
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   383
    Const ("List.nibble.Nibble" ^ nibble_of_int (ord c div 16), nibbleT) $
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   384
    Const ("List.nibble.Nibble" ^ nibble_of_int (ord c mod 16), nibbleT);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   385
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   386
fun dest_char (Const ("List.char.Char", _) $ c1 $ c2) =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   387
      let
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   388
        fun dest_nibble (Const (s, _)) = (int_of_nibble o unprefix "List.nibble.Nibble") s
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   389
          | dest_nibble _ = raise Match;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   390
      in
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   391
        (SOME (dest_nibble c1 * 16 + dest_nibble c2)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   392
        handle Fail _ => NONE | Match => NONE)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   393
      end
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   394
  | dest_char _ = NONE;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   395
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   396
fun print_char c =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   397
  let
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   398
    val i = ord c
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   399
  in if i < 32
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   400
    then prefix "\\" (string_of_int i)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   401
    else c
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   402
  end;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   403
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   404
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   405
(* string *)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   406
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   407
val stringT = Type ("List.string", []);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   408
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   409
fun mk_string s =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   410
  let
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   411
    val ty_n = Type ("List.nibble", []);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   412
    val ty_c = Type ("List.char", []);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   413
    val ty_l = Type ("List.list", [ty_c]);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   414
    fun mk_nib n = Const ("List.nibble.Nibble" ^ chr (n + (if n <= 9 then ord "0" else ord "A" - 10)), ty_n);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   415
    fun mk_char c =
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   416
      if Symbol.is_ascii c andalso Symbol.is_printable c then
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   417
        Const ("List.char.Char", ty_n --> ty_n --> ty_c) $ mk_nib (ord c div 16) $ mk_nib (ord c mod 16)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   418
      else error ("Printable ASCII character expected: " ^ quote c);
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   419
    fun mk_string c t = Const ("List.list.Cons", ty_c --> ty_l --> ty_l)
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   420
      $ mk_char c $ t;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   421
  in fold_rev mk_string (explode s) (Const ("List.list.Nil", ty_l)) end;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   422
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   423
val print_string = quote;
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21219
diff changeset
   424
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   425
end;