author | paulson |
Tue, 19 Apr 2005 18:08:44 +0200 | |
changeset 15774 | 9df37a0e935d |
parent 15620 | 8ccdc8bc66a2 |
child 15945 | 08e8d3fb9343 |
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 |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
12 |
val read_cterm: Sign.sg -> string -> cterm |
8275 | 13 |
val boolN: string |
923 | 14 |
val boolT: typ |
7073 | 15 |
val false_const: term |
16 |
val true_const: term |
|
9856 | 17 |
val not_const: term |
923 | 18 |
val mk_setT: typ -> typ |
19 |
val dest_setT: typ -> typ |
|
20 |
val mk_Trueprop: term -> term |
|
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 |
|
15151 | 29 |
val dest_conj: term -> term list |
4571 | 30 |
val dest_imp: term -> term * term |
15151 | 31 |
val dest_not: term -> term |
11683 | 32 |
val dest_concls: term -> term list |
923 | 33 |
val eq_const: typ -> term |
34 |
val all_const: typ -> term |
|
35 |
val exists_const: typ -> term |
|
36 |
val Collect_const: typ -> term |
|
37 |
val mk_eq: term * term -> term |
|
6031 | 38 |
val dest_eq: term -> term * term |
923 | 39 |
val mk_all: string * typ * term -> term |
13640 | 40 |
val list_all: (string * typ) list * term -> term |
923 | 41 |
val mk_exists: string * typ * term -> term |
42 |
val mk_Collect: string * typ * term -> term |
|
43 |
val mk_mem: term * term -> term |
|
6380 | 44 |
val dest_mem: term -> term * term |
11818 | 45 |
val mk_UNIV: typ -> term |
2510 | 46 |
val mk_binop: string -> term * term -> term |
47 |
val mk_binrel: string -> term * term -> term |
|
48 |
val dest_bin: string -> typ -> term -> term * term |
|
4571 | 49 |
val unitT: typ |
9362 | 50 |
val is_unitT: typ -> bool |
4571 | 51 |
val unit: term |
52 |
val is_unit: term -> bool |
|
53 |
val mk_prodT: typ * typ -> typ |
|
54 |
val dest_prodT: typ -> typ * typ |
|
14048 | 55 |
val pair_const: typ -> typ -> term |
4571 | 56 |
val mk_prod: term * term -> term |
57 |
val dest_prod: term -> term * term |
|
58 |
val mk_fst: term -> term |
|
59 |
val mk_snd: term -> term |
|
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
60 |
val prodT_factors: typ -> typ list |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
61 |
val split_const: typ * typ * typ -> term |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
62 |
val mk_tuple: typ -> term list -> term |
5207 | 63 |
val natT: typ |
64 |
val zero: term |
|
65 |
val is_zero: term -> bool |
|
66 |
val mk_Suc: term -> term |
|
67 |
val dest_Suc: term -> term |
|
68 |
val mk_nat: int -> term |
|
69 |
val dest_nat: term -> int |
|
7073 | 70 |
val intT: typ |
13755 | 71 |
val mk_int: int -> term |
7163 | 72 |
val realT: typ |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
73 |
val bitT: typ |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
74 |
val B0_const: term |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
75 |
val B1_const: term |
7073 | 76 |
val binT: typ |
77 |
val pls_const: term |
|
78 |
val min_const: term |
|
79 |
val bit_const: term |
|
8768 | 80 |
val number_of_const: typ -> term |
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
81 |
val int_of: int list -> int |
15595 | 82 |
val intinf_of: int list -> IntInf.int |
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
83 |
val dest_binum: term -> int |
13755 | 84 |
val mk_bin: int -> term |
15595 | 85 |
val mk_bin_from_intinf: IntInf.int -> term |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
86 |
val bin_of : term -> int list |
13755 | 87 |
val mk_list: ('a -> term) -> typ -> 'a list -> term |
15062 | 88 |
val dest_list: term -> term list |
923 | 89 |
end; |
90 |
||
2510 | 91 |
|
923 | 92 |
structure HOLogic: HOLOGIC = |
93 |
struct |
|
94 |
||
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
95 |
(* HOL syntax *) |
923 | 96 |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
97 |
val typeS: sort = ["HOL.type"]; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
98 |
val typeT = TypeInfer.anyT typeS; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
99 |
|
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
100 |
fun read_cterm sg s = Thm.read_cterm sg (s, typeT); |
923 | 101 |
|
102 |
||
2510 | 103 |
(* bool and set *) |
923 | 104 |
|
8275 | 105 |
val boolN = "bool"; |
106 |
val boolT = Type (boolN, []); |
|
923 | 107 |
|
9856 | 108 |
val true_const = Const ("True", boolT); |
109 |
val false_const = Const ("False", boolT); |
|
110 |
val not_const = Const ("Not", boolT --> boolT); |
|
7073 | 111 |
|
923 | 112 |
fun mk_setT T = Type ("set", [T]); |
113 |
||
114 |
fun dest_setT (Type ("set", [T])) = T |
|
3794 | 115 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []); |
923 | 116 |
|
8275 | 117 |
|
7073 | 118 |
(* logic *) |
923 | 119 |
|
120 |
val Trueprop = Const ("Trueprop", boolT --> propT); |
|
121 |
||
122 |
fun mk_Trueprop P = Trueprop $ P; |
|
123 |
||
124 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P |
|
3794 | 125 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]); |
923 | 126 |
|
127 |
||
128 |
val conj = Const ("op &", [boolT, boolT] ---> boolT) |
|
129 |
and disj = Const ("op |", [boolT, boolT] ---> boolT) |
|
8429 | 130 |
and imp = Const ("op -->", [boolT, boolT] ---> boolT) |
131 |
and Not = Const ("Not", boolT --> boolT); |
|
923 | 132 |
|
7690 | 133 |
fun mk_conj (t1, t2) = conj $ t1 $ t2 |
134 |
and mk_disj (t1, t2) = disj $ t1 $ t2 |
|
135 |
and mk_imp (t1, t2) = imp $ t1 $ t2; |
|
136 |
||
15151 | 137 |
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t' |
138 |
| dest_conj t = [t]; |
|
139 |
||
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
140 |
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
|
141 |
| 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
|
142 |
|
15151 | 143 |
fun dest_not (Const ("Not", _) $ t) = t |
144 |
| dest_not t = raise TERM ("dest_not", [t]); |
|
8302 | 145 |
|
11683 | 146 |
fun imp_concl_of t = imp_concl_of (#2 (dest_imp t)) handle TERM _ => t; |
147 |
val dest_concls = map imp_concl_of o dest_conj o dest_Trueprop; |
|
148 |
||
923 | 149 |
fun eq_const T = Const ("op =", [T, T] ---> boolT); |
150 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
151 |
||
6031 | 152 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs) |
153 |
| dest_eq t = raise TERM ("dest_eq", [t]) |
|
154 |
||
923 | 155 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT); |
156 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
157 |
fun list_all (vs,x) = foldr (fn ((x, T), P) => all_const T $ Abs (x, T, P)) x vs; |
923 | 158 |
|
159 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT); |
|
160 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
161 |
||
162 |
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T); |
|
163 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
164 |
||
165 |
fun mk_mem (x, A) = |
|
166 |
let val setT = fastype_of A in |
|
167 |
Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A |
|
168 |
end; |
|
169 |
||
6380 | 170 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A) |
171 |
| dest_mem t = raise TERM ("dest_mem", [t]); |
|
172 |
||
11818 | 173 |
fun mk_UNIV T = Const ("UNIV", mk_setT T); |
174 |
||
923 | 175 |
|
13743
f8f9393be64c
Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents:
13640
diff
changeset
|
176 |
(* binary operations and relations *) |
2510 | 177 |
|
178 |
fun mk_binop c (t, u) = |
|
179 |
let val T = fastype_of t in |
|
180 |
Const (c, [T, T] ---> T) $ t $ u |
|
181 |
end; |
|
182 |
||
183 |
fun mk_binrel c (t, u) = |
|
184 |
let val T = fastype_of t in |
|
185 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
186 |
end; |
|
187 |
||
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14103
diff
changeset
|
188 |
(*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
|
189 |
way of handling polymorphic operators.*) |
2510 | 190 |
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
|
191 |
if c = c' andalso (T=T' orelse T=dummyT) then (t, u) |
3794 | 192 |
else raise TERM ("dest_bin " ^ c, [tm]) |
193 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]); |
|
2510 | 194 |
|
195 |
||
4571 | 196 |
(* unit *) |
197 |
||
11604 | 198 |
val unitT = Type ("Product_Type.unit", []); |
4571 | 199 |
|
11604 | 200 |
fun is_unitT (Type ("Product_Type.unit", [])) = true |
9362 | 201 |
| is_unitT _ = false; |
202 |
||
11604 | 203 |
val unit = Const ("Product_Type.Unity", unitT); |
4571 | 204 |
|
11604 | 205 |
fun is_unit (Const ("Product_Type.Unity", _)) = true |
4571 | 206 |
| is_unit _ = false; |
207 |
||
208 |
||
209 |
(* prod *) |
|
210 |
||
211 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]); |
|
212 |
||
213 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2) |
|
214 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []); |
|
215 |
||
14048 | 216 |
fun pair_const T1 T2 = Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)); |
217 |
||
4571 | 218 |
fun mk_prod (t1, t2) = |
219 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
14048 | 220 |
pair_const T1 T2 $ t1 $ t2 |
4571 | 221 |
end; |
222 |
||
223 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2) |
|
224 |
| dest_prod t = raise TERM ("dest_prod", [t]); |
|
225 |
||
226 |
fun mk_fst p = |
|
227 |
let val pT = fastype_of p in |
|
228 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p |
|
229 |
end; |
|
230 |
||
231 |
fun mk_snd p = |
|
232 |
let val pT = fastype_of p in |
|
233 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p |
|
234 |
end; |
|
235 |
||
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
236 |
(*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
|
237 |
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
|
238 |
| prodT_factors T = [T]; |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
239 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
240 |
fun split_const (Ta, Tb, Tc) = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
241 |
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
|
242 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
243 |
(*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
|
244 |
fun mk_tuple (Type ("*", [T1, T2])) tms = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
245 |
mk_prod (mk_tuple T1 tms, |
15570 | 246 |
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
|
247 |
| mk_tuple T (t::_) = t; |
4571 | 248 |
|
5207 | 249 |
|
250 |
||
9362 | 251 |
(* proper tuples *) |
252 |
||
253 |
local (*currently unused*) |
|
254 |
||
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
255 |
fun mk_tupleT Ts = foldr mk_prodT unitT Ts; |
9362 | 256 |
|
11604 | 257 |
fun dest_tupleT (Type ("Product_Type.unit", [])) = [] |
9362 | 258 |
| dest_tupleT (Type ("*", [T, U])) = T :: dest_tupleT U |
259 |
| dest_tupleT T = raise TYPE ("dest_tupleT", [T], []); |
|
260 |
||
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
261 |
fun mk_tuple ts = foldr mk_prod unit ts; |
9362 | 262 |
|
11604 | 263 |
fun dest_tuple (Const ("Product_Type.Unity", _)) = [] |
9362 | 264 |
| dest_tuple (Const ("Pair", _) $ t $ u) = t :: dest_tuple u |
265 |
| dest_tuple t = raise TERM ("dest_tuple", [t]); |
|
266 |
||
267 |
in val _ = unit end; |
|
268 |
||
269 |
||
5207 | 270 |
(* nat *) |
271 |
||
272 |
val natT = Type ("nat", []); |
|
273 |
||
274 |
val zero = Const ("0", natT); |
|
275 |
||
276 |
fun is_zero (Const ("0", _)) = true |
|
277 |
| is_zero _ = false; |
|
278 |
||
279 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t; |
|
280 |
||
281 |
fun dest_Suc (Const ("Suc", _) $ t) = t |
|
282 |
| dest_Suc t = raise TERM ("dest_Suc", [t]); |
|
283 |
||
284 |
fun mk_nat 0 = zero |
|
285 |
| mk_nat n = mk_Suc (mk_nat (n - 1)); |
|
286 |
||
287 |
fun dest_nat (Const ("0", _)) = 0 |
|
288 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1 |
|
289 |
| dest_nat t = raise TERM ("dest_nat", [t]); |
|
290 |
||
291 |
||
7073 | 292 |
(* binary numerals *) |
293 |
||
294 |
val binT = Type ("Numeral.bin", []); |
|
295 |
||
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 |
|
15013 | 301 |
val pls_const = Const ("Numeral.Pls", binT) |
302 |
and min_const = Const ("Numeral.Min", binT) |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
303 |
and bit_const = Const ("Numeral.Bit", [binT, bitT] ---> binT); |
8768 | 304 |
|
305 |
fun number_of_const T = Const ("Numeral.number_of", binT --> T); |
|
8739 | 306 |
|
7073 | 307 |
|
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
308 |
fun int_of [] = 0 |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
309 |
| int_of (b :: bs) = b + 2 * int_of bs; |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
310 |
|
15595 | 311 |
fun intinf_of [] = IntInf.fromInt 0 |
312 |
| intinf_of (b :: bs) = IntInf.+ (IntInf.fromInt b, IntInf.*(IntInf.fromInt 2, intinf_of bs)); |
|
313 |
||
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
314 |
(*When called from a print translation, the Numeral qualifier will probably have |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
315 |
been removed from Bit, bin.B0, etc.*) |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
316 |
fun dest_bit (Const ("Numeral.bit.B0", _)) = 0 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
317 |
| dest_bit (Const ("Numeral.bit.B1", _)) = 1 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
318 |
| dest_bit (Const ("bit.B0", _)) = 0 |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
319 |
| dest_bit (Const ("bit.B1", _)) = 1 |
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
320 |
| 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
|
321 |
|
15013 | 322 |
fun bin_of (Const ("Numeral.Pls", _)) = [] |
323 |
| bin_of (Const ("Numeral.Min", _)) = [~1] |
|
324 |
| 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
|
325 |
| 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
|
326 |
| 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
|
327 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
328 |
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
|
329 |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
330 |
fun mk_bit 0 = B0_const |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
331 |
| mk_bit 1 = B1_const |
10693 | 332 |
| mk_bit _ = sys_error "mk_bit"; |
333 |
||
15595 | 334 |
fun mk_bin_from_intinf n = |
335 |
let |
|
336 |
val zero = IntInf.fromInt 0 |
|
337 |
val minus_one = IntInf.fromInt ~1 |
|
338 |
val two = IntInf.fromInt 2 |
|
339 |
||
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
340 |
fun mk_bit n = if n = zero then B0_const else B1_const |
15595 | 341 |
|
342 |
fun bin_of n = |
|
343 |
if n = zero then pls_const |
|
344 |
else if n = minus_one then min_const |
|
345 |
else |
|
346 |
let |
|
347 |
(*val (q,r) = IntInf.divMod (n, two): doesn't work in SML 10.0.7, but in newer versions!*) |
|
348 |
val q = IntInf.div (n, two) |
|
349 |
val r = IntInf.mod (n, two) |
|
350 |
in |
|
351 |
bit_const $ bin_of q $ mk_bit r |
|
352 |
end |
|
353 |
in |
|
354 |
bin_of n |
|
355 |
end |
|
13755 | 356 |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
357 |
val mk_bin = mk_bin_from_intinf o IntInf.fromInt; |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
358 |
|
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15595
diff
changeset
|
359 |
|
13755 | 360 |
(* int *) |
361 |
||
362 |
val intT = Type ("IntDef.int", []); |
|
363 |
||
14103
afd168fdcd3a
mk_int now produces specific constants for 0 and 1.
berghofe
parents:
14048
diff
changeset
|
364 |
fun mk_int 0 = Const ("0", intT) |
afd168fdcd3a
mk_int now produces specific constants for 0 and 1.
berghofe
parents:
14048
diff
changeset
|
365 |
| mk_int 1 = Const ("1", intT) |
afd168fdcd3a
mk_int now produces specific constants for 0 and 1.
berghofe
parents:
14048
diff
changeset
|
366 |
| mk_int i = number_of_const intT $ mk_bin i; |
13755 | 367 |
|
368 |
||
369 |
(* real *) |
|
370 |
||
371 |
val realT = Type("RealDef.real", []); |
|
372 |
||
373 |
||
374 |
(* list *) |
|
375 |
||
376 |
fun mk_list f T [] = Const ("List.list.Nil", Type ("List.list", [T])) |
|
377 |
| mk_list f T (x :: xs) = Const ("List.list.Cons", |
|
378 |
T --> Type ("List.list", [T]) --> Type ("List.list", [T])) $ f x $ |
|
379 |
mk_list f T xs; |
|
380 |
||
15062 | 381 |
fun dest_list (Const ("List.list.Nil", _)) = [] |
382 |
| dest_list (Const ("List.list.Cons", _) $ x $ xs) = x :: dest_list xs |
|
383 |
| dest_list t = raise TERM ("dest_list", [t]); |
|
384 |
||
923 | 385 |
end; |