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