author | haftmann |
Fri, 03 Nov 2006 14:22:38 +0100 | |
changeset 21152 | e97992896170 |
parent 21078 | 101aefd61aac |
child 21173 | 663a7b39894c |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/hologic.ML |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson and Markus Wenzel |
|
4 |
||
5 |
Abstract syntax operations for HOL. |
|
6 |
*) |
|
7 |
||
8 |
signature HOLOGIC = |
|
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 | 12 |
val boolN: string |
923 | 13 |
val boolT: typ |
7073 | 14 |
val false_const: term |
15 |
val true_const: term |
|
923 | 16 |
val mk_setT: typ -> typ |
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 | 19 |
val mk_Trueprop: term -> term |
20827 | 20 |
val is_Trueprop: term -> bool |
923 | 21 |
val dest_Trueprop: term -> term |
22 |
val conj: term |
|
23 |
val disj: term |
|
24 |
val imp: term |
|
8429 | 25 |
val Not: term |
7690 | 26 |
val mk_conj: term * term -> term |
27 |
val mk_disj: term * term -> term |
|
28 |
val mk_imp: term * term -> term |
|
16835 | 29 |
val mk_not: term -> term |
15151 | 30 |
val dest_conj: term -> term list |
15945 | 31 |
val dest_disj: term -> term list |
4571 | 32 |
val dest_imp: term -> term * term |
15151 | 33 |
val dest_not: term -> term |
11683 | 34 |
val dest_concls: term -> term list |
923 | 35 |
val eq_const: typ -> term |
36 |
val all_const: typ -> term |
|
37 |
val exists_const: typ -> term |
|
15945 | 38 |
val choice_const: typ -> term |
923 | 39 |
val Collect_const: typ -> term |
40 |
val mk_eq: term * term -> term |
|
6031 | 41 |
val dest_eq: term -> term * term |
20973 | 42 |
val dest_eq_typ: term -> (term * term) * typ |
923 | 43 |
val mk_all: string * typ * term -> term |
13640 | 44 |
val list_all: (string * typ) list * term -> term |
923 | 45 |
val mk_exists: string * typ * term -> term |
46 |
val mk_Collect: string * typ * term -> term |
|
21045 | 47 |
val class_eq: string |
923 | 48 |
val mk_mem: term * term -> term |
6380 | 49 |
val dest_mem: term -> term * term |
11818 | 50 |
val mk_UNIV: typ -> term |
2510 | 51 |
val mk_binop: string -> term * term -> term |
52 |
val mk_binrel: string -> term * term -> term |
|
53 |
val dest_bin: string -> typ -> term -> term * term |
|
4571 | 54 |
val unitT: typ |
9362 | 55 |
val is_unitT: typ -> bool |
4571 | 56 |
val unit: term |
57 |
val is_unit: term -> bool |
|
58 |
val mk_prodT: typ * typ -> typ |
|
59 |
val dest_prodT: typ -> typ * typ |
|
14048 | 60 |
val pair_const: typ -> typ -> term |
4571 | 61 |
val mk_prod: term * term -> term |
62 |
val dest_prod: term -> term * term |
|
63 |
val mk_fst: term -> term |
|
64 |
val mk_snd: term -> term |
|
18285 | 65 |
val mk_split: term -> term |
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
66 |
val prodT_factors: typ -> typ list |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
67 |
val split_const: typ * typ * typ -> term |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
68 |
val mk_tuple: typ -> term list -> term |
5207 | 69 |
val natT: typ |
70 |
val zero: term |
|
71 |
val is_zero: term -> bool |
|
72 |
val mk_Suc: term -> term |
|
73 |
val dest_Suc: term -> term |
|
74 |
val mk_nat: int -> term |
|
75 |
val dest_nat: term -> int |
|
7073 | 76 |
val intT: typ |
15965
f422f8283491
Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents:
15945
diff
changeset
|
77 |
val mk_int: IntInf.int -> term |
7163 | 78 |
val realT: typ |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
79 |
val bitT: typ |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
80 |
val B0_const: term |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
81 |
val B1_const: term |
7073 | 82 |
val pls_const: term |
83 |
val min_const: term |
|
84 |
val bit_const: term |
|
8768 | 85 |
val number_of_const: typ -> term |
16971 | 86 |
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
|
87 |
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
|
88 |
val mk_binum: IntInf.int -> term |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
89 |
val bin_of : term -> int list |
17083 | 90 |
val listT : typ -> typ |
13755 | 91 |
val mk_list: ('a -> term) -> typ -> 'a list -> term |
15062 | 92 |
val dest_list: term -> term list |
923 | 93 |
end; |
94 |
||
2510 | 95 |
|
923 | 96 |
structure HOLogic: HOLOGIC = |
97 |
struct |
|
98 |
||
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
99 |
(* HOL syntax *) |
923 | 100 |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
101 |
val typeS: sort = ["HOL.type"]; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
102 |
val typeT = TypeInfer.anyT typeS; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
103 |
|
923 | 104 |
|
2510 | 105 |
(* bool and set *) |
923 | 106 |
|
8275 | 107 |
val boolN = "bool"; |
108 |
val boolT = Type (boolN, []); |
|
923 | 109 |
|
9856 | 110 |
val true_const = Const ("True", boolT); |
111 |
val false_const = Const ("False", boolT); |
|
7073 | 112 |
|
923 | 113 |
fun mk_setT T = Type ("set", [T]); |
114 |
||
115 |
fun dest_setT (Type ("set", [T])) = T |
|
3794 | 116 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []); |
923 | 117 |
|
8275 | 118 |
|
7073 | 119 |
(* logic *) |
923 | 120 |
|
121 |
val Trueprop = Const ("Trueprop", boolT --> propT); |
|
122 |
||
123 |
fun mk_Trueprop P = Trueprop $ P; |
|
124 |
||
20827 | 125 |
fun is_Trueprop (Const ("Trueprop", _) $ _) = true |
126 |
| is_Trueprop t = false; |
|
127 |
||
923 | 128 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P |
3794 | 129 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]); |
923 | 130 |
|
131 |
||
132 |
val conj = Const ("op &", [boolT, boolT] ---> boolT) |
|
133 |
and disj = Const ("op |", [boolT, boolT] ---> boolT) |
|
8429 | 134 |
and imp = Const ("op -->", [boolT, boolT] ---> boolT) |
135 |
and Not = Const ("Not", boolT --> boolT); |
|
923 | 136 |
|
7690 | 137 |
fun mk_conj (t1, t2) = conj $ t1 $ t2 |
138 |
and mk_disj (t1, t2) = disj $ t1 $ t2 |
|
16835 | 139 |
and mk_imp (t1, t2) = imp $ t1 $ t2 |
140 |
and mk_not t = Not $ t; |
|
7690 | 141 |
|
15151 | 142 |
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t' |
143 |
| dest_conj t = [t]; |
|
144 |
||
15945 | 145 |
fun dest_disj (Const ("op |", _) $ t $ t') = t :: dest_disj t' |
146 |
| dest_disj t = [t]; |
|
147 |
||
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
148 |
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
|
149 |
| 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
|
150 |
|
15151 | 151 |
fun dest_not (Const ("Not", _) $ t) = t |
152 |
| dest_not t = raise TERM ("dest_not", [t]); |
|
8302 | 153 |
|
11683 | 154 |
fun imp_concl_of t = imp_concl_of (#2 (dest_imp t)) handle TERM _ => t; |
155 |
val dest_concls = map imp_concl_of o dest_conj o dest_Trueprop; |
|
156 |
||
923 | 157 |
fun eq_const T = Const ("op =", [T, T] ---> boolT); |
158 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
159 |
||
6031 | 160 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs) |
161 |
| dest_eq t = raise TERM ("dest_eq", [t]) |
|
162 |
||
20973 | 163 |
fun dest_eq_typ (Const ("op =", T) $ lhs $ rhs) = ((lhs, rhs), domain_type T) |
164 |
| dest_eq_typ t = raise TERM ("dest_eq_typ", [t]) |
|
165 |
||
923 | 166 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT); |
167 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
21078 | 168 |
fun list_all (vs,x) = Library.foldr (fn ((x, T), P) => all_const T $ Abs (x, T, P)) (vs, x); |
923 | 169 |
|
170 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT); |
|
171 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
172 |
||
15945 | 173 |
fun choice_const T = Const("Hilbert_Choice.Eps", (T --> boolT) --> T) |
174 |
||
923 | 175 |
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T); |
176 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
177 |
||
21045 | 178 |
val class_eq = "Code_Generator.eq"; |
179 |
||
923 | 180 |
fun mk_mem (x, A) = |
181 |
let val setT = fastype_of A in |
|
182 |
Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A |
|
183 |
end; |
|
184 |
||
6380 | 185 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A) |
186 |
| dest_mem t = raise TERM ("dest_mem", [t]); |
|
187 |
||
11818 | 188 |
fun mk_UNIV T = Const ("UNIV", mk_setT T); |
189 |
||
923 | 190 |
|
13743
f8f9393be64c
Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents:
13640
diff
changeset
|
191 |
(* binary operations and relations *) |
2510 | 192 |
|
193 |
fun mk_binop c (t, u) = |
|
194 |
let val T = fastype_of t in |
|
195 |
Const (c, [T, T] ---> T) $ t $ u |
|
196 |
end; |
|
197 |
||
198 |
fun mk_binrel c (t, u) = |
|
199 |
let val T = fastype_of t in |
|
200 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
201 |
end; |
|
202 |
||
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14103
diff
changeset
|
203 |
(*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
|
204 |
way of handling polymorphic operators.*) |
2510 | 205 |
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
|
206 |
if c = c' andalso (T=T' orelse T=dummyT) then (t, u) |
3794 | 207 |
else raise TERM ("dest_bin " ^ c, [tm]) |
208 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]); |
|
2510 | 209 |
|
210 |
||
4571 | 211 |
(* unit *) |
212 |
||
11604 | 213 |
val unitT = Type ("Product_Type.unit", []); |
4571 | 214 |
|
11604 | 215 |
fun is_unitT (Type ("Product_Type.unit", [])) = true |
9362 | 216 |
| is_unitT _ = false; |
217 |
||
11604 | 218 |
val unit = Const ("Product_Type.Unity", unitT); |
4571 | 219 |
|
11604 | 220 |
fun is_unit (Const ("Product_Type.Unity", _)) = true |
4571 | 221 |
| is_unit _ = false; |
222 |
||
223 |
||
224 |
(* prod *) |
|
225 |
||
226 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]); |
|
227 |
||
228 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2) |
|
229 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []); |
|
230 |
||
14048 | 231 |
fun pair_const T1 T2 = Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)); |
232 |
||
4571 | 233 |
fun mk_prod (t1, t2) = |
234 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
14048 | 235 |
pair_const T1 T2 $ t1 $ t2 |
4571 | 236 |
end; |
237 |
||
238 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2) |
|
239 |
| dest_prod t = raise TERM ("dest_prod", [t]); |
|
240 |
||
241 |
fun mk_fst p = |
|
242 |
let val pT = fastype_of p in |
|
243 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p |
|
244 |
end; |
|
245 |
||
246 |
fun mk_snd p = |
|
247 |
let val pT = fastype_of p in |
|
248 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p |
|
249 |
end; |
|
250 |
||
18285 | 251 |
fun split_const (A, B, C) = |
252 |
Const ("split", (A --> B --> C) --> mk_prodT (A, B) --> C); |
|
253 |
||
254 |
fun mk_split t = |
|
255 |
(case Term.fastype_of t of |
|
256 |
T as (Type ("fun", [A, Type ("fun", [B, C])])) => |
|
257 |
Const ("split", T --> mk_prodT (A, B) --> C) $ t |
|
258 |
| _ => raise TERM ("mk_split: bad body type", [t])); |
|
259 |
||
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
260 |
(*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
|
261 |
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
|
262 |
| prodT_factors T = [T]; |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
263 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
264 |
(*Makes a nested tuple from a list, following the product type structure*) |
16971 | 265 |
fun mk_tuple (Type ("*", [T1, T2])) tms = |
266 |
mk_prod (mk_tuple T1 tms, |
|
15570 | 267 |
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
|
268 |
| mk_tuple T (t::_) = t; |
4571 | 269 |
|
5207 | 270 |
|
271 |
(* nat *) |
|
272 |
||
273 |
val natT = Type ("nat", []); |
|
274 |
||
20713
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents:
20485
diff
changeset
|
275 |
val zero = Const ("HOL.zero", natT); |
5207 | 276 |
|
20713
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents:
20485
diff
changeset
|
277 |
fun is_zero (Const ("HOL.zero", _)) = true |
5207 | 278 |
| is_zero _ = false; |
279 |
||
280 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t; |
|
281 |
||
282 |
fun dest_Suc (Const ("Suc", _) $ t) = t |
|
283 |
| dest_Suc t = raise TERM ("dest_Suc", [t]); |
|
284 |
||
285 |
fun mk_nat 0 = zero |
|
286 |
| mk_nat n = mk_Suc (mk_nat (n - 1)); |
|
287 |
||
20713
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents:
20485
diff
changeset
|
288 |
fun dest_nat (Const ("HOL.zero", _)) = 0 |
5207 | 289 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1 |
290 |
| dest_nat t = raise TERM ("dest_nat", [t]); |
|
291 |
||
292 |
||
20485 | 293 |
(* binary numerals and int *) |
7073 | 294 |
|
20485 | 295 |
val intT = Type ("IntDef.int", []); |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
296 |
val bitT = Type ("Numeral.bit", []); |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
297 |
|
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
298 |
val B0_const = Const ("Numeral.bit.B0", bitT); |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
299 |
val B1_const = Const ("Numeral.bit.B1", bitT); |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
300 |
|
20485 | 301 |
val pls_const = Const ("Numeral.Pls", intT) |
302 |
and min_const = Const ("Numeral.Min", intT) |
|
303 |
and bit_const = Const ("Numeral.Bit", [intT, bitT] ---> intT); |
|
8768 | 304 |
|
20485 | 305 |
fun number_of_const T = Const ("Numeral.number_of", intT --> T); |
8739 | 306 |
|
16971 | 307 |
fun int_of [] = 0 |
15965
f422f8283491
Use of IntInf.int instead of int in most numeric simprocs; avoids
paulson
parents:
15945
diff
changeset
|
308 |
| int_of (b :: bs) = IntInf.fromInt b + (2 * int_of bs); |
15595 | 309 |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
310 |
(*When called from a print translation, the Numeral qualifier will probably have |
20485 | 311 |
been removed from Bit, bit.B0, etc.*) |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
312 |
fun dest_bit (Const ("Numeral.bit.B0", _)) = 0 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
313 |
| dest_bit (Const ("Numeral.bit.B1", _)) = 1 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
314 |
| dest_bit (Const ("bit.B0", _)) = 0 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
315 |
| dest_bit (Const ("bit.B1", _)) = 1 |
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
316 |
| 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
|
317 |
|
15013 | 318 |
fun bin_of (Const ("Numeral.Pls", _)) = [] |
319 |
| bin_of (Const ("Numeral.Min", _)) = [~1] |
|
320 |
| 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
|
321 |
| 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
|
322 |
| 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
|
323 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
324 |
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
|
325 |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
326 |
fun mk_bit 0 = B0_const |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
327 |
| mk_bit 1 = B1_const |
10693 | 328 |
| mk_bit _ = sys_error "mk_bit"; |
329 |
||
19481
a6205c6203ea
renamed HOLogic.mk_bin to mk_binum for consistency with dest_binum
paulson
parents:
18285
diff
changeset
|
330 |
fun mk_binum n = |
16971 | 331 |
let |
332 |
fun mk_bit n = if n = 0 then B0_const else B1_const; |
|
333 |
fun bin_of n = |
|
334 |
if n = 0 then pls_const |
|
335 |
else if n = ~1 then min_const |
|
336 |
else |
|
337 |
let |
|
20713
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents:
20485
diff
changeset
|
338 |
val (q,r) = IntInf.divMod (n, 2); |
16971 | 339 |
in bit_const $ bin_of q $ mk_bit r end; |
340 |
in bin_of n end; |
|
13755 | 341 |
|
20713
823967ef47f1
renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents:
20485
diff
changeset
|
342 |
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
|
343 |
| 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
|
344 |
| mk_int i = number_of_const intT $ mk_binum i; |
13755 | 345 |
|
346 |
||
347 |
(* real *) |
|
348 |
||
16971 | 349 |
val realT = Type ("RealDef.real", []); |
13755 | 350 |
|
351 |
||
352 |
(* list *) |
|
353 |
||
17083 | 354 |
fun listT T = Type ("List.list", [T]) |
355 |
||
356 |
fun mk_list f T [] = Const ("List.list.Nil", listT T) |
|
13755 | 357 |
| mk_list f T (x :: xs) = Const ("List.list.Cons", |
17083 | 358 |
T --> listT T --> listT T) $ f x $ |
13755 | 359 |
mk_list f T xs; |
360 |
||
15062 | 361 |
fun dest_list (Const ("List.list.Nil", _)) = [] |
362 |
| dest_list (Const ("List.list.Cons", _) $ x $ xs) = x :: dest_list xs |
|
363 |
| dest_list t = raise TERM ("dest_list", [t]); |
|
364 |
||
923 | 365 |
end; |