author | nipkow |
Thu, 19 Sep 2002 16:00:27 +0200 | |
changeset 13568 | 6b12df05f358 |
parent 13462 | 56610e2ba220 |
child 13600 | 9702c8636a7b |
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 |
||
5304 | 6 |
Instantiation of the generic simplifier for HOL. |
923 | 7 |
*) |
8 |
||
12281 | 9 |
(* legacy ML bindings *) |
3904 | 10 |
|
12281 | 11 |
val Eq_FalseI = thm "Eq_FalseI"; |
12 |
val Eq_TrueI = thm "Eq_TrueI"; |
|
13 |
val all_conj_distrib = thm "all_conj_distrib"; |
|
14 |
val all_simps = thms "all_simps"; |
|
15 |
val cases_simp = thm "cases_simp"; |
|
16 |
val conj_assoc = thm "conj_assoc"; |
|
17 |
val conj_comms = thms "conj_comms"; |
|
18 |
val conj_commute = thm "conj_commute"; |
|
19 |
val conj_cong = thm "conj_cong"; |
|
20 |
val conj_disj_distribL = thm "conj_disj_distribL"; |
|
21 |
val conj_disj_distribR = thm "conj_disj_distribR"; |
|
22 |
val conj_left_commute = thm "conj_left_commute"; |
|
23 |
val de_Morgan_conj = thm "de_Morgan_conj"; |
|
24 |
val de_Morgan_disj = thm "de_Morgan_disj"; |
|
25 |
val disj_assoc = thm "disj_assoc"; |
|
26 |
val disj_comms = thms "disj_comms"; |
|
27 |
val disj_commute = thm "disj_commute"; |
|
28 |
val disj_cong = thm "disj_cong"; |
|
29 |
val disj_conj_distribL = thm "disj_conj_distribL"; |
|
30 |
val disj_conj_distribR = thm "disj_conj_distribR"; |
|
31 |
val disj_left_commute = thm "disj_left_commute"; |
|
32 |
val disj_not1 = thm "disj_not1"; |
|
33 |
val disj_not2 = thm "disj_not2"; |
|
34 |
val eq_ac = thms "eq_ac"; |
|
35 |
val eq_assoc = thm "eq_assoc"; |
|
36 |
val eq_commute = thm "eq_commute"; |
|
37 |
val eq_left_commute = thm "eq_left_commute"; |
|
38 |
val eq_sym_conv = thm "eq_sym_conv"; |
|
39 |
val eta_contract_eq = thm "eta_contract_eq"; |
|
40 |
val ex_disj_distrib = thm "ex_disj_distrib"; |
|
41 |
val ex_simps = thms "ex_simps"; |
|
42 |
val if_False = thm "if_False"; |
|
43 |
val if_P = thm "if_P"; |
|
44 |
val if_True = thm "if_True"; |
|
45 |
val if_bool_eq_conj = thm "if_bool_eq_conj"; |
|
46 |
val if_bool_eq_disj = thm "if_bool_eq_disj"; |
|
47 |
val if_cancel = thm "if_cancel"; |
|
48 |
val if_def2 = thm "if_def2"; |
|
49 |
val if_eq_cancel = thm "if_eq_cancel"; |
|
50 |
val if_not_P = thm "if_not_P"; |
|
51 |
val if_splits = thms "if_splits"; |
|
52 |
val iff_conv_conj_imp = thm "iff_conv_conj_imp"; |
|
53 |
val imp_all = thm "imp_all"; |
|
54 |
val imp_cong = thm "imp_cong"; |
|
55 |
val imp_conjL = thm "imp_conjL"; |
|
56 |
val imp_conjR = thm "imp_conjR"; |
|
57 |
val imp_conv_disj = thm "imp_conv_disj"; |
|
58 |
val imp_disj1 = thm "imp_disj1"; |
|
59 |
val imp_disj2 = thm "imp_disj2"; |
|
60 |
val imp_disjL = thm "imp_disjL"; |
|
61 |
val imp_disj_not1 = thm "imp_disj_not1"; |
|
62 |
val imp_disj_not2 = thm "imp_disj_not2"; |
|
63 |
val imp_ex = thm "imp_ex"; |
|
64 |
val meta_eq_to_obj_eq = thm "meta_eq_to_obj_eq"; |
|
65 |
val neq_commute = thm "neq_commute"; |
|
66 |
val not_all = thm "not_all"; |
|
67 |
val not_ex = thm "not_ex"; |
|
68 |
val not_iff = thm "not_iff"; |
|
69 |
val not_imp = thm "not_imp"; |
|
70 |
val not_not = thm "not_not"; |
|
71 |
val rev_conj_cong = thm "rev_conj_cong"; |
|
72 |
val simp_thms = thms "simp_thms"; |
|
73 |
val split_if = thm "split_if"; |
|
74 |
val split_if_asm = thm "split_if_asm"; |
|
5278 | 75 |
|
2134 | 76 |
|
11232 | 77 |
local |
78 |
val uncurry = prove_goal (the_context()) "P --> Q --> R ==> P & Q --> R" |
|
79 |
(fn prems => [cut_facts_tac prems 1, Blast_tac 1]); |
|
80 |
||
81 |
val iff_allI = allI RS |
|
82 |
prove_goal (the_context()) "!x. P x = Q x ==> (!x. P x) = (!x. Q x)" |
|
83 |
(fn prems => [cut_facts_tac prems 1, Blast_tac 1]) |
|
12524
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
84 |
val iff_exI = allI RS |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
85 |
prove_goal (the_context()) "!x. P x = Q x ==> (? x. P x) = (? x. Q x)" |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
86 |
(fn prems => [cut_facts_tac prems 1, Blast_tac 1]) |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
87 |
|
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
88 |
val all_comm = prove_goal (the_context()) "(!x y. P x y) = (!y x. P x y)" |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
89 |
(fn _ => [Blast_tac 1]) |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
90 |
val ex_comm = prove_goal (the_context()) "(? x y. P x y) = (? y x. P x y)" |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
91 |
(fn _ => [Blast_tac 1]) |
11232 | 92 |
in |
4351 | 93 |
|
94 |
(*** make simplification procedures for quantifier elimination ***) |
|
95 |
||
9851 | 96 |
structure Quantifier1 = Quantifier1Fun |
97 |
(struct |
|
4351 | 98 |
(*abstract syntax*) |
99 |
fun dest_eq((c as Const("op =",_)) $ s $ t) = Some(c,s,t) |
|
100 |
| dest_eq _ = None; |
|
101 |
fun dest_conj((c as Const("op &",_)) $ s $ t) = Some(c,s,t) |
|
102 |
| dest_conj _ = None; |
|
11232 | 103 |
fun dest_imp((c as Const("op -->",_)) $ s $ t) = Some(c,s,t) |
104 |
| dest_imp _ = None; |
|
4351 | 105 |
val conj = HOLogic.conj |
106 |
val imp = HOLogic.imp |
|
107 |
(*rules*) |
|
108 |
val iff_reflection = eq_reflection |
|
109 |
val iffI = iffI |
|
12524
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
110 |
val iff_trans = trans |
4351 | 111 |
val conjI= conjI |
112 |
val conjE= conjE |
|
113 |
val impI = impI |
|
114 |
val mp = mp |
|
11232 | 115 |
val uncurry = uncurry |
4351 | 116 |
val exI = exI |
117 |
val exE = exE |
|
11232 | 118 |
val iff_allI = iff_allI |
12524
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
119 |
val iff_exI = iff_exI |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
120 |
val all_comm = all_comm |
66eb843b1d35
mods due to mor powerful simprocs for 1-point rules (quantifier1).
nipkow
parents:
12475
diff
changeset
|
121 |
val ex_comm = ex_comm |
4351 | 122 |
end); |
123 |
||
11232 | 124 |
end; |
125 |
||
13462 | 126 |
val defEX_regroup = |
127 |
Simplifier.simproc (Theory.sign_of (the_context ())) |
|
128 |
"defined EX" ["EX x. P x"] Quantifier1.rearrange_ex; |
|
129 |
||
130 |
val defALL_regroup = |
|
131 |
Simplifier.simproc (Theory.sign_of (the_context ())) |
|
132 |
"defined ALL" ["ALL x. P x"] Quantifier1.rearrange_all; |
|
3913 | 133 |
|
4351 | 134 |
|
135 |
(*** Case splitting ***) |
|
3913 | 136 |
|
12278 | 137 |
(*Make meta-equalities. The operator below is Trueprop*) |
138 |
||
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
139 |
fun mk_meta_eq r = r nRS eq_reflection; |
12278 | 140 |
fun safe_mk_meta_eq r = mk_meta_eq r handle Thm.THM _ => r; |
141 |
||
142 |
fun mk_eq th = case concl_of th of |
|
143 |
Const("==",_)$_$_ => th |
|
144 |
| _$(Const("op =",_)$_$_) => mk_meta_eq th |
|
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
145 |
| _$(Const("Not",_)$_) => th nRS Eq_FalseI |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
146 |
| _ => th nRS Eq_TrueI; |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
147 |
(* Expects Trueprop(.) if not == *) |
12278 | 148 |
|
149 |
fun mk_eq_True r = |
|
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
150 |
Some (r nRS meta_eq_to_obj_eq nRS Eq_TrueI) handle Thm.THM _ => None; |
12278 | 151 |
|
152 |
(*Congruence rules for = (instead of ==)*) |
|
153 |
fun mk_meta_cong rl = |
|
154 |
standard(mk_meta_eq(replicate (nprems_of rl) meta_eq_to_obj_eq MRS rl)) |
|
155 |
handle THM _ => |
|
156 |
error("Premises and conclusion of congruence rules must be =-equalities"); |
|
157 |
||
158 |
(* Elimination of True from asumptions: *) |
|
159 |
||
160 |
local fun rd s = read_cterm (sign_of (the_context())) (s, propT); |
|
161 |
in val True_implies_equals = standard' (equal_intr |
|
162 |
(implies_intr_hyps (implies_elim (assume (rd "True ==> PROP P")) TrueI)) |
|
163 |
(implies_intr_hyps (implies_intr (rd "True") (assume (rd "PROP P"))))); |
|
164 |
end; |
|
165 |
||
166 |
||
5304 | 167 |
structure SplitterData = |
168 |
struct |
|
169 |
structure Simplifier = Simplifier |
|
5552 | 170 |
val mk_eq = mk_eq |
5304 | 171 |
val meta_eq_to_iff = meta_eq_to_obj_eq |
172 |
val iffD = iffD2 |
|
173 |
val disjE = disjE |
|
174 |
val conjE = conjE |
|
175 |
val exE = exE |
|
10231 | 176 |
val contrapos = contrapos_nn |
177 |
val contrapos2 = contrapos_pp |
|
5304 | 178 |
val notnotD = notnotD |
179 |
end; |
|
4681 | 180 |
|
5304 | 181 |
structure Splitter = SplitterFun(SplitterData); |
2263 | 182 |
|
5304 | 183 |
val split_tac = Splitter.split_tac; |
184 |
val split_inside_tac = Splitter.split_inside_tac; |
|
185 |
val split_asm_tac = Splitter.split_asm_tac; |
|
5307 | 186 |
val op addsplits = Splitter.addsplits; |
187 |
val op delsplits = Splitter.delsplits; |
|
5304 | 188 |
val Addsplits = Splitter.Addsplits; |
189 |
val Delsplits = Splitter.Delsplits; |
|
4718
fc2ba9fb2135
new rewrite rules not1_or, not2_or, and if_eq_cancel
oheimb
parents:
4681
diff
changeset
|
190 |
|
2134 | 191 |
val mksimps_pairs = |
192 |
[("op -->", [mp]), ("op &", [conjunct1,conjunct2]), |
|
193 |
("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
|
194 |
("If", [if_bool_eq_conj RS iffD1])]; |
1758 | 195 |
|
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
196 |
(* |
5304 | 197 |
val mk_atomize: (string * thm list) list -> thm -> thm list |
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
198 |
looks too specific to move it somewhere else |
5304 | 199 |
*) |
200 |
fun mk_atomize pairs = |
|
201 |
let fun atoms th = |
|
202 |
(case concl_of th of |
|
203 |
Const("Trueprop",_) $ p => |
|
204 |
(case head_of p of |
|
205 |
Const(a,_) => |
|
206 |
(case assoc(pairs,a) of |
|
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
207 |
Some(rls) => flat (map atoms (map (apl(th,op nRS)) rls)) |
5304 | 208 |
| None => [th]) |
209 |
| _ => [th]) |
|
210 |
| _ => [th]) |
|
211 |
in atoms end; |
|
212 |
||
11624
8a45c7abef04
mksimps and mk_eq_True no longer raise THM exception.
berghofe
parents:
11534
diff
changeset
|
213 |
fun mksimps pairs = |
12725 | 214 |
(mapfilter (try mk_eq) o mk_atomize pairs o gen_all); |
5304 | 215 |
|
7570 | 216 |
fun unsafe_solver_tac prems = |
217 |
FIRST'[resolve_tac(reflexive_thm::TrueI::refl::prems), atac, etac FalseE]; |
|
218 |
val unsafe_solver = mk_solver "HOL unsafe" unsafe_solver_tac; |
|
219 |
||
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
220 |
(*No premature instantiation of variables during simplification*) |
7570 | 221 |
fun safe_solver_tac prems = |
222 |
FIRST'[match_tac(reflexive_thm::TrueI::refl::prems), |
|
223 |
eq_assume_tac, ematch_tac [FalseE]]; |
|
224 |
val safe_solver = mk_solver "HOL safe" safe_solver_tac; |
|
2443
a81d4c219c3c
factored out HOL_base_ss and val HOL_min_ss, added HOL_safe_min_ss
oheimb
parents:
2263
diff
changeset
|
225 |
|
9713 | 226 |
val HOL_basic_ss = |
227 |
empty_ss setsubgoaler asm_simp_tac |
|
228 |
setSSolver safe_solver |
|
229 |
setSolver unsafe_solver |
|
230 |
setmksimps (mksimps mksimps_pairs) |
|
231 |
setmkeqTrue mk_eq_True |
|
232 |
setmkcong mk_meta_cong; |
|
2443
a81d4c219c3c
factored out HOL_base_ss and val HOL_min_ss, added HOL_safe_min_ss
oheimb
parents:
2263
diff
changeset
|
233 |
|
13568
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
234 |
(*In general it seems wrong to add distributive laws by default: they |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
235 |
might cause exponential blow-up. But imp_disjL has been in for a while |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
236 |
and cannot be removed without affecting existing proofs. Moreover, |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
237 |
rewriting by "(P|Q --> R) = ((P-->R)&(Q-->R))" might be justified on the |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
238 |
grounds that it allows simplification of R in the two cases.*) |
6b12df05f358
preserve names of rewrite rules when transforming them
nipkow
parents:
13462
diff
changeset
|
239 |
|
9713 | 240 |
val HOL_ss = |
241 |
HOL_basic_ss addsimps |
|
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
242 |
([triv_forall_equality, (* prunes params *) |
3654 | 243 |
True_implies_equals, (* prune asms `True' *) |
9023 | 244 |
eta_contract_eq, (* prunes eta-expansions *) |
4718
fc2ba9fb2135
new rewrite rules not1_or, not2_or, and if_eq_cancel
oheimb
parents:
4681
diff
changeset
|
245 |
if_True, if_False, if_cancel, if_eq_cancel, |
5304 | 246 |
imp_disjL, conj_assoc, disj_assoc, |
3904 | 247 |
de_Morgan_conj, de_Morgan_disj, imp_disj1, imp_disj2, not_imp, |
11451
8abfb4f7bd02
partial restructuring to reduce dependence on Axiom of Choice
paulson
parents:
11434
diff
changeset
|
248 |
disj_not1, not_all, not_ex, cases_simp, |
11434 | 249 |
thm "the_eq_trivial", the_sym_eq_trivial, thm "plus_ac0.zero", thm "plus_ac0_zero_right"] |
3446
a14e5451f613
Addition of not_imp (which pushes negation into implication) as a default
paulson
parents:
3282
diff
changeset
|
250 |
@ 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
|
251 |
addsimprocs [defALL_regroup,defEX_regroup] |
4744
4469d498cd48
moved addsplits [expand_if] from HOL_basic_ss to HOL_ss;
wenzelm
parents:
4743
diff
changeset
|
252 |
addcongs [imp_cong] |
4830 | 253 |
addsplits [split_if]; |
2082 | 254 |
|
11034 | 255 |
fun hol_simplify rews = Simplifier.full_simplify (HOL_basic_ss addsimps rews); |
256 |
||
257 |
||
6293 | 258 |
(*Simplifies x assuming c and y assuming ~c*) |
259 |
val prems = Goalw [if_def] |
|
260 |
"[| b=c; c ==> x=u; ~c ==> y=v |] ==> \ |
|
261 |
\ (if b then x else y) = (if c then u else v)"; |
|
262 |
by (asm_simp_tac (HOL_ss addsimps prems) 1); |
|
263 |
qed "if_cong"; |
|
264 |
||
7127
48e235179ffb
added parentheses to cope with a possible reduction of the precedence of unary
paulson
parents:
7031
diff
changeset
|
265 |
(*Prevents simplification of x and y: faster and allows the execution |
48e235179ffb
added parentheses to cope with a possible reduction of the precedence of unary
paulson
parents:
7031
diff
changeset
|
266 |
of functional programs. NOW THE DEFAULT.*) |
7031 | 267 |
Goal "b=c ==> (if b then x else y) = (if c then x else y)"; |
268 |
by (etac arg_cong 1); |
|
269 |
qed "if_weak_cong"; |
|
6293 | 270 |
|
271 |
(*Prevents simplification of t: much faster*) |
|
7031 | 272 |
Goal "a = b ==> (let x=a in t(x)) = (let x=b in t(x))"; |
273 |
by (etac arg_cong 1); |
|
274 |
qed "let_weak_cong"; |
|
6293 | 275 |
|
12975 | 276 |
(*To tidy up the result of a simproc. Only the RHS will be simplified.*) |
277 |
Goal "u = u' ==> (t==u) == (t==u')"; |
|
278 |
by (asm_simp_tac HOL_ss 1); |
|
279 |
qed "eq_cong2"; |
|
280 |
||
7031 | 281 |
Goal "f(if c then x else y) = (if c then f x else f y)"; |
282 |
by (simp_tac (HOL_ss setloop (split_tac [split_if])) 1); |
|
283 |
qed "if_distrib"; |
|
1655 | 284 |
|
4327 | 285 |
(*For expand_case_tac*) |
7584 | 286 |
val prems = Goal "[| P ==> Q(True); ~P ==> Q(False) |] ==> Q(P)"; |
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
287 |
by (case_tac "P" 1); |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
288 |
by (ALLGOALS (asm_simp_tac (HOL_ss addsimps prems))); |
7584 | 289 |
qed "expand_case"; |
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
290 |
|
4327 | 291 |
(*Used in Auth proofs. Typically P contains Vars that become instantiated |
292 |
during unification.*) |
|
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
293 |
fun expand_case_tac P i = |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
294 |
res_inst_tac [("P",P)] expand_case i THEN |
9713 | 295 |
Simp_tac (i+1) THEN |
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
296 |
Simp_tac i; |
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
297 |
|
7584 | 298 |
(*This lemma restricts the effect of the rewrite rule u=v to the left-hand |
299 |
side of an equality. Used in {Integ,Real}/simproc.ML*) |
|
300 |
Goal "x=y ==> (x=z) = (y=z)"; |
|
301 |
by (asm_simp_tac HOL_ss 1); |
|
302 |
qed "restrict_to_left"; |
|
2948
f18035b1d531
Moved expand_case_tac from Auth/Message.ML to simpdata.ML
paulson
parents:
2935
diff
changeset
|
303 |
|
7357 | 304 |
(* default simpset *) |
9713 | 305 |
val simpsetup = |
306 |
[fn thy => (simpset_ref_of thy := HOL_ss addcongs [if_weak_cong]; thy)]; |
|
3615
e5322197cfea
Moved some functions which used to be part of thy_data.ML
berghofe
parents:
3577
diff
changeset
|
307 |
|
4652
d24cca140eeb
factored out common code of HOL/simpdata.ML and FOL/simpdata.ML concerning
oheimb
parents:
4651
diff
changeset
|
308 |
|
5219 | 309 |
(*** integration of simplifier with classical reasoner ***) |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
310 |
|
5219 | 311 |
structure Clasimp = ClasimpFun |
8473 | 312 |
(structure Simplifier = Simplifier and Splitter = Splitter |
9851 | 313 |
and Classical = Classical and Blast = Blast |
11344 | 314 |
val iffD1 = iffD1 val iffD2 = iffD2 val notE = notE |
9851 | 315 |
val cla_make_elim = cla_make_elim); |
4652
d24cca140eeb
factored out common code of HOL/simpdata.ML and FOL/simpdata.ML concerning
oheimb
parents:
4651
diff
changeset
|
316 |
open Clasimp; |
2636
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
317 |
|
4b30dbe4a020
added delcongs, Delcongs, unsafe_solver, safe_solver, HOL_basic_ss,
oheimb
parents:
2595
diff
changeset
|
318 |
val HOL_css = (HOL_cs, HOL_ss); |
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
319 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
320 |
|
8641
978db2870862
change_global/local_css move to Provers/clasimp.ML;
wenzelm
parents:
8473
diff
changeset
|
321 |
|
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
322 |
(*** A general refutation procedure ***) |
9713 | 323 |
|
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
324 |
(* Parameters: |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
325 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
326 |
test: term -> bool |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
327 |
tests if a term is at all relevant to the refutation proof; |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
328 |
if not, then it can be discarded. Can improve performance, |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
329 |
esp. if disjunctions can be discarded (no case distinction needed!). |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
330 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
331 |
prep_tac: int -> tactic |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
332 |
A preparation tactic to be applied to the goal once all relevant premises |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
333 |
have been moved to the conclusion. |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
334 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
335 |
ref_tac: int -> tactic |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
336 |
the actual refutation tactic. Should be able to deal with goals |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
337 |
[| A1; ...; An |] ==> False |
9876 | 338 |
where the Ai are atomic, i.e. no top-level &, | or EX |
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
339 |
*) |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
340 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
341 |
fun refute_tac test prep_tac ref_tac = |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
342 |
let val nnf_simps = |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
343 |
[imp_conv_disj,iff_conv_conj_imp,de_Morgan_disj,de_Morgan_conj, |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
344 |
not_all,not_ex,not_not]; |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
345 |
val nnf_simpset = |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
346 |
empty_ss setmkeqTrue mk_eq_True |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
347 |
setmksimps (mksimps mksimps_pairs) |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
348 |
addsimps nnf_simps; |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
349 |
val prem_nnf_tac = full_simp_tac nnf_simpset; |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
350 |
|
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
351 |
val refute_prems_tac = |
12475 | 352 |
REPEAT_DETERM |
353 |
(eresolve_tac [conjE, exE] 1 ORELSE |
|
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
354 |
filter_prems_tac test 1 ORELSE |
6301 | 355 |
etac disjE 1) THEN |
11200
f43fa07536c0
arith_tac now copes with propositional reasoning as well.
nipkow
parents:
11162
diff
changeset
|
356 |
((etac notE 1 THEN eq_assume_tac 1) ORELSE |
f43fa07536c0
arith_tac now copes with propositional reasoning as well.
nipkow
parents:
11162
diff
changeset
|
357 |
ref_tac 1); |
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
358 |
in EVERY'[TRY o filter_prems_tac test, |
12475 | 359 |
REPEAT_DETERM o etac rev_mp, prep_tac, rtac ccontr, prem_nnf_tac, |
5975
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
360 |
SELECT_GOAL (DEPTH_SOLVE refute_prems_tac)] |
cd19eaa90f45
Added a general refutation tactic which works by putting things into nnf first.
nipkow
parents:
5552
diff
changeset
|
361 |
end; |