author | berghofe |
Tue, 30 Jun 1998 20:51:15 +0200 | |
changeset 5102 | 8c782c25a11e |
parent 4930 | 89271bc4e7ed |
child 5190 | 4ae031622592 |
permissions | -rw-r--r-- |
1465 | 1 |
(* Title: HOL/simpdata.ML |
923 | 2 |
ID: $Id$ |
1465 | 3 |
Author: Tobias Nipkow |
923 | 4 |
Copyright 1991 University of Cambridge |
5 |
||
4794 | 6 |
Instantiation of the generic simplifier. |
923 | 7 |
*) |
8 |
||
1984 | 9 |
section "Simplifier"; |
10 |
||
11 |
(*** Addition of rules to simpsets and clasets simultaneously ***) |
|
12 |
||
13 |
(*Takes UNCONDITIONAL theorems of the form A<->B to |
|
2031 | 14 |
the Safe Intr rule B==>A and |
15 |
the Safe Destruct rule A==>B. |
|
1984 | 16 |
Also ~A goes to the Safe Elim rule A ==> ?R |
17 |
Failing other cases, A is added as a Safe Intr rule*) |
|
18 |
local |
|
19 |
val iff_const = HOLogic.eq_const HOLogic.boolT; |
|
20 |
||
21 |
fun addIff th = |
|
22 |
(case HOLogic.dest_Trueprop (#prop(rep_thm th)) of |
|
2718 | 23 |
(Const("Not",_) $ A) => |
2031 | 24 |
AddSEs [zero_var_indexes (th RS notE)] |
25 |
| (con $ _ $ _) => |
|
26 |
if con=iff_const |
|
27 |
then (AddSIs [zero_var_indexes (th RS iffD2)]; |
|
28 |
AddSDs [zero_var_indexes (th RS iffD1)]) |
|
29 |
else AddSIs [th] |
|
30 |
| _ => AddSIs [th]; |
|
1984 | 31 |
Addsimps [th]) |
32 |
handle _ => error ("AddIffs: theorem must be unconditional\n" ^ |
|
2031 | 33 |
string_of_thm th) |
1984 | 34 |
|
35 |
fun delIff th = |
|
36 |
(case HOLogic.dest_Trueprop (#prop(rep_thm th)) of |
|
2718 | 37 |
(Const("Not",_) $ A) => |
2031 | 38 |
Delrules [zero_var_indexes (th RS notE)] |
39 |
| (con $ _ $ _) => |
|
40 |
if con=iff_const |
|
41 |
then Delrules [zero_var_indexes (th RS iffD2), |
|
3518 | 42 |
make_elim (zero_var_indexes (th RS iffD1))] |
2031 | 43 |
else Delrules [th] |
44 |
| _ => Delrules [th]; |
|
1984 | 45 |
Delsimps [th]) |
46 |
handle _ => warning("DelIffs: ignoring conditional theorem\n" ^ |
|
2031 | 47 |
string_of_thm th) |
1984 | 48 |
in |
49 |
val AddIffs = seq addIff |
|
50 |
val DelIffs = seq delIff |
|
51 |
end; |
|
52 |
||
4640 | 53 |
qed_goal "meta_eq_to_obj_eq" HOL.thy "x==y ==> x=y" |
54 |
(fn [prem] => [rewtac prem, rtac refl 1]); |
|
55 |
||
923 | 56 |
local |
57 |
||
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
58 |
fun prover s = prove_goal HOL.thy s (K [Blast_tac 1]); |
923 | 59 |
|
1922 | 60 |
val P_imp_P_iff_True = prover "P --> (P = True)" RS mp; |
61 |
val P_imp_P_eq_True = P_imp_P_iff_True RS eq_reflection; |
|
923 | 62 |
|
1922 | 63 |
val not_P_imp_P_iff_F = prover "~P --> (P = False)" RS mp; |
64 |
val not_P_imp_P_eq_False = not_P_imp_P_iff_F RS eq_reflection; |
|
923 | 65 |
|
1922 | 66 |
fun atomize pairs = |
67 |
let fun atoms th = |
|
2031 | 68 |
(case concl_of th of |
69 |
Const("Trueprop",_) $ p => |
|
70 |
(case head_of p of |
|
71 |
Const(a,_) => |
|
72 |
(case assoc(pairs,a) of |
|
73 |
Some(rls) => flat (map atoms ([th] RL rls)) |
|
74 |
| None => [th]) |
|
75 |
| _ => [th]) |
|
76 |
| _ => [th]) |
|
1922 | 77 |
in atoms end; |
923 | 78 |
|
2134 | 79 |
fun gen_all th = forall_elim_vars (#maxidx(rep_thm th)+1) th; |
80 |
||
81 |
in |
|
82 |
||
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3842
diff
changeset
|
83 |
fun mk_meta_eq r = r RS eq_reflection; |
4677 | 84 |
fun mk_meta_eq_True r = Some(r RS meta_eq_to_obj_eq RS P_imp_P_eq_True); |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3842
diff
changeset
|
85 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3842
diff
changeset
|
86 |
fun mk_meta_eq_simp r = case concl_of r of |
2031 | 87 |
Const("==",_)$_$_ => r |
4677 | 88 |
| _$(Const("op =",_)$lhs$rhs) => mk_meta_eq r |
2718 | 89 |
| _$(Const("Not",_)$_) => r RS not_P_imp_P_eq_False |
1922 | 90 |
| _ => r RS P_imp_P_eq_True; |
91 |
(* last 2 lines requires all formulae to be of the from Trueprop(.) *) |
|
923 | 92 |
|
2082 | 93 |
val simp_thms = map prover |
94 |
[ "(x=x) = True", |
|
95 |
"(~True) = False", "(~False) = True", "(~ ~ P) = P", |
|
96 |
"(~P) ~= P", "P ~= (~P)", "(P ~= Q) = (P = (~Q))", |
|
4640 | 97 |
"(True=P) = P", "(P=True) = P", "(False=P) = (~P)", "(P=False) = (~P)", |
2082 | 98 |
"(True --> P) = P", "(False --> P) = True", |
99 |
"(P --> True) = True", "(P --> P) = True", |
|
100 |
"(P --> False) = (~P)", "(P --> ~P) = (~P)", |
|
101 |
"(P & True) = P", "(True & P) = P", |
|
2800 | 102 |
"(P & False) = False", "(False & P) = False", |
103 |
"(P & P) = P", "(P & (P & Q)) = (P & Q)", |
|
3913 | 104 |
"(P & ~P) = False", "(~P & P) = False", |
2082 | 105 |
"(P | True) = True", "(True | P) = True", |
2800 | 106 |
"(P | False) = P", "(False | P) = P", |
107 |
"(P | P) = P", "(P | (P | Q)) = (P | Q)", |
|
3913 | 108 |
"(P | ~P) = True", "(~P | P) = True", |
2082 | 109 |
"((~P) = (~Q)) = (P=Q)", |
3842 | 110 |
"(!x. P) = P", "(? x. P) = P", "? x. x=t", "? x. t=x", |
4351 | 111 |
(*two needed for the one-point-rule quantifier simplification procs*) |
112 |
"(? x. x=t & P(x)) = P(t)", (*essential for termination!!*) |
|
113 |
"(! x. t=x --> P(x)) = P(t)" ]; (*covers a stray case*) |
|
923 | 114 |
|
988 | 115 |
(*Add congruence rules for = (instead of ==) *) |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
116 |
infix 4 addcongs delcongs; |
4351 | 117 |
|
4640 | 118 |
fun mk_meta_cong rl = |
119 |
standard(mk_meta_eq(replicate (nprems_of rl) meta_eq_to_obj_eq MRS rl)) |
|
120 |
handle THM _ => |
|
121 |
error("Premises and conclusion of congruence rules must be =-equalities"); |
|
122 |
||
123 |
fun ss addcongs congs = ss addeqcongs (map mk_meta_cong congs); |
|
124 |
||
125 |
fun ss delcongs congs = ss deleqcongs (map mk_meta_cong congs); |
|
923 | 126 |
|
4086 | 127 |
fun Addcongs congs = (simpset_ref() := simpset() addcongs congs); |
128 |
fun Delcongs congs = (simpset_ref() := simpset() delcongs congs); |
|
1264 | 129 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3842
diff
changeset
|
130 |
fun mksimps pairs = map mk_meta_eq_simp o atomize pairs o gen_all; |
923 | 131 |
|
1922 | 132 |
val imp_cong = impI RSN |
133 |
(2, prove_goal HOL.thy "(P=P')--> (P'--> (Q=Q'))--> ((P-->Q) = (P'-->Q'))" |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
134 |
(fn _=> [Blast_tac 1]) RS mp RS mp); |
1922 | 135 |
|
1948
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
136 |
(*Miniscoping: pushing in existential quantifiers*) |
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
137 |
val ex_simps = map prover |
3842 | 138 |
["(EX x. P x & Q) = ((EX x. P x) & Q)", |
139 |
"(EX x. P & Q x) = (P & (EX x. Q x))", |
|
140 |
"(EX x. P x | Q) = ((EX x. P x) | Q)", |
|
141 |
"(EX x. P | Q x) = (P | (EX x. Q x))", |
|
142 |
"(EX x. P x --> Q) = ((ALL x. P x) --> Q)", |
|
143 |
"(EX x. P --> Q x) = (P --> (EX x. Q x))"]; |
|
1948
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
144 |
|
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
145 |
(*Miniscoping: pushing in universal quantifiers*) |
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
146 |
val all_simps = map prover |
3842 | 147 |
["(ALL x. P x & Q) = ((ALL x. P x) & Q)", |
148 |
"(ALL x. P & Q x) = (P & (ALL x. Q x))", |
|
149 |
"(ALL x. P x | Q) = ((ALL x. P x) | Q)", |
|
150 |
"(ALL x. P | Q x) = (P | (ALL x. Q x))", |
|
151 |
"(ALL x. P x --> Q) = ((EX x. P x) --> Q)", |
|
152 |
"(ALL x. P --> Q x) = (P --> (ALL x. Q x))"]; |
|
1948
78e5bfcbc1e9
Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents:
1922
diff
changeset
|
153 |
|
923 | 154 |
|
2022 | 155 |
(* elimination of existential quantifiers in assumptions *) |
923 | 156 |
|
157 |
val ex_all_equiv = |
|
158 |
let val lemma1 = prove_goal HOL.thy |
|
159 |
"(? x. P(x) ==> PROP Q) ==> (!!x. P(x) ==> PROP Q)" |
|
160 |
(fn prems => [resolve_tac prems 1, etac exI 1]); |
|
161 |
val lemma2 = prove_goalw HOL.thy [Ex_def] |
|
162 |
"(!!x. P(x) ==> PROP Q) ==> (? x. P(x) ==> PROP Q)" |
|
163 |
(fn prems => [REPEAT(resolve_tac prems 1)]) |
|
164 |
in equal_intr lemma1 lemma2 end; |
|
165 |
||
166 |
end; |
|
167 |
||
3654 | 168 |
(* Elimination of True from asumptions: *) |
169 |
||
170 |
val True_implies_equals = prove_goal HOL.thy |
|
171 |
"(True ==> PROP P) == PROP P" |
|
4525 | 172 |
(K [rtac equal_intr_rule 1, atac 2, |
3654 | 173 |
METAHYPS (fn prems => resolve_tac prems 1) 1, |
174 |
rtac TrueI 1]); |
|
175 |
||
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
176 |
fun prove nm thm = qed_goal nm HOL.thy thm (K [Blast_tac 1]); |
923 | 177 |
|
178 |
prove "conj_commute" "(P&Q) = (Q&P)"; |
|
179 |
prove "conj_left_commute" "(P&(Q&R)) = (Q&(P&R))"; |
|
180 |
val conj_comms = [conj_commute, conj_left_commute]; |
|
2134 | 181 |
prove "conj_assoc" "((P&Q)&R) = (P&(Q&R))"; |
923 | 182 |
|
1922 | 183 |
prove "disj_commute" "(P|Q) = (Q|P)"; |
184 |
prove "disj_left_commute" "(P|(Q|R)) = (Q|(P|R))"; |
|
185 |
val disj_comms = [disj_commute, disj_left_commute]; |
|
2134 | 186 |
prove "disj_assoc" "((P|Q)|R) = (P|(Q|R))"; |
1922 | 187 |
|
923 | 188 |
prove "conj_disj_distribL" "(P&(Q|R)) = (P&Q | P&R)"; |
189 |
prove "conj_disj_distribR" "((P|Q)&R) = (P&R | Q&R)"; |
|
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
190 |
|
1892 | 191 |
prove "disj_conj_distribL" "(P|(Q&R)) = ((P|Q) & (P|R))"; |
192 |
prove "disj_conj_distribR" "((P&Q)|R) = ((P|R) & (Q|R))"; |
|
193 |
||
2134 | 194 |
prove "imp_conjR" "(P --> (Q&R)) = ((P-->Q) & (P-->R))"; |
195 |
prove "imp_conjL" "((P&Q) -->R) = (P --> (Q --> R))"; |
|
196 |
prove "imp_disjL" "((P|Q) --> R) = ((P-->R)&(Q-->R))"; |
|
1892 | 197 |
|
3448 | 198 |
(*These two are specialized, but imp_disj_not1 is useful in Auth/Yahalom.ML*) |
199 |
prove "imp_disj_not1" "((P --> Q | R)) = (~Q --> P --> R)"; |
|
200 |
prove "imp_disj_not2" "((P --> Q | R)) = (~R --> P --> Q)"; |
|
201 |
||
3904 | 202 |
prove "imp_disj1" "((P-->Q)|R) = (P--> Q|R)"; |
203 |
prove "imp_disj2" "(Q|(P-->R)) = (P--> Q|R)"; |
|
204 |
||
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
205 |
prove "de_Morgan_disj" "(~(P | Q)) = (~P & ~Q)"; |
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
206 |
prove "de_Morgan_conj" "(~(P & Q)) = (~P | ~Q)"; |
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
207 |
prove "not_imp" "(~(P --> Q)) = (P & ~Q)"; |
1922 | 208 |
prove "not_iff" "(P~=Q) = (P = (~Q))"; |
4743 | 209 |
prove "disj_not1" "(~P | Q) = (P --> Q)"; |
210 |
prove "disj_not2" "(P | ~Q) = (Q --> P)"; (* changes orientation :-( *) |
|
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
211 |
|
4830 | 212 |
(*Avoids duplication of subgoals after split_if, when the true and false |
2134 | 213 |
cases boil down to the same thing.*) |
214 |
prove "cases_simp" "((P --> Q) & (~P --> Q)) = Q"; |
|
215 |
||
3842 | 216 |
prove "not_all" "(~ (! x. P(x))) = (? x.~P(x))"; |
1922 | 217 |
prove "imp_all" "((! x. P x) --> Q) = (? x. P x --> Q)"; |
3842 | 218 |
prove "not_ex" "(~ (? x. P(x))) = (! x.~P(x))"; |
1922 | 219 |
prove "imp_ex" "((? x. P x) --> Q) = (! x. P x --> Q)"; |
1660 | 220 |
|
1655 | 221 |
prove "ex_disj_distrib" "(? x. P(x) | Q(x)) = ((? x. P(x)) | (? x. Q(x)))"; |
222 |
prove "all_conj_distrib" "(!x. P(x) & Q(x)) = ((! x. P(x)) & (! x. Q(x)))"; |
|
223 |
||
2134 | 224 |
(* '&' congruence rule: not included by default! |
225 |
May slow rewrite proofs down by as much as 50% *) |
|
226 |
||
227 |
let val th = prove_goal HOL.thy |
|
228 |
"(P=P')--> (P'--> (Q=Q'))--> ((P&Q) = (P'&Q'))" |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
229 |
(fn _=> [Blast_tac 1]) |
2134 | 230 |
in bind_thm("conj_cong",standard (impI RSN (2, th RS mp RS mp))) end; |
231 |
||
232 |
let val th = prove_goal HOL.thy |
|
233 |
"(Q=Q')--> (Q'--> (P=P'))--> ((P&Q) = (P'&Q'))" |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
234 |
(fn _=> [Blast_tac 1]) |
2134 | 235 |
in bind_thm("rev_conj_cong",standard (impI RSN (2, th RS mp RS mp))) end; |
236 |
||
237 |
(* '|' congruence rule: not included by default! *) |
|
238 |
||
239 |
let val th = prove_goal HOL.thy |
|
240 |
"(P=P')--> (~P'--> (Q=Q'))--> ((P|Q) = (P'|Q'))" |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
241 |
(fn _=> [Blast_tac 1]) |
2134 | 242 |
in bind_thm("disj_cong",standard (impI RSN (2, th RS mp RS mp))) end; |
243 |
||
244 |
prove "eq_sym_conv" "(x=y) = (y=x)"; |
|
245 |
||
246 |
qed_goalw "o_apply" HOL.thy [o_def] "(f o g) x = f (g x)" |
|
4525 | 247 |
(K [rtac refl 1]); |
2134 | 248 |
|
249 |
qed_goalw "if_True" HOL.thy [if_def] "(if True then x else y) = x" |
|
4525 | 250 |
(K [Blast_tac 1]); |
2134 | 251 |
|
252 |
qed_goalw "if_False" HOL.thy [if_def] "(if False then x else y) = y" |
|
4525 | 253 |
(K [Blast_tac 1]); |
2134 | 254 |
|
255 |
qed_goal "if_P" HOL.thy "P ==> (if P then x else y) = x" |
|
256 |
(fn [prem] => [ stac (prem RS eqTrueI) 1, rtac if_True 1 ]); |
|
257 |
(* |
|
258 |
qed_goal "if_not_P" HOL.thy "~P ==> (if P then x else y) = y" |
|
259 |
(fn [prem] => [ stac (prem RS not_P_imp_P_iff_F) 1, rtac if_False 1 ]); |
|
260 |
*) |
|
261 |
qed_goalw "if_not_P" HOL.thy [if_def] "!!P. ~P ==> (if P then x else y) = y" |
|
4525 | 262 |
(K [Blast_tac 1]); |
2134 | 263 |
|
4830 | 264 |
qed_goal "split_if" HOL.thy |
4205
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
265 |
"P(if Q then x else y) = ((Q --> P(x)) & (~Q --> P(y)))" (K [ |
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
266 |
res_inst_tac [("Q","Q")] (excluded_middle RS disjE) 1, |
2134 | 267 |
stac if_P 2, |
268 |
stac if_not_P 1, |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
269 |
ALLGOALS (Blast_tac)]); |
4830 | 270 |
(* for backwards compatibility: *) |
271 |
val expand_if = split_if; |
|
4205
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
272 |
|
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
273 |
qed_goal "split_if_asm" HOL.thy |
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
274 |
"P(if Q then x else y) = (~((Q & ~P x) | (~Q & ~P y)))" |
4830 | 275 |
(K [stac split_if 1, |
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
276 |
Blast_tac 1]); |
2134 | 277 |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
278 |
(*This form is useful for expanding IFs on the RIGHT of the ==> symbol*) |
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
279 |
qed_goal "if_bool_eq_conj" HOL.thy |
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
280 |
"(if P then Q else R) = ((P-->Q) & (~P-->R))" |
4830 | 281 |
(K [rtac split_if 1]); |
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
282 |
|
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
283 |
(*And this form is useful for expanding IFs on the LEFT*) |
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
284 |
qed_goal "if_bool_eq_disj" HOL.thy |
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
285 |
"(if P then Q else R) = ((P&Q) | (~P&R))" |
4830 | 286 |
(K [stac split_if 1, |
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
287 |
Blast_tac 1]); |
2134 | 288 |
|
4351 | 289 |
|
290 |
(*** make simplification procedures for quantifier elimination ***) |
|
291 |
||
292 |
structure Quantifier1 = Quantifier1Fun( |
|
293 |
struct |
|
294 |
(*abstract syntax*) |
|
295 |
fun dest_eq((c as Const("op =",_)) $ s $ t) = Some(c,s,t) |
|
296 |
| dest_eq _ = None; |
|
297 |
fun dest_conj((c as Const("op &",_)) $ s $ t) = Some(c,s,t) |
|
298 |
| dest_conj _ = None; |
|
299 |
val conj = HOLogic.conj |
|
300 |
val imp = HOLogic.imp |
|
301 |
(*rules*) |
|
302 |
val iff_reflection = eq_reflection |
|
303 |
val iffI = iffI |
|
304 |
val sym = sym |
|
305 |
val conjI= conjI |
|
306 |
val conjE= conjE |
|
307 |
val impI = impI |
|
308 |
val impE = impE |
|
309 |
val mp = mp |
|
310 |
val exI = exI |
|
311 |
val exE = exE |
|
312 |
val allI = allI |
|
313 |
val allE = allE |
|
314 |
end); |
|
315 |
||
4320
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
316 |
local |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
317 |
val ex_pattern = |
4351 | 318 |
read_cterm (sign_of HOL.thy) ("EX x. P(x) & Q(x)",HOLogic.boolT) |
3913 | 319 |
|
4320
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
320 |
val all_pattern = |
4351 | 321 |
read_cterm (sign_of HOL.thy) ("ALL x. P(x) & P'(x) --> Q(x)",HOLogic.boolT) |
4320
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
322 |
|
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
323 |
in |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
324 |
val defEX_regroup = |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
325 |
mk_simproc "defined EX" [ex_pattern] Quantifier1.rearrange_ex; |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
326 |
val defALL_regroup = |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
327 |
mk_simproc "defined ALL" [all_pattern] Quantifier1.rearrange_all; |
24d9e6639cd4
Moved the quantifier elimination simp procs into Provers.
nipkow
parents:
4205
diff
changeset
|
328 |
end; |
3913 | 329 |
|
4351 | 330 |
|
331 |
(*** Case splitting ***) |
|
3913 | 332 |
|
2263 | 333 |
local val mktac = mk_case_split_tac (meta_eq_to_obj_eq RS iffD2) |
334 |
in |
|
335 |
fun split_tac splits = mktac (map mk_meta_eq splits) |
|
336 |
end; |
|
337 |
||
338 |
local val mktac = mk_case_split_inside_tac (meta_eq_to_obj_eq RS iffD2) |
|
339 |
in |
|
340 |
fun split_inside_tac splits = mktac (map mk_meta_eq splits) |
|
341 |
end; |
|
342 |
||
4205
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
343 |
val split_asm_tac = mk_case_split_asm_tac split_tac |
96632970d203
simpdata.ML: renamed split_prem_tac to split_asm_tac, added split_if_asm
oheimb
parents:
4189
diff
changeset
|
344 |
(disjE,conjE,exE,contrapos,contrapos2,notnotD); |
4189 | 345 |
|
4681 | 346 |
infix 4 addsplits delsplits; |
347 |
||
4669 | 348 |
fun ss addsplits splits = |
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
349 |
let fun addsplit (ss,split) = |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
350 |
let val (name,asm) = split_thm_info split |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
351 |
in ss addloop ("split "^ name ^ (if asm then " asm" else ""), |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
352 |
(if asm then split_asm_tac else split_tac) [split]) end |
4669 | 353 |
in foldl addsplit (ss,splits) end; |
2263 | 354 |
|
4681 | 355 |
fun ss delsplits splits = |
356 |
let fun delsplit(ss,split) = |
|
4930
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
357 |
let val (name,asm) = split_thm_info split |
89271bc4e7ed
extended addsplits and delsplits to handle also split rules for assumptions
oheimb
parents:
4830
diff
changeset
|
358 |
in ss delloop ("split "^ name ^ (if asm then " asm" else "")) end |
4681 | 359 |
in foldl delsplit (ss,splits) end; |
360 |
||
361 |
fun Addsplits splits = (simpset_ref() := simpset() addsplits splits); |
|
362 |
fun Delsplits splits = (simpset_ref() := simpset() delsplits splits); |
|
363 |
||
2251 | 364 |
qed_goal "if_cancel" HOL.thy "(if c then x else x) = x" |
4830 | 365 |
(K [split_tac [split_if] 1, Blast_tac 1]); |
2251 | 366 |
|
4718
fc2ba9fb2135
new rewrite rules not1_or, not2_or, and if_eq_cancel
oheimb
parents:
4681
diff
changeset
|
367 |
qed_goal "if_eq_cancel" HOL.thy "(if x = y then y else x) = x" |
4830 | 368 |
(K [split_tac [split_if] 1, Blast_tac 1]); |
4718
fc2ba9fb2135
new rewrite rules not1_or, not2_or, and if_eq_cancel
oheimb
parents:
4681
diff
changeset
|
369 |
|
2134 | 370 |
(** 'if' congruence rules: neither included by default! *) |
371 |
||
372 |
(*Simplifies x assuming c and y assuming ~c*) |
|
373 |
qed_goal "if_cong" HOL.thy |
|
374 |
"[| b=c; c ==> x=u; ~c ==> y=v |] ==>\ |
|
375 |
\ (if b then x else y) = (if c then u else v)" |
|
376 |
(fn rew::prems => |
|
4830 | 377 |
[stac rew 1, stac split_if 1, stac split_if 1, |
2935 | 378 |
blast_tac (HOL_cs addDs prems) 1]); |
2134 | 379 |
|
380 |
(*Prevents simplification of x and y: much faster*) |
|
381 |
qed_goal "if_weak_cong" HOL.thy |
|
382 |
"b=c ==> (if b then x else y) = (if c then x else y)" |
|
383 |
(fn [prem] => [rtac (prem RS arg_cong) 1]); |
|
384 |
||
385 |
(*Prevents simplification of t: much faster*) |
|
386 |
qed_goal "let_weak_cong" HOL.thy |
|
387 |
"a = b ==> (let x=a in t(x)) = (let x=b in t(x))" |
|
388 |
(fn [prem] => [rtac (prem RS arg_cong) 1]); |
|
389 |
||
390 |
(*In general it seems wrong to add distributive laws by default: they |
|
391 |
might cause exponential blow-up. But imp_disjL has been in for a while |
|
392 |
and cannot be removed without affecting existing proofs. Moreover, |
|
393 |
rewriting by "(P|Q --> R) = ((P-->R)&(Q-->R))" might be justified on the |
|
394 |
grounds that it allows simplification of R in the two cases.*) |
|
395 |
||
396 |
val mksimps_pairs = |
|
397 |
[("op -->", [mp]), ("op &", [conjunct1,conjunct2]), |
|
398 |
("All", [spec]), ("True", []), ("False", []), |
|
4769
bb60149fe21b
changed if_bool_eq to if_bool_eq_conj and added if_bool_eq_disj
paulson
parents:
4744
diff
changeset
|
399 |
("If", [if_bool_eq_conj RS iffD1])]; |
1758 | 400 |
|
4640 | 401 |
fun unsafe_solver prems = FIRST'[resolve_tac (reflexive_thm::TrueI::refl::prems), |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
402 |
atac, etac FalseE]; |
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
403 |
(*No premature instantiation of variables during simplification*) |
4640 | 404 |
fun safe_solver prems = FIRST'[match_tac (reflexive_thm::TrueI::prems), |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
405 |
eq_assume_tac, ematch_tac [FalseE]]; |
2443
a81d4c219c3c
factored out HOL_base_ss and val HOL_min_ss, added HOL_safe_min_ss
oheimb
parents:
2263
diff
changeset
|
406 |
|
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
407 |
val HOL_basic_ss = empty_ss setsubgoaler asm_simp_tac |
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
408 |
setSSolver safe_solver |
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
409 |
setSolver unsafe_solver |
4677 | 410 |
setmksimps (mksimps mksimps_pairs) |
4744
4469d498cd48
moved addsplits [expand_if] from HOL_basic_ss to HOL_ss;
wenzelm
parents:
4743
diff
changeset
|
411 |
setmkeqTrue mk_meta_eq_True; |
2443
a81d4c219c3c
factored out HOL_base_ss and val HOL_min_ss, added HOL_safe_min_ss
oheimb
parents:
2263
diff
changeset
|
412 |
|
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
413 |
val HOL_ss = |
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
414 |
HOL_basic_ss addsimps |
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
415 |
([triv_forall_equality, (* prunes params *) |
3654 | 416 |
True_implies_equals, (* prune asms `True' *) |
4718
fc2ba9fb2135
new rewrite rules not1_or, not2_or, and if_eq_cancel
oheimb
parents:
4681
diff
changeset
|
417 |
if_True, if_False, if_cancel, if_eq_cancel, |
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
418 |
o_apply, imp_disjL, conj_assoc, disj_assoc, |
3904 | 419 |
de_Morgan_conj, de_Morgan_disj, imp_disj1, imp_disj2, not_imp, |
4743 | 420 |
disj_not1, not_all, not_ex, cases_simp] |
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
421 |
@ ex_simps @ all_simps @ simp_thms) |
4032
4b1c69d8b767
For each datatype `t' there is now a theorem `split_t_case' of the form
nipkow
parents:
3919
diff
changeset
|
422 |
addsimprocs [defALL_regroup,defEX_regroup] |
4744
4469d498cd48
moved addsplits [expand_if] from HOL_basic_ss to HOL_ss;
wenzelm
parents:
4743
diff
changeset
|
423 |
addcongs [imp_cong] |
4830 | 424 |
addsplits [split_if]; |
2082 | 425 |
|
1655 | 426 |
qed_goal "if_distrib" HOL.thy |
427 |
"f(if c then x else y) = (if c then f x else f y)" |
|
4830 | 428 |
(K [simp_tac (HOL_ss setloop (split_tac [split_if])) 1]); |
1655 | 429 |
|
2097 | 430 |
qed_goalw "o_assoc" HOL.thy [o_def] "f o (g o h) = f o g o h" |
4525 | 431 |
(K [rtac ext 1, rtac refl 1]); |
1984 | 432 |
|
433 |
||
4327 | 434 |
(*For expand_case_tac*) |
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
435 |
val prems = goal HOL.thy "[| P ==> Q(True); ~P ==> Q(False) |] ==> Q(P)"; |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
436 |
by (case_tac "P" 1); |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
437 |
by (ALLGOALS (asm_simp_tac (HOL_ss addsimps prems))); |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
438 |
val expand_case = result(); |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
439 |
|
4327 | 440 |
(*Used in Auth proofs. Typically P contains Vars that become instantiated |
441 |
during unification.*) |
|
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
442 |
fun expand_case_tac P i = |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
443 |
res_inst_tac [("P",P)] expand_case i THEN |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
444 |
Simp_tac (i+1) THEN |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
445 |
Simp_tac i; |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
446 |
|
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
447 |
|
4119 | 448 |
(* install implicit simpset *) |
1984 | 449 |
|
4086 | 450 |
simpset_ref() := HOL_ss; |
1984 | 451 |
|
3615
e5322197cfea
Moved some functions which used to be part of thy_data.ML
berghofe
parents:
3577
diff
changeset
|
452 |
|
4652
d24cca140eeb
factored out common code of HOL/simpdata.ML and FOL/simpdata.ML concerning
oheimb
parents:
4651
diff
changeset
|
453 |
|
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
454 |
(*** Integration of simplifier with classical reasoner ***) |
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
455 |
|
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
456 |
(* rot_eq_tac rotates the first equality premise of subgoal i to the front, |
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
457 |
fails if there is no equaliy or if an equality is already at the front *) |
3538 | 458 |
local |
459 |
fun is_eq (Const ("Trueprop", _) $ (Const("op =" ,_) $ _ $ _)) = true |
|
460 |
| is_eq _ = false; |
|
4188
1025a27b08f9
changed libraray function find to find_index_eq, currying it
oheimb
parents:
4119
diff
changeset
|
461 |
val find_eq = find_index is_eq; |
3538 | 462 |
in |
463 |
val rot_eq_tac = |
|
4188
1025a27b08f9
changed libraray function find to find_index_eq, currying it
oheimb
parents:
4119
diff
changeset
|
464 |
SUBGOAL (fn (Bi,i) => let val n = find_eq (Logic.strip_assums_hyp Bi) in |
1025a27b08f9
changed libraray function find to find_index_eq, currying it
oheimb
parents:
4119
diff
changeset
|
465 |
if n>0 then rotate_tac n i else no_tac end) |
3538 | 466 |
end; |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
467 |
|
4652
d24cca140eeb
factored out common code of HOL/simpdata.ML and FOL/simpdata.ML concerning
oheimb
parents:
4651
diff
changeset
|
468 |
use "$ISABELLE_HOME/src/Provers/clasimp.ML"; |
d24cca140eeb
factored out common code of HOL/simpdata.ML and FOL/simpdata.ML concerning
oheimb
parents:
4651
diff
changeset
|
469 |
open Clasimp; |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
470 |
|
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
471 |
val HOL_css = (HOL_cs, HOL_ss); |