author | wenzelm |
Wed, 05 May 1999 18:07:38 +0200 | |
changeset 6593 | 62204772812f |
parent 6380 | 32fda1090a13 |
child 7073 | a959b4391fd8 |
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 |
|
14 |
val mk_setT: typ -> typ |
|
15 |
val dest_setT: typ -> typ |
|
16 |
val mk_Trueprop: term -> term |
|
17 |
val dest_Trueprop: term -> term |
|
18 |
val conj: term |
|
19 |
val disj: term |
|
20 |
val imp: term |
|
4571 | 21 |
val dest_imp: term -> term * term |
923 | 22 |
val eq_const: typ -> term |
23 |
val all_const: typ -> term |
|
24 |
val exists_const: typ -> term |
|
25 |
val Collect_const: typ -> term |
|
26 |
val mk_eq: term * term -> term |
|
6031 | 27 |
val dest_eq: term -> term * term |
923 | 28 |
val mk_all: string * typ * term -> term |
29 |
val mk_exists: string * typ * term -> term |
|
30 |
val mk_Collect: string * typ * term -> term |
|
31 |
val mk_mem: term * term -> term |
|
6380 | 32 |
val dest_mem: term -> term * term |
2510 | 33 |
val mk_binop: string -> term * term -> term |
34 |
val mk_binrel: string -> term * term -> term |
|
35 |
val dest_bin: string -> typ -> term -> term * term |
|
4571 | 36 |
val unitT: typ |
37 |
val unit: term |
|
38 |
val is_unit: term -> bool |
|
39 |
val mk_prodT: typ * typ -> typ |
|
40 |
val dest_prodT: typ -> typ * typ |
|
41 |
val mk_prod: term * term -> term |
|
42 |
val dest_prod: term -> term * term |
|
43 |
val mk_fst: term -> term |
|
44 |
val mk_snd: term -> term |
|
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
45 |
val prodT_factors: typ -> typ list |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
46 |
val split_const: typ * typ * typ -> term |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
47 |
val mk_tuple: typ -> term list -> term |
5207 | 48 |
val natT: typ |
49 |
val zero: term |
|
50 |
val is_zero: term -> bool |
|
51 |
val mk_Suc: term -> term |
|
52 |
val dest_Suc: term -> term |
|
53 |
val mk_nat: int -> term |
|
54 |
val dest_nat: term -> int |
|
923 | 55 |
end; |
56 |
||
2510 | 57 |
|
923 | 58 |
structure HOLogic: HOLOGIC = |
59 |
struct |
|
60 |
||
2510 | 61 |
(* basics *) |
923 | 62 |
|
63 |
val termC: class = "term"; |
|
64 |
val termS: sort = [termC]; |
|
65 |
||
2510 | 66 |
val termTVar = TVar (("'a", 0), termS); |
923 | 67 |
|
68 |
||
2510 | 69 |
(* bool and set *) |
923 | 70 |
|
71 |
val boolT = Type ("bool", []); |
|
72 |
||
73 |
fun mk_setT T = Type ("set", [T]); |
|
74 |
||
75 |
fun dest_setT (Type ("set", [T])) = T |
|
3794 | 76 |
| dest_setT T = raise TYPE ("dest_setT: set type expected", [T], []); |
923 | 77 |
|
78 |
||
79 |
val Trueprop = Const ("Trueprop", boolT --> propT); |
|
80 |
||
81 |
fun mk_Trueprop P = Trueprop $ P; |
|
82 |
||
83 |
fun dest_Trueprop (Const ("Trueprop", _) $ P) = P |
|
3794 | 84 |
| dest_Trueprop t = raise TERM ("dest_Trueprop", [t]); |
923 | 85 |
|
86 |
||
87 |
val conj = Const ("op &", [boolT, boolT] ---> boolT) |
|
88 |
and disj = Const ("op |", [boolT, boolT] ---> boolT) |
|
89 |
and imp = Const ("op -->", [boolT, boolT] ---> boolT); |
|
90 |
||
4466
305390f23734
Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents:
4294
diff
changeset
|
91 |
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
|
92 |
| 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
|
93 |
|
923 | 94 |
fun eq_const T = Const ("op =", [T, T] ---> boolT); |
95 |
fun mk_eq (t, u) = eq_const (fastype_of t) $ t $ u; |
|
96 |
||
6031 | 97 |
fun dest_eq (Const ("op =", _) $ lhs $ rhs) = (lhs, rhs) |
98 |
| dest_eq t = raise TERM ("dest_eq", [t]) |
|
99 |
||
923 | 100 |
fun all_const T = Const ("All", [T --> boolT] ---> boolT); |
101 |
fun mk_all (x, T, P) = all_const T $ absfree (x, T, P); |
|
102 |
||
103 |
fun exists_const T = Const ("Ex", [T --> boolT] ---> boolT); |
|
104 |
fun mk_exists (x, T, P) = exists_const T $ absfree (x, T, P); |
|
105 |
||
106 |
fun Collect_const T = Const ("Collect", [T --> boolT] ---> mk_setT T); |
|
107 |
fun mk_Collect (a, T, t) = Collect_const T $ absfree (a, T, t); |
|
108 |
||
109 |
fun mk_mem (x, A) = |
|
110 |
let val setT = fastype_of A in |
|
111 |
Const ("op :", [dest_setT setT, setT] ---> boolT) $ x $ A |
|
112 |
end; |
|
113 |
||
6380 | 114 |
fun dest_mem (Const ("op :", _) $ x $ A) = (x, A) |
115 |
| dest_mem t = raise TERM ("dest_mem", [t]); |
|
116 |
||
923 | 117 |
|
2510 | 118 |
(* binary oprations and relations *) |
119 |
||
120 |
fun mk_binop c (t, u) = |
|
121 |
let val T = fastype_of t in |
|
122 |
Const (c, [T, T] ---> T) $ t $ u |
|
123 |
end; |
|
124 |
||
125 |
fun mk_binrel c (t, u) = |
|
126 |
let val T = fastype_of t in |
|
127 |
Const (c, [T, T] ---> boolT) $ t $ u |
|
128 |
end; |
|
129 |
||
130 |
fun dest_bin c T (tm as Const (c', Type ("fun", [T', _])) $ t $ u) = |
|
131 |
if c = c' andalso T = T' then (t, u) |
|
3794 | 132 |
else raise TERM ("dest_bin " ^ c, [tm]) |
133 |
| dest_bin c _ tm = raise TERM ("dest_bin " ^ c, [tm]); |
|
2510 | 134 |
|
135 |
||
4571 | 136 |
(* unit *) |
137 |
||
138 |
val unitT = Type ("unit", []); |
|
139 |
||
140 |
val unit = Const ("()", unitT); |
|
141 |
||
142 |
fun is_unit (Const ("()", _)) = true |
|
143 |
| is_unit _ = false; |
|
144 |
||
145 |
||
146 |
(* prod *) |
|
147 |
||
148 |
fun mk_prodT (T1, T2) = Type ("*", [T1, T2]); |
|
149 |
||
150 |
fun dest_prodT (Type ("*", [T1, T2])) = (T1, T2) |
|
151 |
| dest_prodT T = raise TYPE ("dest_prodT", [T], []); |
|
152 |
||
153 |
fun mk_prod (t1, t2) = |
|
154 |
let val T1 = fastype_of t1 and T2 = fastype_of t2 in |
|
155 |
Const ("Pair", [T1, T2] ---> mk_prodT (T1, T2)) $ t1 $ t2 |
|
156 |
end; |
|
157 |
||
158 |
fun dest_prod (Const ("Pair", _) $ t1 $ t2) = (t1, t2) |
|
159 |
| dest_prod t = raise TERM ("dest_prod", [t]); |
|
160 |
||
161 |
fun mk_fst p = |
|
162 |
let val pT = fastype_of p in |
|
163 |
Const ("fst", pT --> fst (dest_prodT pT)) $ p |
|
164 |
end; |
|
165 |
||
166 |
fun mk_snd p = |
|
167 |
let val pT = fastype_of p in |
|
168 |
Const ("snd", pT --> snd (dest_prodT pT)) $ p |
|
169 |
end; |
|
170 |
||
5096
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
171 |
(*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
|
172 |
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
|
173 |
| prodT_factors T = [T]; |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
174 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
175 |
fun split_const (Ta, Tb, Tc) = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
176 |
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
|
177 |
|
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
178 |
(*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
|
179 |
fun mk_tuple (Type ("*", [T1, T2])) tms = |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
180 |
mk_prod (mk_tuple T1 tms, |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
181 |
mk_tuple T2 (drop (length (prodT_factors T1), tms))) |
84b00be693b4
Moved most of the Prod_Syntax - stuff to HOLogic.
berghofe
parents:
4571
diff
changeset
|
182 |
| mk_tuple T (t::_) = t; |
4571 | 183 |
|
5207 | 184 |
|
185 |
||
186 |
(* nat *) |
|
187 |
||
188 |
val natT = Type ("nat", []); |
|
189 |
||
190 |
val zero = Const ("0", natT); |
|
191 |
||
192 |
fun is_zero (Const ("0", _)) = true |
|
193 |
| is_zero _ = false; |
|
194 |
||
195 |
fun mk_Suc t = Const ("Suc", natT --> natT) $ t; |
|
196 |
||
197 |
fun dest_Suc (Const ("Suc", _) $ t) = t |
|
198 |
| dest_Suc t = raise TERM ("dest_Suc", [t]); |
|
199 |
||
200 |
fun mk_nat 0 = zero |
|
201 |
| mk_nat n = mk_Suc (mk_nat (n - 1)); |
|
202 |
||
203 |
fun dest_nat (Const ("0", _)) = 0 |
|
204 |
| dest_nat (Const ("Suc", _) $ t) = dest_nat t + 1 |
|
205 |
| dest_nat t = raise TERM ("dest_nat", [t]); |
|
206 |
||
207 |
||
923 | 208 |
end; |