| author | wenzelm |
| Thu, 23 Mar 2000 11:27:52 +0100 | |
| changeset 8559 | fd3753188232 |
| parent 8429 | 515fa7533354 |
| child 8739 | 60a1ed9e3c34 |
| 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 |
|
10 |
val termC: class |
|
11 |
val termS: sort |
|
| 8100 | 12 |
val termT: typ |
| 8275 | 13 |
val boolN: string |
| 923 | 14 |
val boolT: typ |
| 7073 | 15 |
val false_const: term |
16 |
val true_const: term |
|
| 923 | 17 |
val mk_setT: typ -> typ |
18 |
val dest_setT: typ -> typ |
|
19 |
val mk_Trueprop: term -> term |
|
20 |
val dest_Trueprop: term -> term |
|
21 |
val conj: term |
|
22 |
val disj: term |
|
23 |
val imp: term |
|
| 8429 | 24 |
val Not: term |
| 7690 | 25 |
val mk_conj: term * term -> term |
26 |
val mk_disj: term * term -> term |
|
27 |
val mk_imp: term * term -> term |
|
| 4571 | 28 |
val dest_imp: term -> term * term |
| 8302 | 29 |
val dest_conj: term -> term list |
| 923 | 30 |
val eq_const: typ -> term |
31 |
val all_const: typ -> term |
|
32 |
val exists_const: typ -> term |
|
33 |
val Collect_const: typ -> term |
|
34 |
val mk_eq: term * term -> term |
|
| 6031 | 35 |
val dest_eq: term -> term * term |
| 923 | 36 |
val mk_all: string * typ * term -> term |
37 |
val mk_exists: string * typ * term -> term |
|
38 |
val mk_Collect: string * typ * term -> term |
|
39 |
val mk_mem: term * term -> term |
|
| 6380 | 40 |
val dest_mem: term -> term * term |
| 2510 | 41 |
val mk_binop: string -> term * term -> term |
42 |
val mk_binrel: string -> term * term -> term |
|
43 |
val dest_bin: string -> typ -> term -> term * term |
|
| 4571 | 44 |
val unitT: typ |
45 |
val unit: term |
|
46 |
val is_unit: term -> bool |
|
47 |
val mk_prodT: typ * typ -> typ |
|
48 |
val dest_prodT: typ -> typ * typ |
|
49 |
val mk_prod: term * term -> term |
|
50 |
val dest_prod: term -> term * term |
|
51 |
val mk_fst: term -> term |
|
52 |
val mk_snd: term -> term |
|
|
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
53 |
val prodT_factors: typ -> typ list |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
54 |
val split_const: typ * typ * typ -> term |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
55 |
val mk_tuple: typ -> term list -> term |
| 5207 | 56 |
val natT: typ |
57 |
val zero: term |
|
58 |
val is_zero: term -> bool |
|
59 |
val mk_Suc: term -> term |
|
60 |
val dest_Suc: term -> term |
|
61 |
val mk_nat: int -> term |
|
62 |
val dest_nat: term -> int |
|
| 7073 | 63 |
val intT: typ |
| 7163 | 64 |
val realT: typ |
| 7073 | 65 |
val binT: typ |
66 |
val pls_const: term |
|
67 |
val min_const: term |
|
68 |
val bit_const: term |
|
|
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
69 |
val int_of: int list -> int |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
70 |
val dest_binum: term -> int |
| 923 | 71 |
end; |
72 |
||
| 2510 | 73 |
|
| 923 | 74 |
structure HOLogic: HOLOGIC = |
75 |
struct |
|
76 |
||
| 2510 | 77 |
(* basics *) |
| 923 | 78 |
|
79 |
val termC: class = "term"; |
|
80 |
val termS: sort = [termC]; |
|
| 8100 | 81 |
val termT = TypeInfer.anyT termS; |
| 923 | 82 |
|
83 |
||
| 2510 | 84 |
(* bool and set *) |
| 923 | 85 |
|
| 8275 | 86 |
val boolN = "bool"; |
87 |
val boolT = Type (boolN, []); |
|
| 923 | 88 |
|
| 7073 | 89 |
val true_const = Const ("True", boolT)
|
90 |
and false_const = Const ("False", boolT);
|
|
91 |
||
| 923 | 92 |
fun mk_setT T = Type ("set", [T]);
|
93 |
||
94 |
fun dest_setT (Type ("set", [T])) = T
|
|
| 3794 | 95 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []);
|
| 923 | 96 |
|
| 8275 | 97 |
|
| 7073 | 98 |
(* logic *) |
| 923 | 99 |
|
100 |
val Trueprop = Const ("Trueprop", boolT --> propT);
|
|
101 |
||
102 |
fun mk_Trueprop P = Trueprop $ P; |
|
103 |
||
104 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P
|
|
| 3794 | 105 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]);
|
| 923 | 106 |
|
107 |
||
108 |
val conj = Const ("op &", [boolT, boolT] ---> boolT)
|
|
109 |
and disj = Const ("op |", [boolT, boolT] ---> boolT)
|
|
| 8429 | 110 |
and imp = Const ("op -->", [boolT, boolT] ---> boolT)
|
111 |
and Not = Const ("Not", boolT --> boolT);
|
|
| 923 | 112 |
|
| 7690 | 113 |
fun mk_conj (t1, t2) = conj $ t1 $ t2 |
114 |
and mk_disj (t1, t2) = disj $ t1 $ t2 |
|
115 |
and mk_imp (t1, t2) = imp $ t1 $ t2; |
|
116 |
||
|
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
117 |
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
|
118 |
| 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
|
119 |
|
| 8302 | 120 |
fun dest_conj (Const ("op &", _) $ t $ t') = t :: dest_conj t'
|
121 |
| dest_conj t = [t]; |
|
122 |
||
| 923 | 123 |
fun eq_const T = Const ("op =", [T, T] ---> boolT);
|
124 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
125 |
||
| 6031 | 126 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs)
|
127 |
| dest_eq t = raise TERM ("dest_eq", [t])
|
|
128 |
||
| 923 | 129 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT);
|
130 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
131 |
||
132 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT);
|
|
133 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
134 |
||
135 |
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T);
|
|
136 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
137 |
||
138 |
fun mk_mem (x, A) = |
|
139 |
let val setT = fastype_of A in |
|
140 |
Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A
|
|
141 |
end; |
|
142 |
||
| 6380 | 143 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A)
|
144 |
| dest_mem t = raise TERM ("dest_mem", [t]);
|
|
145 |
||
| 923 | 146 |
|
| 2510 | 147 |
(* binary oprations and relations *) |
148 |
||
149 |
fun mk_binop c (t, u) = |
|
150 |
let val T = fastype_of t in |
|
151 |
Const (c, [T, T] ---> T) $ t $ u |
|
152 |
end; |
|
153 |
||
154 |
fun mk_binrel c (t, u) = |
|
155 |
let val T = fastype_of t in |
|
156 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
157 |
end; |
|
158 |
||
159 |
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) =
|
|
160 |
if c = c' andalso T = T' then (t, u) |
|
| 3794 | 161 |
else raise TERM ("dest_bin " ^ c, [tm])
|
162 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]);
|
|
| 2510 | 163 |
|
164 |
||
| 4571 | 165 |
(* unit *) |
166 |
||
167 |
val unitT = Type ("unit", []);
|
|
168 |
||
169 |
val unit = Const ("()", unitT);
|
|
170 |
||
171 |
fun is_unit (Const ("()", _)) = true
|
|
172 |
| is_unit _ = false; |
|
173 |
||
174 |
||
175 |
(* prod *) |
|
176 |
||
177 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]);
|
|
178 |
||
179 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2)
|
|
180 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []);
|
|
181 |
||
182 |
fun mk_prod (t1, t2) = |
|
183 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
184 |
Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)) $ t1 $ t2
|
|
185 |
end; |
|
186 |
||
187 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2)
|
|
188 |
| dest_prod t = raise TERM ("dest_prod", [t]);
|
|
189 |
||
190 |
fun mk_fst p = |
|
191 |
let val pT = fastype_of p in |
|
192 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p
|
|
193 |
end; |
|
194 |
||
195 |
fun mk_snd p = |
|
196 |
let val pT = fastype_of p in |
|
197 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p
|
|
198 |
end; |
|
199 |
||
|
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
200 |
(*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
|
201 |
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
|
202 |
| prodT_factors T = [T]; |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
203 |
|
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
204 |
fun split_const (Ta, Tb, Tc) = |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
205 |
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
|
206 |
|
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
207 |
(*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
|
208 |
fun mk_tuple (Type ("*", [T1, T2])) tms =
|
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
209 |
mk_prod (mk_tuple T1 tms, |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
210 |
mk_tuple T2 (drop (length (prodT_factors T1), tms))) |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
211 |
| mk_tuple T (t::_) = t; |
| 4571 | 212 |
|
| 5207 | 213 |
|
214 |
||
215 |
(* nat *) |
|
216 |
||
217 |
val natT = Type ("nat", []);
|
|
218 |
||
219 |
val zero = Const ("0", natT);
|
|
220 |
||
221 |
fun is_zero (Const ("0", _)) = true
|
|
222 |
| is_zero _ = false; |
|
223 |
||
224 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t;
|
|
225 |
||
226 |
fun dest_Suc (Const ("Suc", _) $ t) = t
|
|
227 |
| dest_Suc t = raise TERM ("dest_Suc", [t]);
|
|
228 |
||
229 |
fun mk_nat 0 = zero |
|
230 |
| mk_nat n = mk_Suc (mk_nat (n - 1)); |
|
231 |
||
232 |
fun dest_nat (Const ("0", _)) = 0
|
|
233 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1
|
|
234 |
| dest_nat t = raise TERM ("dest_nat", [t]);
|
|
235 |
||
236 |
||
| 7073 | 237 |
val intT = Type ("IntDef.int", []);
|
238 |
||
| 7163 | 239 |
val realT = Type("RealDef.real",[]);
|
240 |
||
| 7073 | 241 |
|
242 |
(* binary numerals *) |
|
243 |
||
244 |
val binT = Type ("Numeral.bin", []);
|
|
245 |
||
246 |
val pls_const = Const ("Numeral.bin.Pls", binT)
|
|
247 |
and min_const = Const ("Numeral.bin.Min", binT)
|
|
248 |
and bit_const = Const ("Numeral.bin.Bit", [binT, boolT] ---> binT);
|
|
249 |
||
|
7548
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
250 |
fun int_of [] = 0 |
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
251 |
| 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
|
252 |
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
253 |
fun dest_bit (Const ("False", _)) = 0
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
254 |
| dest_bit (Const ("True", _)) = 1
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
255 |
| 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
|
256 |
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
257 |
fun bin_of (Const ("Numeral.bin.Pls", _)) = []
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
258 |
| bin_of (Const ("Numeral.bin.Min", _)) = [~1]
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
259 |
| 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
|
260 |
| 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
|
261 |
|
|
9e29a3af64ab
ROOT: Integ/bin_simprocs.ML now loaded in Integ/Bin.ML
nipkow
parents:
7163
diff
changeset
|
262 |
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
|
263 |
|
| 923 | 264 |
end; |