src/HOL/hologic.ML
author paulson
Thu, 08 Jul 1999 13:37:40 +0200
changeset 6914 ad689270a265
parent 6380 32fda1090a13
child 7073 a959b4391fd8
permissions -rw-r--r--
new theory IntDiv.thy
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
  val termC: class
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
  val termS: sort
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
  val termTVar: typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
  val boolT: typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
  val mk_setT: typ -> typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
  val dest_setT: typ -> typ
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
  val mk_Trueprop: term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
  val dest_Trueprop: term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
  val conj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
  val disj: term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
  val imp: term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    21
  val dest_imp: term -> term * term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
  val eq_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
  val all_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
  val exists_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
  val Collect_const: typ -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
  val mk_eq: term * term -> term
6031
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
    27
  val dest_eq: term -> term * term
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
  val mk_all: string * typ * term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
  val mk_exists: string * typ * term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
  val mk_Collect: string * typ * term -> term
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
  val mk_mem: term * term -> term
6380
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
    32
  val dest_mem: term -> term * term
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    33
  val mk_binop: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    34
  val mk_binrel: string -> term * term -> term
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    35
  val dest_bin: string -> typ -> term -> term * term
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    36
  val unitT: typ
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    37
  val unit: term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    38
  val is_unit: term -> bool
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    39
  val mk_prodT: typ * typ -> typ
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    40
  val dest_prodT: typ -> typ * typ
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    41
  val mk_prod: term * term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    42
  val dest_prod: term -> term * term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    43
  val mk_fst: term -> term
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
    44
  val mk_snd: term -> term
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    45
  val prodT_factors: typ -> typ list
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    46
  val split_const: typ * typ * typ -> term
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
    47
  val mk_tuple: typ -> term list -> term
5207
wenzelm
parents: 5096
diff changeset
    48
  val natT: typ
wenzelm
parents: 5096
diff changeset
    49
  val zero: term
wenzelm
parents: 5096
diff changeset
    50
  val is_zero: term -> bool
wenzelm
parents: 5096
diff changeset
    51
  val mk_Suc: term -> term
wenzelm
parents: 5096
diff changeset
    52
  val dest_Suc: term -> term
wenzelm
parents: 5096
diff changeset
    53
  val mk_nat: int -> term
wenzelm
parents: 5096
diff changeset
    54
  val dest_nat: term -> int
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    57
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
structure HOLogic: HOLOGIC =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
struct
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    61
(* basics *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
val termC: class = "term";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
val termS: sort = [termC];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    66
val termTVar = TVar (("'a", 0), termS);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
    69
(* bool and set *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
val boolT = Type ("bool", []);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
fun mk_setT T = Type ("set", [T]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
fun dest_setT (Type ("set", [T])) = T
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
    76
  | 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
    77
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
val Trueprop = Const ("Trueprop", boolT --> propT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
fun mk_Trueprop P = Trueprop $ P;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
    84
  | dest_Trueprop t = raise TERM ("dest_Trueprop", [t]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
val conj = Const ("op &", [boolT, boolT] ---> boolT)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
and disj = Const ("op |", [boolT, boolT] ---> boolT)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
and imp = Const ("op -->", [boolT, boolT] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4294
diff changeset
    91
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
    92
  | 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
    93
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
fun eq_const T = Const ("op =", [T, T] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
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
    96
6031
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
    97
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs)
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
    98
  | dest_eq t = raise TERM ("dest_eq", [t])
d9fa148383e2 new function dest_eq
paulson
parents: 5207
diff changeset
    99
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
fun all_const T = Const ("All", [T --> boolT] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
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
   105
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
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
   108
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
fun mk_mem (x, A) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
  let val setT = fastype_of A in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
    Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
6380
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   114
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A)
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   115
  | dest_mem t = raise TERM ("dest_mem", [t]);
32fda1090a13 added dest_mem;
wenzelm
parents: 6031
diff changeset
   116
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   118
(* binary oprations and relations *)
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   119
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   120
fun mk_binop c (t, u) =
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   121
  let val T = fastype_of t in
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   122
    Const (c, [T, T] ---> T) $ t $ u
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   123
  end;
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   124
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   125
fun mk_binrel c (t, u) =
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   126
  let val T = fastype_of t in
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   127
    Const (c, [T, T] ---> boolT) $ t $ u
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   128
  end;
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   129
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   130
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) =
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   131
      if c = c' andalso T = T' then (t, u)
3794
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   132
      else raise TERM ("dest_bin " ^ c, [tm])
d543bb9ab896 eliminated raise_term, raise_typ;
wenzelm
parents: 2510
diff changeset
   133
  | dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]);
2510
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   134
e3d0ac75c723 binary oprations and relations;
wenzelm
parents: 923
diff changeset
   135
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   136
(* unit *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   137
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   138
val unitT = Type ("unit", []);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   139
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   140
val unit = Const ("()", unitT);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   141
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   142
fun is_unit (Const ("()", _)) = true
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   143
  | is_unit _ = false;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   144
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   145
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   146
(* prod *)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   147
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   148
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   149
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   150
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   151
  | dest_prodT T = raise TYPE ("dest_prodT", [T], []);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   152
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   153
fun mk_prod (t1, t2) =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   154
  let val T1 = fastype_of t1 and T2 = fastype_of t2 in
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   155
    Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)) $ t1 $ t2
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   156
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   157
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   158
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2)
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   159
  | dest_prod t = raise TERM ("dest_prod", [t]);
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   160
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   161
fun mk_fst p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   162
  let val pT = fastype_of p in
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   163
    Const ("fst", pT --> fst (dest_prodT pT)) $ p
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   164
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   165
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   166
fun mk_snd p =
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   167
  let val pT = fastype_of p in
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   168
    Const ("snd", pT --> snd (dest_prodT pT)) $ p
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   169
  end;
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   170
5096
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   171
(*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
   172
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
   173
  | prodT_factors T = [T];
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   174
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   175
fun split_const (Ta, Tb, Tc) = 
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   176
    Const ("split", [[Ta, Tb] ---> Tc, mk_prodT (Ta, Tb)] ---> Tc);
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   177
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   178
(*Makes a nested tuple from a list, following the product type structure*)
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   179
fun mk_tuple (Type ("*", [T1, T2])) tms = 
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   180
        mk_prod (mk_tuple T1 tms, 
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   181
                 mk_tuple T2 (drop (length (prodT_factors T1), tms)))
84b00be693b4 Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents: 4571
diff changeset
   182
  | mk_tuple T (t::_) = t;
4571
6b02fc8a97f6 added unit and prod stuff;
wenzelm
parents: 4466
diff changeset
   183
5207
wenzelm
parents: 5096
diff changeset
   184
wenzelm
parents: 5096
diff changeset
   185
wenzelm
parents: 5096
diff changeset
   186
(* nat *)
wenzelm
parents: 5096
diff changeset
   187
wenzelm
parents: 5096
diff changeset
   188
val natT = Type ("nat", []);
wenzelm
parents: 5096
diff changeset
   189
wenzelm
parents: 5096
diff changeset
   190
val zero = Const ("0", natT);
wenzelm
parents: 5096
diff changeset
   191
wenzelm
parents: 5096
diff changeset
   192
fun is_zero (Const ("0", _)) = true
wenzelm
parents: 5096
diff changeset
   193
  | is_zero _ = false;
wenzelm
parents: 5096
diff changeset
   194
wenzelm
parents: 5096
diff changeset
   195
fun mk_Suc t = Const ("Suc", natT --> natT) $ t;
wenzelm
parents: 5096
diff changeset
   196
wenzelm
parents: 5096
diff changeset
   197
fun dest_Suc (Const ("Suc", _) $ t) = t
wenzelm
parents: 5096
diff changeset
   198
  | dest_Suc t = raise TERM ("dest_Suc", [t]);
wenzelm
parents: 5096
diff changeset
   199
wenzelm
parents: 5096
diff changeset
   200
fun mk_nat 0 = zero
wenzelm
parents: 5096
diff changeset
   201
  | mk_nat n = mk_Suc (mk_nat (n - 1));
wenzelm
parents: 5096
diff changeset
   202
wenzelm
parents: 5096
diff changeset
   203
fun dest_nat (Const ("0", _)) = 0
wenzelm
parents: 5096
diff changeset
   204
  | dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1
wenzelm
parents: 5096
diff changeset
   205
  | dest_nat t = raise TERM ("dest_nat", [t]);
wenzelm
parents: 5096
diff changeset
   206
wenzelm
parents: 5096
diff changeset
   207
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
end;