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