author | nipkow |
Sun, 22 Dec 2002 15:02:40 +0100 | |
changeset 13764 | 3e180bf68496 |
parent 13755 | a9bb54a3cfb7 |
child 14048 | 03a9adec9869 |
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 |
|
4571 | 29 |
val dest_imp: term -> term * term |
8302 | 30 |
val dest_conj: term -> term list |
11683 | 31 |
val dest_concls: term -> term list |
923 | 32 |
val eq_const: typ -> term |
33 |
val all_const: typ -> term |
|
34 |
val exists_const: typ -> term |
|
35 |
val Collect_const: typ -> term |
|
36 |
val mk_eq: term * term -> term |
|
6031 | 37 |
val dest_eq: term -> term * term |
923 | 38 |
val mk_all: string * typ * term -> term |
13640 | 39 |
val list_all: (string * typ) list * term -> term |
923 | 40 |
val mk_exists: string * typ * term -> term |
41 |
val mk_Collect: string * typ * term -> term |
|
42 |
val mk_mem: term * term -> term |
|
6380 | 43 |
val dest_mem: term -> term * term |
11818 | 44 |
val mk_UNIV: typ -> term |
2510 | 45 |
val mk_binop: string -> term * term -> term |
46 |
val mk_binrel: string -> term * term -> term |
|
47 |
val dest_bin: string -> typ -> term -> term * term |
|
4571 | 48 |
val unitT: typ |
9362 | 49 |
val is_unitT: typ -> bool |
4571 | 50 |
val unit: term |
51 |
val is_unit: term -> bool |
|
52 |
val mk_prodT: typ * typ -> typ |
|
53 |
val dest_prodT: typ -> typ * typ |
|
54 |
val mk_prod: term * term -> term |
|
55 |
val dest_prod: term -> term * term |
|
56 |
val mk_fst: term -> term |
|
57 |
val mk_snd: term -> term |
|
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
58 |
val prodT_factors: typ -> typ list |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
59 |
val split_const: typ * typ * typ -> term |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
60 |
val mk_tuple: typ -> term list -> term |
5207 | 61 |
val natT: typ |
62 |
val zero: term |
|
63 |
val is_zero: term -> bool |
|
64 |
val mk_Suc: term -> term |
|
65 |
val dest_Suc: term -> term |
|
66 |
val mk_nat: int -> term |
|
67 |
val dest_nat: term -> int |
|
7073 | 68 |
val intT: typ |
13755 | 69 |
val mk_int: int -> term |
7163 | 70 |
val realT: typ |
7073 | 71 |
val binT: typ |
72 |
val pls_const: term |
|
73 |
val min_const: term |
|
74 |
val bit_const: term |
|
8768 | 75 |
val number_of_const: typ -> term |
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
76 |
val int_of: int list -> int |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
77 |
val dest_binum: term -> int |
13755 | 78 |
val mk_bin: int -> term |
79 |
val mk_list: ('a -> term) -> typ -> 'a list -> term |
|
923 | 80 |
end; |
81 |
||
2510 | 82 |
|
923 | 83 |
structure HOLogic: HOLOGIC = |
84 |
struct |
|
85 |
||
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
86 |
(* HOL syntax *) |
923 | 87 |
|
12338
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
88 |
val typeS: sort = ["HOL.type"]; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
89 |
val typeT = TypeInfer.anyT typeS; |
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
90 |
|
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents:
11818
diff
changeset
|
91 |
fun read_cterm sg s = Thm.read_cterm sg (s, typeT); |
923 | 92 |
|
93 |
||
2510 | 94 |
(* bool and set *) |
923 | 95 |
|
8275 | 96 |
val boolN = "bool"; |
97 |
val boolT = Type (boolN, []); |
|
923 | 98 |
|
9856 | 99 |
val true_const = Const ("True", boolT); |
100 |
val false_const = Const ("False", boolT); |
|
101 |
val not_const = Const ("Not", boolT --> boolT); |
|
7073 | 102 |
|
923 | 103 |
fun mk_setT T = Type ("set", [T]); |
104 |
||
105 |
fun dest_setT (Type ("set", [T])) = T |
|
3794 | 106 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []); |
923 | 107 |
|
8275 | 108 |
|
7073 | 109 |
(* logic *) |
923 | 110 |
|
111 |
val Trueprop = Const ("Trueprop", boolT --> propT); |
|
112 |
||
113 |
fun mk_Trueprop P = Trueprop $ P; |
|
114 |
||
115 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P |
|
3794 | 116 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]); |
923 | 117 |
|
118 |
||
119 |
val conj = Const ("op &", [boolT, boolT] ---> boolT) |
|
120 |
and disj = Const ("op |", [boolT, boolT] ---> boolT) |
|
8429 | 121 |
and imp = Const ("op -->", [boolT, boolT] ---> boolT) |
122 |
and Not = Const ("Not", boolT --> boolT); |
|
923 | 123 |
|
7690 | 124 |
fun mk_conj (t1, t2) = conj $ t1 $ t2 |
125 |
and mk_disj (t1, t2) = disj $ t1 $ t2 |
|
126 |
and mk_imp (t1, t2) = imp $ t1 $ t2; |
|
127 |
||
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
128 |
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
|
129 |
| 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
|
130 |
|
8302 | 131 |
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t' |
132 |
| dest_conj t = [t]; |
|
133 |
||
11683 | 134 |
fun imp_concl_of t = imp_concl_of (#2 (dest_imp t)) handle TERM _ => t; |
135 |
val dest_concls = map imp_concl_of o dest_conj o dest_Trueprop; |
|
136 |
||
923 | 137 |
fun eq_const T = Const ("op =", [T, T] ---> boolT); |
138 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
139 |
||
6031 | 140 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs) |
141 |
| dest_eq t = raise TERM ("dest_eq", [t]) |
|
142 |
||
923 | 143 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT); |
144 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
13640 | 145 |
val list_all = foldr (fn ((x, T), P) => all_const T $ Abs (x, T, P)); |
923 | 146 |
|
147 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT); |
|
148 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
149 |
||
150 |
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T); |
|
151 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
152 |
||
153 |
fun mk_mem (x, A) = |
|
154 |
let val setT = fastype_of A in |
|
155 |
Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A |
|
156 |
end; |
|
157 |
||
6380 | 158 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A) |
159 |
| dest_mem t = raise TERM ("dest_mem", [t]); |
|
160 |
||
11818 | 161 |
fun mk_UNIV T = Const ("UNIV", mk_setT T); |
162 |
||
923 | 163 |
|
13743
f8f9393be64c
Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents:
13640
diff
changeset
|
164 |
(* binary operations and relations *) |
2510 | 165 |
|
166 |
fun mk_binop c (t, u) = |
|
167 |
let val T = fastype_of t in |
|
168 |
Const (c, [T, T] ---> T) $ t $ u |
|
169 |
end; |
|
170 |
||
171 |
fun mk_binrel c (t, u) = |
|
172 |
let val T = fastype_of t in |
|
173 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
174 |
end; |
|
175 |
||
176 |
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) = |
|
177 |
if c = c' andalso T = T' then (t, u) |
|
3794 | 178 |
else raise TERM ("dest_bin " ^ c, [tm]) |
179 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]); |
|
2510 | 180 |
|
181 |
||
4571 | 182 |
(* unit *) |
183 |
||
11604 | 184 |
val unitT = Type ("Product_Type.unit", []); |
4571 | 185 |
|
11604 | 186 |
fun is_unitT (Type ("Product_Type.unit", [])) = true |
9362 | 187 |
| is_unitT _ = false; |
188 |
||
11604 | 189 |
val unit = Const ("Product_Type.Unity", unitT); |
4571 | 190 |
|
11604 | 191 |
fun is_unit (Const ("Product_Type.Unity", _)) = true |
4571 | 192 |
| is_unit _ = false; |
193 |
||
194 |
||
195 |
(* prod *) |
|
196 |
||
197 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]); |
|
198 |
||
199 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2) |
|
200 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []); |
|
201 |
||
202 |
fun mk_prod (t1, t2) = |
|
203 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
204 |
Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)) $ t1 $ t2 |
|
205 |
end; |
|
206 |
||
207 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2) |
|
208 |
| dest_prod t = raise TERM ("dest_prod", [t]); |
|
209 |
||
210 |
fun mk_fst p = |
|
211 |
let val pT = fastype_of p in |
|
212 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p |
|
213 |
end; |
|
214 |
||
215 |
fun mk_snd p = |
|
216 |
let val pT = fastype_of p in |
|
217 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p |
|
218 |
end; |
|
219 |
||
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
220 |
(*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
|
221 |
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
|
222 |
| prodT_factors T = [T]; |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
223 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
224 |
fun split_const (Ta, Tb, Tc) = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
225 |
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
|
226 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
227 |
(*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
|
228 |
fun mk_tuple (Type ("*", [T1, T2])) tms = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
229 |
mk_prod (mk_tuple T1 tms, |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
230 |
mk_tuple T2 (drop (length (prodT_factors T1), tms))) |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
231 |
| mk_tuple T (t::_) = t; |
4571 | 232 |
|
5207 | 233 |
|
234 |
||
9362 | 235 |
(* proper tuples *) |
236 |
||
237 |
local (*currently unused*) |
|
238 |
||
239 |
fun mk_tupleT Ts = foldr mk_prodT (Ts, unitT); |
|
240 |
||
11604 | 241 |
fun dest_tupleT (Type ("Product_Type.unit", [])) = [] |
9362 | 242 |
| dest_tupleT (Type ("*", [T, U])) = T :: dest_tupleT U |
243 |
| dest_tupleT T = raise TYPE ("dest_tupleT", [T], []); |
|
244 |
||
245 |
fun mk_tuple ts = foldr mk_prod (ts, unit); |
|
246 |
||
11604 | 247 |
fun dest_tuple (Const ("Product_Type.Unity", _)) = [] |
9362 | 248 |
| dest_tuple (Const ("Pair", _) $ t $ u) = t :: dest_tuple u |
249 |
| dest_tuple t = raise TERM ("dest_tuple", [t]); |
|
250 |
||
251 |
in val _ = unit end; |
|
252 |
||
253 |
||
5207 | 254 |
(* nat *) |
255 |
||
256 |
val natT = Type ("nat", []); |
|
257 |
||
258 |
val zero = Const ("0", natT); |
|
259 |
||
260 |
fun is_zero (Const ("0", _)) = true |
|
261 |
| is_zero _ = false; |
|
262 |
||
263 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t; |
|
264 |
||
265 |
fun dest_Suc (Const ("Suc", _) $ t) = t |
|
266 |
| dest_Suc t = raise TERM ("dest_Suc", [t]); |
|
267 |
||
268 |
fun mk_nat 0 = zero |
|
269 |
| mk_nat n = mk_Suc (mk_nat (n - 1)); |
|
270 |
||
271 |
fun dest_nat (Const ("0", _)) = 0 |
|
272 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1 |
|
273 |
| dest_nat t = raise TERM ("dest_nat", [t]); |
|
274 |
||
275 |
||
7073 | 276 |
(* binary numerals *) |
277 |
||
278 |
val binT = Type ("Numeral.bin", []); |
|
279 |
||
13743
f8f9393be64c
Fixed bug in simpdata.ML that prevented the use of congruence rules from a
ballarin
parents:
13640
diff
changeset
|
280 |
val pls_const = Const ("Numeral.bin.Pls", binT) |
7073 | 281 |
and min_const = Const ("Numeral.bin.Min", binT) |
8768 | 282 |
and bit_const = Const ("Numeral.bin.Bit", [binT, boolT] ---> binT); |
283 |
||
284 |
fun number_of_const T = Const ("Numeral.number_of", binT --> T); |
|
8739 | 285 |
|
7073 | 286 |
|
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
287 |
fun int_of [] = 0 |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
288 |
| 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
|
289 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
290 |
fun dest_bit (Const ("False", _)) = 0 |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
291 |
| dest_bit (Const ("True", _)) = 1 |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
292 |
| 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
|
293 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
294 |
fun bin_of (Const ("Numeral.bin.Pls", _)) = [] |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
295 |
| bin_of (Const ("Numeral.bin.Min", _)) = [~1] |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
296 |
| bin_of (Const ("Numeral.bin.Bit", _) $ bs $ b) = dest_bit b :: bin_of bs |
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
297 |
| 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
|
298 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
299 |
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
|
300 |
|
10693 | 301 |
fun mk_bit 0 = false_const |
302 |
| mk_bit 1 = true_const |
|
303 |
| mk_bit _ = sys_error "mk_bit"; |
|
304 |
||
305 |
fun mk_bin n = |
|
306 |
let |
|
307 |
fun bin_of 0 = [] |
|
308 |
| bin_of ~1 = [~1] |
|
309 |
| bin_of n = (n mod 2) :: bin_of (n div 2); |
|
310 |
||
311 |
fun term_of [] = pls_const |
|
312 |
| term_of [~1] = min_const |
|
313 |
| term_of (b :: bs) = bit_const $ term_of bs $ mk_bit b; |
|
314 |
in term_of (bin_of n) end; |
|
315 |
||
13755 | 316 |
|
317 |
(* int *) |
|
318 |
||
319 |
val intT = Type ("IntDef.int", []); |
|
320 |
||
321 |
fun mk_int i = number_of_const intT $ mk_bin i; |
|
322 |
||
323 |
||
324 |
(* real *) |
|
325 |
||
326 |
val realT = Type("RealDef.real", []); |
|
327 |
||
328 |
||
329 |
(* list *) |
|
330 |
||
331 |
fun mk_list f T [] = Const ("List.list.Nil", Type ("List.list", [T])) |
|
332 |
| mk_list f T (x :: xs) = Const ("List.list.Cons", |
|
333 |
T --> Type ("List.list", [T]) --> Type ("List.list", [T])) $ f x $ |
|
334 |
mk_list f T xs; |
|
335 |
||
923 | 336 |
end; |