author | wenzelm |
Sat, 28 Jun 2008 22:52:03 +0200 | |
changeset 27388 | 226835ea8d2b |
parent 26938 | 64e850c3da9e |
child 29267 | 8615b4f54047 |
permissions | -rw-r--r-- |
9938 | 1 |
(* Title: Provers/classical.ML |
0 | 2 |
ID: $Id$ |
9938 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1992 University of Cambridge |
5 |
||
6 |
Theorem prover for classical reasoning, including predicate calculus, set |
|
7 |
theory, etc. |
|
8 |
||
9563
216d053992a5
fixed classification of rules in atts and modifiers (final!?);
wenzelm
parents:
9513
diff
changeset
|
9 |
Rules must be classified as intro, elim, safe, hazardous (unsafe). |
0 | 10 |
|
11 |
A rule is unsafe unless it can be applied blindly without harmful results. |
|
12 |
For a rule to be safe, its premises and conclusion should be logically |
|
13 |
equivalent. There should be no variables in the premises that are not in |
|
14 |
the conclusion. |
|
15 |
*) |
|
16 |
||
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
17 |
(*higher precedence than := facilitates use of references*) |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
18 |
infix 4 addSIs addSEs addSDs addIs addEs addDs delrules |
4651 | 19 |
addSWrapper delSWrapper addWrapper delWrapper |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
20 |
addSbefore addSafter addbefore addafter |
5523 | 21 |
addD2 addE2 addSD2 addSE2; |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
22 |
|
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
23 |
|
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
24 |
(*should be a type abbreviation in signature CLASSICAL*) |
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
25 |
type netpair = (int * (bool * thm)) Net.net * (int * (bool * thm)) Net.net; |
4651 | 26 |
type wrapper = (int -> tactic) -> (int -> tactic); |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
27 |
|
0 | 28 |
signature CLASSICAL_DATA = |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
29 |
sig |
26412
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
30 |
val imp_elim : thm (* P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R *) |
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
31 |
val not_elim : thm (* ~P ==> P ==> R *) |
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
32 |
val swap : thm (* ~ P ==> (~ R ==> P) ==> R *) |
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
33 |
val classical : thm (* (~ P ==> P) ==> P *) |
9938 | 34 |
val sizef : thm -> int (* size function for BEST_FIRST *) |
0 | 35 |
val hyp_subst_tacs: (int -> tactic) list |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
36 |
end; |
0 | 37 |
|
5841 | 38 |
signature BASIC_CLASSICAL = |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
39 |
sig |
0 | 40 |
type claset |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
41 |
val empty_cs: claset |
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
42 |
val print_cs: claset -> unit |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
43 |
val rep_cs: |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
44 |
claset -> {safeIs: thm list, safeEs: thm list, |
9938 | 45 |
hazIs: thm list, hazEs: thm list, |
10736 | 46 |
swrappers: (string * wrapper) list, |
9938 | 47 |
uwrappers: (string * wrapper) list, |
48 |
safe0_netpair: netpair, safep_netpair: netpair, |
|
12401 | 49 |
haz_netpair: netpair, dup_netpair: netpair, |
50 |
xtra_netpair: ContextRules.netpair} |
|
9938 | 51 |
val merge_cs : claset * claset -> claset |
52 |
val addDs : claset * thm list -> claset |
|
53 |
val addEs : claset * thm list -> claset |
|
54 |
val addIs : claset * thm list -> claset |
|
55 |
val addSDs : claset * thm list -> claset |
|
56 |
val addSEs : claset * thm list -> claset |
|
57 |
val addSIs : claset * thm list -> claset |
|
58 |
val delrules : claset * thm list -> claset |
|
59 |
val addSWrapper : claset * (string * wrapper) -> claset |
|
60 |
val delSWrapper : claset * string -> claset |
|
61 |
val addWrapper : claset * (string * wrapper) -> claset |
|
62 |
val delWrapper : claset * string -> claset |
|
63 |
val addSbefore : claset * (string * (int -> tactic)) -> claset |
|
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
64 |
val addSafter : claset * (string * (int -> tactic)) -> claset |
9938 | 65 |
val addbefore : claset * (string * (int -> tactic)) -> claset |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
66 |
val addafter : claset * (string * (int -> tactic)) -> claset |
5523 | 67 |
val addD2 : claset * (string * thm) -> claset |
68 |
val addE2 : claset * (string * thm) -> claset |
|
69 |
val addSD2 : claset * (string * thm) -> claset |
|
70 |
val addSE2 : claset * (string * thm) -> claset |
|
9938 | 71 |
val appSWrappers : claset -> wrapper |
72 |
val appWrappers : claset -> wrapper |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
73 |
|
17880 | 74 |
val change_claset: (claset -> claset) -> unit |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
75 |
val claset_of: theory -> claset |
17880 | 76 |
val claset: unit -> claset |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
77 |
val CLASET: (claset -> tactic) -> tactic |
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
78 |
val CLASET': (claset -> 'a -> tactic) -> 'a -> tactic |
15036 | 79 |
val local_claset_of : Proof.context -> claset |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
80 |
|
9938 | 81 |
val fast_tac : claset -> int -> tactic |
82 |
val slow_tac : claset -> int -> tactic |
|
83 |
val weight_ASTAR : int ref |
|
84 |
val astar_tac : claset -> int -> tactic |
|
85 |
val slow_astar_tac : claset -> int -> tactic |
|
86 |
val best_tac : claset -> int -> tactic |
|
87 |
val first_best_tac : claset -> int -> tactic |
|
88 |
val slow_best_tac : claset -> int -> tactic |
|
89 |
val depth_tac : claset -> int -> int -> tactic |
|
90 |
val deepen_tac : claset -> int -> int -> tactic |
|
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
91 |
|
9938 | 92 |
val contr_tac : int -> tactic |
93 |
val dup_elim : thm -> thm |
|
94 |
val dup_intr : thm -> thm |
|
95 |
val dup_step_tac : claset -> int -> tactic |
|
96 |
val eq_mp_tac : int -> tactic |
|
97 |
val haz_step_tac : claset -> int -> tactic |
|
98 |
val joinrules : thm list * thm list -> (bool * thm) list |
|
99 |
val mp_tac : int -> tactic |
|
100 |
val safe_tac : claset -> tactic |
|
101 |
val safe_steps_tac : claset -> int -> tactic |
|
102 |
val safe_step_tac : claset -> int -> tactic |
|
103 |
val clarify_tac : claset -> int -> tactic |
|
104 |
val clarify_step_tac : claset -> int -> tactic |
|
105 |
val step_tac : claset -> int -> tactic |
|
106 |
val slow_step_tac : claset -> int -> tactic |
|
107 |
val swapify : thm list -> thm list |
|
108 |
val swap_res_tac : thm list -> int -> tactic |
|
109 |
val inst_step_tac : claset -> int -> tactic |
|
110 |
val inst0_step_tac : claset -> int -> tactic |
|
111 |
val instp_step_tac : claset -> int -> tactic |
|
1724 | 112 |
|
9938 | 113 |
val AddDs : thm list -> unit |
114 |
val AddEs : thm list -> unit |
|
115 |
val AddIs : thm list -> unit |
|
116 |
val AddSDs : thm list -> unit |
|
117 |
val AddSEs : thm list -> unit |
|
118 |
val AddSIs : thm list -> unit |
|
119 |
val Delrules : thm list -> unit |
|
120 |
val Safe_tac : tactic |
|
121 |
val Safe_step_tac : int -> tactic |
|
122 |
val Clarify_tac : int -> tactic |
|
123 |
val Clarify_step_tac : int -> tactic |
|
124 |
val Step_tac : int -> tactic |
|
125 |
val Fast_tac : int -> tactic |
|
126 |
val Best_tac : int -> tactic |
|
127 |
val Slow_tac : int -> tactic |
|
2066 | 128 |
val Slow_best_tac : int -> tactic |
9938 | 129 |
val Deepen_tac : int -> int -> tactic |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
130 |
end; |
1724 | 131 |
|
5841 | 132 |
signature CLASSICAL = |
133 |
sig |
|
134 |
include BASIC_CLASSICAL |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
135 |
val classical_rule: thm -> thm |
15036 | 136 |
val add_context_safe_wrapper: string * (Proof.context -> wrapper) -> theory -> theory |
137 |
val del_context_safe_wrapper: string -> theory -> theory |
|
138 |
val add_context_unsafe_wrapper: string * (Proof.context -> wrapper) -> theory -> theory |
|
139 |
val del_context_unsafe_wrapper: string -> theory -> theory |
|
17880 | 140 |
val get_claset: theory -> claset |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
141 |
val map_claset: (claset -> claset) -> theory -> theory |
24021 | 142 |
val get_cs: Context.generic -> claset |
143 |
val map_cs: (claset -> claset) -> Context.generic -> Context.generic |
|
18728 | 144 |
val safe_dest: int option -> attribute |
145 |
val safe_elim: int option -> attribute |
|
146 |
val safe_intro: int option -> attribute |
|
147 |
val haz_dest: int option -> attribute |
|
148 |
val haz_elim: int option -> attribute |
|
149 |
val haz_intro: int option -> attribute |
|
150 |
val rule_del: attribute |
|
7272 | 151 |
val cla_modifiers: (Args.T list -> (Method.modifier * Args.T list)) list |
7559 | 152 |
val cla_meth: (claset -> tactic) -> thm list -> Proof.context -> Proof.method |
153 |
val cla_meth': (claset -> int -> tactic) -> thm list -> Proof.context -> Proof.method |
|
15703 | 154 |
val cla_method: (claset -> tactic) -> Method.src -> Proof.context -> Proof.method |
155 |
val cla_method': (claset -> int -> tactic) -> Method.src -> Proof.context -> Proof.method |
|
18708 | 156 |
val setup: theory -> theory |
5841 | 157 |
end; |
158 |
||
0 | 159 |
|
5927 | 160 |
functor ClassicalFun(Data: CLASSICAL_DATA): CLASSICAL = |
0 | 161 |
struct |
162 |
||
7354 | 163 |
local open Data in |
0 | 164 |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
165 |
(** classical elimination rules **) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
166 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
167 |
(* |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
168 |
Classical reasoning requires stronger elimination rules. For |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
169 |
instance, make_elim of Pure transforms the HOL rule injD into |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
170 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
171 |
[| inj f; f x = f y; x = y ==> PROP W |] ==> PROP W |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
172 |
|
26938 | 173 |
Such rules can cause fast_tac to fail and blast_tac to report "PROOF |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
174 |
FAILED"; classical_rule will strenthen this to |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
175 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
176 |
[| inj f; ~ W ==> f x = f y; x = y ==> W |] ==> W |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
177 |
*) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
178 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
179 |
fun classical_rule rule = |
19257 | 180 |
if ObjectLogic.is_elim rule then |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
181 |
let |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
182 |
val rule' = rule RS classical; |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
183 |
val concl' = Thm.concl_of rule'; |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
184 |
fun redundant_hyp goal = |
19257 | 185 |
concl' aconv Logic.strip_assums_concl goal orelse |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
186 |
(case Logic.strip_assums_hyp goal of |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
187 |
hyp :: hyps => exists (fn t => t aconv hyp) hyps |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
188 |
| _ => false); |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
189 |
val rule'' = |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
190 |
rule' |> ALLGOALS (SUBGOAL (fn (goal, i) => |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
191 |
if i = 1 orelse redundant_hyp goal |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
192 |
then Tactic.etac thin_rl i |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
193 |
else all_tac)) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
194 |
|> Seq.hd |
21963 | 195 |
|> Drule.zero_var_indexes; |
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
22095
diff
changeset
|
196 |
in if Thm.equiv_thm (rule, rule'') then rule else rule'' end |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
197 |
else rule; |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
198 |
|
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
199 |
(*flatten nested meta connectives in prems*) |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
200 |
val flat_rule = Conv.fconv_rule (Conv.prems_conv ~1 ObjectLogic.atomize_prems); |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
201 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
202 |
|
1800 | 203 |
(*** Useful tactics for classical reasoning ***) |
0 | 204 |
|
10736 | 205 |
(*Prove goal that assumes both P and ~P. |
4392 | 206 |
No backtracking if it finds an equal assumption. Perhaps should call |
207 |
ematch_tac instead of eresolve_tac, but then cannot prove ZF/cantor.*) |
|
10736 | 208 |
val contr_tac = eresolve_tac [not_elim] THEN' |
4392 | 209 |
(eq_assume_tac ORELSE' assume_tac); |
0 | 210 |
|
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
211 |
(*Finds P-->Q and P in the assumptions, replaces implication by Q. |
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
212 |
Could do the same thing for P<->Q and P... *) |
26412
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
213 |
fun mp_tac i = eresolve_tac [not_elim, Data.imp_elim] i THEN assume_tac i; |
0 | 214 |
|
215 |
(*Like mp_tac but instantiates no variables*) |
|
26412
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
216 |
fun eq_mp_tac i = ematch_tac [not_elim, Data.imp_elim] i THEN eq_assume_tac i; |
0 | 217 |
|
218 |
(*Creates rules to eliminate ~A, from rules to introduce A*) |
|
26412
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
219 |
fun swapify intrs = intrs RLN (2, [Data.swap]); |
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
220 |
fun swapped x = Attrib.no_args (fn (x, th) => (x, th RSN (2, Data.swap))) x; |
0 | 221 |
|
222 |
(*Uses introduction rules in the normal way, or on negated assumptions, |
|
223 |
trying rules in order. *) |
|
10736 | 224 |
fun swap_res_tac rls = |
26412
0918f5c0bbca
pass imp_elim (instead of mp) and swap explicitly -- avoids store_thm;
wenzelm
parents:
24867
diff
changeset
|
225 |
let fun addrl (rl,brls) = (false, rl) :: (true, rl RSN (2, Data.swap)) :: brls |
10736 | 226 |
in assume_tac ORELSE' |
227 |
contr_tac ORELSE' |
|
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
228 |
biresolve_tac (foldr addrl [] rls) |
0 | 229 |
end; |
230 |
||
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
231 |
(*Duplication of hazardous rules, for complete provers*) |
2689
6d3d893453de
dup_intr & dup_elim no longer call standard -- this
paulson
parents:
2630
diff
changeset
|
232 |
fun dup_intr th = zero_var_indexes (th RS classical); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
233 |
|
6967 | 234 |
fun dup_elim th = |
13525 | 235 |
rule_by_tactic (TRYALL (etac revcut_rl)) |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
236 |
((th RSN (2, revcut_rl)) |> assumption 2 |> Seq.hd); |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
237 |
|
1800 | 238 |
(**** Classical rule sets ****) |
0 | 239 |
|
240 |
datatype claset = |
|
12401 | 241 |
CS of {safeIs : thm list, (*safe introduction rules*) |
242 |
safeEs : thm list, (*safe elimination rules*) |
|
243 |
hazIs : thm list, (*unsafe introduction rules*) |
|
244 |
hazEs : thm list, (*unsafe elimination rules*) |
|
245 |
swrappers : (string * wrapper) list, (*for transforming safe_step_tac*) |
|
9938 | 246 |
uwrappers : (string * wrapper) list, (*for transforming step_tac*) |
12401 | 247 |
safe0_netpair : netpair, (*nets for trivial cases*) |
248 |
safep_netpair : netpair, (*nets for >0 subgoals*) |
|
249 |
haz_netpair : netpair, (*nets for unsafe rules*) |
|
250 |
dup_netpair : netpair, (*nets for duplication*) |
|
251 |
xtra_netpair : ContextRules.netpair}; (*nets for extra rules*) |
|
0 | 252 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
253 |
(*Desired invariants are |
9938 | 254 |
safe0_netpair = build safe0_brls, |
255 |
safep_netpair = build safep_brls, |
|
256 |
haz_netpair = build (joinrules(hazIs, hazEs)), |
|
10736 | 257 |
dup_netpair = build (joinrules(map dup_intr hazIs, |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
258 |
map dup_elim hazEs)) |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
259 |
|
10736 | 260 |
where build = build_netpair(Net.empty,Net.empty), |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
261 |
safe0_brls contains all brules that solve the subgoal, and |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
262 |
safep_brls contains all brules that generate 1 or more new subgoals. |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
263 |
The theorem lists are largely comments, though they are used in merge_cs and print_cs. |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
264 |
Nets must be built incrementally, to save space and time. |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
265 |
*) |
0 | 266 |
|
6502 | 267 |
val empty_netpair = (Net.empty, Net.empty); |
268 |
||
10736 | 269 |
val empty_cs = |
9938 | 270 |
CS{safeIs = [], |
271 |
safeEs = [], |
|
272 |
hazIs = [], |
|
273 |
hazEs = [], |
|
4651 | 274 |
swrappers = [], |
275 |
uwrappers = [], |
|
6502 | 276 |
safe0_netpair = empty_netpair, |
277 |
safep_netpair = empty_netpair, |
|
278 |
haz_netpair = empty_netpair, |
|
6955 | 279 |
dup_netpair = empty_netpair, |
280 |
xtra_netpair = empty_netpair}; |
|
0 | 281 |
|
15036 | 282 |
fun print_cs (CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, ...}) = |
3546 | 283 |
let val pretty_thms = map Display.pretty_thm in |
9760 | 284 |
[Pretty.big_list "safe introduction rules (intro!):" (pretty_thms safeIs), |
285 |
Pretty.big_list "introduction rules (intro):" (pretty_thms hazIs), |
|
286 |
Pretty.big_list "safe elimination rules (elim!):" (pretty_thms safeEs), |
|
15036 | 287 |
Pretty.big_list "elimination rules (elim):" (pretty_thms hazEs), |
288 |
Pretty.strs ("safe wrappers:" :: map #1 swrappers), |
|
289 |
Pretty.strs ("unsafe wrappers:" :: map #1 uwrappers)] |
|
8727 | 290 |
|> Pretty.chunks |> Pretty.writeln |
3546 | 291 |
end; |
0 | 292 |
|
4653 | 293 |
fun rep_cs (CS args) = args; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
294 |
|
22674 | 295 |
fun appSWrappers (CS {swrappers, ...}) = fold snd swrappers; |
296 |
fun appWrappers (CS {uwrappers, ...}) = fold snd uwrappers; |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
297 |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
298 |
|
1800 | 299 |
(*** Adding (un)safe introduction or elimination rules. |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
300 |
|
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
301 |
In case of overlap, new rules are tried BEFORE old ones!! |
1800 | 302 |
***) |
0 | 303 |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
304 |
(*For use with biresolve_tac. Combines intro rules with swap to handle negated |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
305 |
assumptions. Pairs elim rules with true. *) |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
306 |
fun joinrules (intrs, elims) = |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
307 |
(map (pair true) (elims @ swapify intrs)) @ map (pair false) intrs; |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
308 |
|
12401 | 309 |
fun joinrules' (intrs, elims) = |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
310 |
map (pair true) elims @ map (pair false) intrs; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
311 |
|
10736 | 312 |
(*Priority: prefer rules with fewest subgoals, |
1231 | 313 |
then rules added most recently (preferring the head of the list).*) |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
314 |
fun tag_brls k [] = [] |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
315 |
| tag_brls k (brl::brls) = |
10736 | 316 |
(1000000*subgoals_of_brl brl + k, brl) :: |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
317 |
tag_brls (k+1) brls; |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
318 |
|
12401 | 319 |
fun tag_brls' _ _ [] = [] |
320 |
| tag_brls' w k (brl::brls) = ((w, k), brl) :: tag_brls' w (k + 1) brls; |
|
10736 | 321 |
|
23178 | 322 |
fun insert_tagged_list rls = fold_rev Tactic.insert_tagged_brl rls; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
323 |
|
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
324 |
(*Insert into netpair that already has nI intr rules and nE elim rules. |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
325 |
Count the intr rules double (to account for swapify). Negate to give the |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
326 |
new insertions the lowest priority.*) |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
327 |
fun insert (nI, nE) = insert_tagged_list o (tag_brls (~(2*nI+nE))) o joinrules; |
12401 | 328 |
fun insert' w (nI, nE) = insert_tagged_list o tag_brls' w (~(nI + nE)) o joinrules'; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
329 |
|
23178 | 330 |
fun delete_tagged_list rls = fold_rev Tactic.delete_tagged_brl rls; |
12362 | 331 |
fun delete x = delete_tagged_list (joinrules x); |
12401 | 332 |
fun delete' x = delete_tagged_list (joinrules' x); |
1800 | 333 |
|
22360
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
22095
diff
changeset
|
334 |
val mem_thm = member Thm.eq_thm_prop |
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents:
22095
diff
changeset
|
335 |
and rem_thm = remove Thm.eq_thm_prop; |
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
336 |
|
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
337 |
(*Warn if the rule is already present ELSEWHERE in the claset. The addition |
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
338 |
is still allowed.*) |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
339 |
fun warn_dup th (CS{safeIs, safeEs, hazIs, hazEs, ...}) = |
18691 | 340 |
if mem_thm safeIs th then |
26928 | 341 |
warning ("Rule already declared as safe introduction (intro!)\n" ^ Display.string_of_thm th) |
18691 | 342 |
else if mem_thm safeEs th then |
26928 | 343 |
warning ("Rule already declared as safe elimination (elim!)\n" ^ Display.string_of_thm th) |
18691 | 344 |
else if mem_thm hazIs th then |
26928 | 345 |
warning ("Rule already declared as introduction (intro)\n" ^ Display.string_of_thm th) |
18691 | 346 |
else if mem_thm hazEs th then |
26928 | 347 |
warning ("Rule already declared as elimination (elim)\n" ^ Display.string_of_thm th) |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
348 |
else (); |
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
349 |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
350 |
|
1800 | 351 |
(*** Safe rules ***) |
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
352 |
|
18691 | 353 |
fun addSI w th |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
354 |
(cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
355 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 356 |
if mem_thm safeIs th then |
26928 | 357 |
(warning ("Ignoring duplicate safe introduction (intro!)\n" ^ Display.string_of_thm th); |
9938 | 358 |
cs) |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
359 |
else |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
360 |
let val th' = flat_rule th |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
361 |
val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*) |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
362 |
List.partition Thm.no_prems [th'] |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
363 |
val nI = length safeIs + 1 |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
364 |
and nE = length safeEs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
365 |
in warn_dup th cs; |
9938 | 366 |
CS{safeIs = th::safeIs, |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
367 |
safe0_netpair = insert (nI,nE) (safe0_rls, []) safe0_netpair, |
9938 | 368 |
safep_netpair = insert (nI,nE) (safep_rls, []) safep_netpair, |
369 |
safeEs = safeEs, |
|
370 |
hazIs = hazIs, |
|
371 |
hazEs = hazEs, |
|
372 |
swrappers = swrappers, |
|
373 |
uwrappers = uwrappers, |
|
374 |
haz_netpair = haz_netpair, |
|
375 |
dup_netpair = dup_netpair, |
|
18691 | 376 |
xtra_netpair = insert' (the_default 0 w) (nI,nE) ([th], []) xtra_netpair} |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
377 |
end; |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
378 |
|
18691 | 379 |
fun addSE w th |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
380 |
(cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
381 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 382 |
if mem_thm safeEs th then |
26928 | 383 |
(warning ("Ignoring duplicate safe elimination (elim!)\n" ^ Display.string_of_thm th); |
9938 | 384 |
cs) |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
385 |
else if has_fewer_prems 1 th then |
26928 | 386 |
error("Ill-formed elimination rule\n" ^ Display.string_of_thm th) |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
387 |
else |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
388 |
let |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
389 |
val th' = classical_rule (flat_rule th) |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
390 |
val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
391 |
List.partition (fn rl => nprems_of rl=1) [th'] |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
392 |
val nI = length safeIs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
393 |
and nE = length safeEs + 1 |
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
394 |
in warn_dup th cs; |
9938 | 395 |
CS{safeEs = th::safeEs, |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
396 |
safe0_netpair = insert (nI,nE) ([], safe0_rls) safe0_netpair, |
9938 | 397 |
safep_netpair = insert (nI,nE) ([], safep_rls) safep_netpair, |
398 |
safeIs = safeIs, |
|
399 |
hazIs = hazIs, |
|
400 |
hazEs = hazEs, |
|
401 |
swrappers = swrappers, |
|
402 |
uwrappers = uwrappers, |
|
403 |
haz_netpair = haz_netpair, |
|
404 |
dup_netpair = dup_netpair, |
|
18691 | 405 |
xtra_netpair = insert' (the_default 0 w) (nI,nE) ([], [th]) xtra_netpair} |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
406 |
end; |
0 | 407 |
|
18691 | 408 |
fun cs addSIs ths = fold_rev (addSI NONE) ths cs; |
409 |
fun cs addSEs ths = fold_rev (addSE NONE) ths cs; |
|
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
410 |
|
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
411 |
fun make_elim th = |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
412 |
if has_fewer_prems 1 th then |
26928 | 413 |
error("Ill-formed destruction rule\n" ^ Display.string_of_thm th) |
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
414 |
else Tactic.make_elim th; |
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
17057
diff
changeset
|
415 |
|
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
416 |
fun cs addSDs ths = cs addSEs (map make_elim ths); |
0 | 417 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
418 |
|
1800 | 419 |
(*** Hazardous (unsafe) rules ***) |
0 | 420 |
|
18691 | 421 |
fun addI w th |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
422 |
(cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
423 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 424 |
if mem_thm hazIs th then |
26928 | 425 |
(warning ("Ignoring duplicate introduction (intro)\n" ^ Display.string_of_thm th); |
9938 | 426 |
cs) |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
427 |
else |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
428 |
let val th' = flat_rule th |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
429 |
val nI = length hazIs + 1 |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
430 |
and nE = length hazEs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
431 |
in warn_dup th cs; |
9938 | 432 |
CS{hazIs = th::hazIs, |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
433 |
haz_netpair = insert (nI,nE) ([th'], []) haz_netpair, |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
434 |
dup_netpair = insert (nI,nE) (map dup_intr [th'], []) dup_netpair, |
10736 | 435 |
safeIs = safeIs, |
9938 | 436 |
safeEs = safeEs, |
437 |
hazEs = hazEs, |
|
438 |
swrappers = swrappers, |
|
439 |
uwrappers = uwrappers, |
|
440 |
safe0_netpair = safe0_netpair, |
|
441 |
safep_netpair = safep_netpair, |
|
18691 | 442 |
xtra_netpair = insert' (the_default 1 w) (nI,nE) ([th], []) xtra_netpair} |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
443 |
end |
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
444 |
handle THM("RSN: no unifiers",_,_) => (*from dup_intr*) |
26928 | 445 |
error ("Ill-formed introduction rule\n" ^ Display.string_of_thm th); |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
446 |
|
18691 | 447 |
fun addE w th |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
448 |
(cs as CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
449 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 450 |
if mem_thm hazEs th then |
26928 | 451 |
(warning ("Ignoring duplicate elimination (elim)\n" ^ Display.string_of_thm th); |
9938 | 452 |
cs) |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
453 |
else if has_fewer_prems 1 th then |
26928 | 454 |
error("Ill-formed elimination rule\n" ^ Display.string_of_thm th) |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
455 |
else |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
456 |
let |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
457 |
val th' = classical_rule (flat_rule th) |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
458 |
val nI = length hazIs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
459 |
and nE = length hazEs + 1 |
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
460 |
in warn_dup th cs; |
9938 | 461 |
CS{hazEs = th::hazEs, |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
462 |
haz_netpair = insert (nI,nE) ([], [th']) haz_netpair, |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
463 |
dup_netpair = insert (nI,nE) ([], map dup_elim [th']) dup_netpair, |
10736 | 464 |
safeIs = safeIs, |
9938 | 465 |
safeEs = safeEs, |
466 |
hazIs = hazIs, |
|
467 |
swrappers = swrappers, |
|
468 |
uwrappers = uwrappers, |
|
469 |
safe0_netpair = safe0_netpair, |
|
470 |
safep_netpair = safep_netpair, |
|
18691 | 471 |
xtra_netpair = insert' (the_default 1 w) (nI,nE) ([], [th]) xtra_netpair} |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
472 |
end; |
0 | 473 |
|
18691 | 474 |
fun cs addIs ths = fold_rev (addI NONE) ths cs; |
475 |
fun cs addEs ths = fold_rev (addE NONE) ths cs; |
|
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
476 |
|
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
477 |
fun cs addDs ths = cs addEs (map make_elim ths); |
0 | 478 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
479 |
|
10736 | 480 |
(*** Deletion of rules |
1800 | 481 |
Working out what to delete, requires repeating much of the code used |
9938 | 482 |
to insert. |
1800 | 483 |
***) |
484 |
||
10736 | 485 |
fun delSI th |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
486 |
(cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
9938 | 487 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 488 |
if mem_thm safeIs th then |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
489 |
let val th' = flat_rule th |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
490 |
val (safe0_rls, safep_rls) = List.partition Thm.no_prems [th'] |
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
491 |
in CS{safe0_netpair = delete (safe0_rls, []) safe0_netpair, |
9938 | 492 |
safep_netpair = delete (safep_rls, []) safep_netpair, |
18691 | 493 |
safeIs = rem_thm th safeIs, |
9938 | 494 |
safeEs = safeEs, |
495 |
hazIs = hazIs, |
|
496 |
hazEs = hazEs, |
|
497 |
swrappers = swrappers, |
|
498 |
uwrappers = uwrappers, |
|
499 |
haz_netpair = haz_netpair, |
|
500 |
dup_netpair = dup_netpair, |
|
12401 | 501 |
xtra_netpair = delete' ([th], []) xtra_netpair} |
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
502 |
end |
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
503 |
else cs; |
1800 | 504 |
|
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
505 |
fun delSE th |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
506 |
(cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
9938 | 507 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 508 |
if mem_thm safeEs th then |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
509 |
let |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
510 |
val th' = classical_rule (flat_rule th) |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
511 |
val (safe0_rls, safep_rls) = List.partition (fn rl => nprems_of rl=1) [th'] |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
512 |
in CS{safe0_netpair = delete ([], safe0_rls) safe0_netpair, |
9938 | 513 |
safep_netpair = delete ([], safep_rls) safep_netpair, |
514 |
safeIs = safeIs, |
|
18691 | 515 |
safeEs = rem_thm th safeEs, |
9938 | 516 |
hazIs = hazIs, |
517 |
hazEs = hazEs, |
|
518 |
swrappers = swrappers, |
|
519 |
uwrappers = uwrappers, |
|
520 |
haz_netpair = haz_netpair, |
|
521 |
dup_netpair = dup_netpair, |
|
12401 | 522 |
xtra_netpair = delete' ([], [th]) xtra_netpair} |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
523 |
end |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
524 |
else cs; |
1800 | 525 |
|
526 |
||
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
527 |
fun delI th |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
528 |
(cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
9938 | 529 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
18691 | 530 |
if mem_thm hazIs th then |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
531 |
let val th' = flat_rule th |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
532 |
in CS{haz_netpair = delete ([th'], []) haz_netpair, |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
533 |
dup_netpair = delete ([dup_intr th'], []) dup_netpair, |
10736 | 534 |
safeIs = safeIs, |
9938 | 535 |
safeEs = safeEs, |
18691 | 536 |
hazIs = rem_thm th hazIs, |
9938 | 537 |
hazEs = hazEs, |
538 |
swrappers = swrappers, |
|
539 |
uwrappers = uwrappers, |
|
540 |
safe0_netpair = safe0_netpair, |
|
541 |
safep_netpair = safep_netpair, |
|
12401 | 542 |
xtra_netpair = delete' ([th], []) xtra_netpair} |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
543 |
end |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
544 |
else cs |
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
545 |
handle THM("RSN: no unifiers",_,_) => (*from dup_intr*) |
26928 | 546 |
error ("Ill-formed introduction rule\n" ^ Display.string_of_thm th); |
18557
60a0f9caa0a2
Provers/classical: stricter checks to ensure that supplied intro, dest and
paulson
parents:
18534
diff
changeset
|
547 |
|
1800 | 548 |
|
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
549 |
fun delE th |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
550 |
(cs as CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
9938 | 551 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
552 |
if mem_thm hazEs th then |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
553 |
let val th' = classical_rule (flat_rule th) |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
554 |
in CS{haz_netpair = delete ([], [th']) haz_netpair, |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
555 |
dup_netpair = delete ([], [dup_elim th']) dup_netpair, |
10736 | 556 |
safeIs = safeIs, |
9938 | 557 |
safeEs = safeEs, |
558 |
hazIs = hazIs, |
|
18691 | 559 |
hazEs = rem_thm th hazEs, |
9938 | 560 |
swrappers = swrappers, |
561 |
uwrappers = uwrappers, |
|
562 |
safe0_netpair = safe0_netpair, |
|
563 |
safep_netpair = safep_netpair, |
|
12401 | 564 |
xtra_netpair = delete' ([], [th]) xtra_netpair} |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
565 |
end |
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
566 |
else cs; |
1800 | 567 |
|
2813
cc4c816dafdc
delrules now deletes ALL occurrences of a rule, since it may appear in any of
paulson
parents:
2689
diff
changeset
|
568 |
(*Delete ALL occurrences of "th" in the claset (perhaps from several lists)*) |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
569 |
fun delrule th (cs as CS {safeIs, safeEs, hazIs, hazEs, ...}) = |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
570 |
let val th' = Tactic.make_elim th in |
18691 | 571 |
if mem_thm safeIs th orelse mem_thm safeEs th orelse |
572 |
mem_thm hazIs th orelse mem_thm hazEs th orelse |
|
573 |
mem_thm safeEs th' orelse mem_thm hazEs th' |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
574 |
then delSI th (delSE th (delI th (delE th (delSE th' (delE th' cs))))) |
26928 | 575 |
else (warning ("Undeclared classical rule\n" ^ Display.string_of_thm th); cs) |
9938 | 576 |
end; |
1800 | 577 |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
578 |
fun cs delrules ths = fold delrule ths cs; |
1800 | 579 |
|
580 |
||
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
581 |
(*** Modifying the wrapper tacticals ***) |
22674 | 582 |
fun map_swrappers f |
583 |
(CS {safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
|
584 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
|
585 |
CS {safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs, |
|
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
586 |
swrappers = f swrappers, uwrappers = uwrappers, |
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
587 |
safe0_netpair = safe0_netpair, safep_netpair = safep_netpair, |
6955 | 588 |
haz_netpair = haz_netpair, dup_netpair = dup_netpair, xtra_netpair = xtra_netpair}; |
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
589 |
|
22674 | 590 |
fun map_uwrappers f |
591 |
(CS{safeIs, safeEs, hazIs, hazEs, swrappers, uwrappers, |
|
592 |
safe0_netpair, safep_netpair, haz_netpair, dup_netpair, xtra_netpair}) = |
|
593 |
CS {safeIs = safeIs, safeEs = safeEs, hazIs = hazIs, hazEs = hazEs, |
|
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
594 |
swrappers = swrappers, uwrappers = f uwrappers, |
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
595 |
safe0_netpair = safe0_netpair, safep_netpair = safep_netpair, |
6955 | 596 |
haz_netpair = haz_netpair, dup_netpair = dup_netpair, xtra_netpair = xtra_netpair}; |
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
597 |
|
22674 | 598 |
fun update_warn msg (p as (key : string, _)) xs = |
599 |
(if AList.defined (op =) xs key then warning msg else (); |
|
600 |
AList.update (op =) p xs); |
|
601 |
||
602 |
fun delete_warn msg (key : string) xs = |
|
603 |
if AList.defined (op =) xs key then AList.delete (op =) key xs |
|
604 |
else (warning msg; xs); |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
605 |
|
4651 | 606 |
(*Add/replace a safe wrapper*) |
22674 | 607 |
fun cs addSWrapper new_swrapper = map_swrappers |
608 |
(update_warn ("Overwriting safe wrapper " ^ fst new_swrapper) new_swrapper) cs; |
|
4651 | 609 |
|
610 |
(*Add/replace an unsafe wrapper*) |
|
22674 | 611 |
fun cs addWrapper new_uwrapper = map_uwrappers |
612 |
(update_warn ("Overwriting unsafe wrapper " ^ fst new_uwrapper) new_uwrapper) cs; |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
613 |
|
4651 | 614 |
(*Remove a safe wrapper*) |
22674 | 615 |
fun cs delSWrapper name = map_swrappers |
616 |
(delete_warn ("No such safe wrapper in claset: " ^ name) name) cs; |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
617 |
|
4651 | 618 |
(*Remove an unsafe wrapper*) |
22674 | 619 |
fun cs delWrapper name = map_uwrappers |
620 |
(delete_warn ("No such unsafe wrapper in claset: " ^ name) name) cs; |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
621 |
|
11168 | 622 |
(* compose a safe tactic alternatively before/after safe_step_tac *) |
10736 | 623 |
fun cs addSbefore (name, tac1) = |
5523 | 624 |
cs addSWrapper (name, fn tac2 => tac1 ORELSE' tac2); |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
625 |
fun cs addSafter (name, tac2) = |
5523 | 626 |
cs addSWrapper (name, fn tac1 => tac1 ORELSE' tac2); |
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
627 |
|
11168 | 628 |
(*compose a tactic alternatively before/after the step tactic *) |
10736 | 629 |
fun cs addbefore (name, tac1) = |
5523 | 630 |
cs addWrapper (name, fn tac2 => tac1 APPEND' tac2); |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
631 |
fun cs addafter (name, tac2) = |
5523 | 632 |
cs addWrapper (name, fn tac1 => tac1 APPEND' tac2); |
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
633 |
|
10736 | 634 |
fun cs addD2 (name, thm) = |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
635 |
cs addafter (name, datac thm 1); |
10736 | 636 |
fun cs addE2 (name, thm) = |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
637 |
cs addafter (name, eatac thm 1); |
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
638 |
fun cs addSD2 (name, thm) = |
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
639 |
cs addSafter (name, dmatch_tac [thm] THEN' eq_assume_tac); |
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
640 |
fun cs addSE2 (name, thm) = |
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
641 |
cs addSafter (name, ematch_tac [thm] THEN' eq_assume_tac); |
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
642 |
|
1711 | 643 |
(*Merge works by adding all new rules of the 2nd claset into the 1st claset. |
644 |
Merging the term nets may look more efficient, but the rather delicate |
|
645 |
treatment of priority might get muddled up.*) |
|
22674 | 646 |
fun merge_cs (cs as CS {safeIs, safeEs, hazIs, hazEs, ...}, |
24358 | 647 |
cs' as CS {safeIs = safeIs2, safeEs = safeEs2, hazIs = hazIs2, hazEs = hazEs2, |
22674 | 648 |
swrappers, uwrappers, ...}) = |
24358 | 649 |
if pointer_eq (cs, cs') then cs |
650 |
else |
|
651 |
let |
|
652 |
val safeIs' = fold rem_thm safeIs safeIs2; |
|
653 |
val safeEs' = fold rem_thm safeEs safeEs2; |
|
654 |
val hazIs' = fold rem_thm hazIs hazIs2; |
|
655 |
val hazEs' = fold rem_thm hazEs hazEs2; |
|
656 |
val cs1 = cs addSIs safeIs' |
|
657 |
addSEs safeEs' |
|
658 |
addIs hazIs' |
|
659 |
addEs hazEs'; |
|
660 |
val cs2 = map_swrappers |
|
661 |
(fn ws => AList.merge (op =) (K true) (ws, swrappers)) cs1; |
|
662 |
val cs3 = map_uwrappers |
|
663 |
(fn ws => AList.merge (op =) (K true) (ws, uwrappers)) cs2; |
|
664 |
in cs3 end; |
|
1711 | 665 |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
666 |
|
1800 | 667 |
(**** Simple tactics for theorem proving ****) |
0 | 668 |
|
669 |
(*Attack subgoals using safe inferences -- matching, not resolution*) |
|
10736 | 670 |
fun safe_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) = |
4651 | 671 |
appSWrappers cs (FIRST' [ |
9938 | 672 |
eq_assume_tac, |
673 |
eq_mp_tac, |
|
674 |
bimatch_from_nets_tac safe0_netpair, |
|
675 |
FIRST' hyp_subst_tacs, |
|
676 |
bimatch_from_nets_tac safep_netpair]); |
|
0 | 677 |
|
5757 | 678 |
(*Repeatedly attack a subgoal using safe inferences -- it's deterministic!*) |
10736 | 679 |
fun safe_steps_tac cs = REPEAT_DETERM1 o |
9938 | 680 |
(fn i => COND (has_fewer_prems i) no_tac (safe_step_tac cs i)); |
5757 | 681 |
|
0 | 682 |
(*Repeatedly attack subgoals using safe inferences -- it's deterministic!*) |
5757 | 683 |
fun safe_tac cs = REPEAT_DETERM1 (FIRSTGOAL (safe_steps_tac cs)); |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
684 |
|
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
685 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
686 |
(*** Clarify_tac: do safe steps without causing branching ***) |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
687 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
688 |
fun nsubgoalsP n (k,brl) = (subgoals_of_brl brl = n); |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
689 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
690 |
(*version of bimatch_from_nets_tac that only applies rules that |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
691 |
create precisely n subgoals.*) |
10736 | 692 |
fun n_bimatch_from_nets_tac n = |
15570 | 693 |
biresolution_from_nets_tac (Tactic.orderlist o List.filter (nsubgoalsP n)) true; |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
694 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
695 |
fun eq_contr_tac i = ematch_tac [not_elim] i THEN eq_assume_tac i; |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
696 |
val eq_assume_contr_tac = eq_assume_tac ORELSE' eq_contr_tac; |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
697 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
698 |
(*Two-way branching is allowed only if one of the branches immediately closes*) |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
699 |
fun bimatch2_tac netpair i = |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
700 |
n_bimatch_from_nets_tac 2 netpair i THEN |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
701 |
(eq_assume_contr_tac i ORELSE eq_assume_contr_tac (i+1)); |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
702 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
703 |
(*Attack subgoals using safe inferences -- matching, not resolution*) |
10736 | 704 |
fun clarify_step_tac (cs as CS{safe0_netpair,safep_netpair,...}) = |
4651 | 705 |
appSWrappers cs (FIRST' [ |
9938 | 706 |
eq_assume_contr_tac, |
707 |
bimatch_from_nets_tac safe0_netpair, |
|
708 |
FIRST' hyp_subst_tacs, |
|
709 |
n_bimatch_from_nets_tac 1 safep_netpair, |
|
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
710 |
bimatch2_tac safep_netpair]); |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
711 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
712 |
fun clarify_tac cs = SELECT_GOAL (REPEAT_DETERM (clarify_step_tac cs 1)); |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
713 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
714 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
715 |
(*** Unsafe steps instantiate variables or lose information ***) |
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
716 |
|
4066 | 717 |
(*Backtracking is allowed among the various these unsafe ways of |
718 |
proving a subgoal. *) |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
719 |
fun inst0_step_tac (CS{safe0_netpair,safep_netpair,...}) = |
10736 | 720 |
assume_tac APPEND' |
721 |
contr_tac APPEND' |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
722 |
biresolve_from_nets_tac safe0_netpair; |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
723 |
|
4066 | 724 |
(*These unsafe steps could generate more subgoals.*) |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
725 |
fun instp_step_tac (CS{safep_netpair,...}) = |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
726 |
biresolve_from_nets_tac safep_netpair; |
0 | 727 |
|
728 |
(*These steps could instantiate variables and are therefore unsafe.*) |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
729 |
fun inst_step_tac cs = inst0_step_tac cs APPEND' instp_step_tac cs; |
0 | 730 |
|
10736 | 731 |
fun haz_step_tac (CS{haz_netpair,...}) = |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
732 |
biresolve_from_nets_tac haz_netpair; |
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
733 |
|
0 | 734 |
(*Single step for the prover. FAILS unless it makes progress. *) |
10736 | 735 |
fun step_tac cs i = safe_tac cs ORELSE appWrappers cs |
9938 | 736 |
(inst_step_tac cs ORELSE' haz_step_tac cs) i; |
0 | 737 |
|
738 |
(*Using a "safe" rule to instantiate variables is unsafe. This tactic |
|
739 |
allows backtracking from "safe" rules to "unsafe" rules here.*) |
|
10736 | 740 |
fun slow_step_tac cs i = safe_tac cs ORELSE appWrappers cs |
9938 | 741 |
(inst_step_tac cs APPEND' haz_step_tac cs) i; |
0 | 742 |
|
1800 | 743 |
(**** The following tactics all fail unless they solve one goal ****) |
0 | 744 |
|
745 |
(*Dumb but fast*) |
|
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
746 |
fun fast_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
747 |
ObjectLogic.atomize_prems_tac THEN' SELECT_GOAL (DEPTH_SOLVE (step_tac cs 1)); |
0 | 748 |
|
749 |
(*Slower but smarter than fast_tac*) |
|
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
750 |
fun best_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
751 |
ObjectLogic.atomize_prems_tac THEN' |
0 | 752 |
SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (step_tac cs 1)); |
753 |
||
9402 | 754 |
(*even a bit smarter than best_tac*) |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
755 |
fun first_best_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
756 |
ObjectLogic.atomize_prems_tac THEN' |
9402 | 757 |
SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (FIRSTGOAL (step_tac cs))); |
758 |
||
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
759 |
fun slow_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
760 |
ObjectLogic.atomize_prems_tac THEN' |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
761 |
SELECT_GOAL (DEPTH_SOLVE (slow_step_tac cs 1)); |
0 | 762 |
|
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
763 |
fun slow_best_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
764 |
ObjectLogic.atomize_prems_tac THEN' |
0 | 765 |
SELECT_GOAL (BEST_FIRST (has_fewer_prems 1, sizef) (slow_step_tac cs 1)); |
766 |
||
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
767 |
|
10736 | 768 |
(***ASTAR with weight weight_ASTAR, by Norbert Voelker*) |
769 |
val weight_ASTAR = ref 5; |
|
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
770 |
|
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
771 |
fun astar_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
772 |
ObjectLogic.atomize_prems_tac THEN' |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
773 |
SELECT_GOAL |
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
774 |
(ASTAR (has_fewer_prems 1, fn lev => fn thm => size_of_thm thm + !weight_ASTAR * lev) |
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
775 |
(step_tac cs 1)); |
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
776 |
|
10736 | 777 |
fun slow_astar_tac cs = |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
778 |
ObjectLogic.atomize_prems_tac THEN' |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
779 |
SELECT_GOAL |
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
780 |
(ASTAR (has_fewer_prems 1, fn lev => fn thm => size_of_thm thm + !weight_ASTAR * lev) |
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
781 |
(slow_step_tac cs 1)); |
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
782 |
|
1800 | 783 |
(**** Complete tactic, loosely based upon LeanTaP. This tactic is the outcome |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
784 |
of much experimentation! Changing APPEND to ORELSE below would prove |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
785 |
easy theorems faster, but loses completeness -- and many of the harder |
1800 | 786 |
theorems such as 43. ****) |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
787 |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
788 |
(*Non-deterministic! Could always expand the first unsafe connective. |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
789 |
That's hard to implement and did not perform better in experiments, due to |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
790 |
greater search depth required.*) |
10736 | 791 |
fun dup_step_tac (cs as (CS{dup_netpair,...})) = |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
792 |
biresolve_from_nets_tac dup_netpair; |
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
793 |
|
5523 | 794 |
(*Searching to depth m. A variant called nodup_depth_tac appears in clasimp.ML*) |
5757 | 795 |
local |
10736 | 796 |
fun slow_step_tac' cs = appWrappers cs |
9938 | 797 |
(instp_step_tac cs APPEND' dup_step_tac cs); |
10736 | 798 |
in fun depth_tac cs m i state = SELECT_GOAL |
799 |
(safe_steps_tac cs 1 THEN_ELSE |
|
9938 | 800 |
(DEPTH_SOLVE (depth_tac cs m 1), |
801 |
inst0_step_tac cs 1 APPEND COND (K (m=0)) no_tac |
|
802 |
(slow_step_tac' cs 1 THEN DEPTH_SOLVE (depth_tac cs (m-1) 1)) |
|
5757 | 803 |
)) i state; |
804 |
end; |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
805 |
|
10736 | 806 |
(*Search, with depth bound m. |
2173 | 807 |
This is the "entry point", which does safe inferences first.*) |
10736 | 808 |
fun safe_depth_tac cs m = |
809 |
SUBGOAL |
|
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
810 |
(fn (prem,i) => |
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
811 |
let val deti = |
9938 | 812 |
(*No Vars in the goal? No need to backtrack between goals.*) |
813 |
case term_vars prem of |
|
10736 | 814 |
[] => DETERM |
9938 | 815 |
| _::_ => I |
10736 | 816 |
in SELECT_GOAL (TRY (safe_tac cs) THEN |
9938 | 817 |
DEPTH_SOLVE (deti (depth_tac cs m 1))) i |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
818 |
end); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
819 |
|
2868
17a23a62f82a
New DEEPEN allows giving an upper bound for deepen_tac
paulson
parents:
2813
diff
changeset
|
820 |
fun deepen_tac cs = DEEPEN (2,10) (safe_depth_tac cs); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
821 |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
822 |
|
1724 | 823 |
|
15036 | 824 |
(** context dependent claset components **) |
825 |
||
826 |
datatype context_cs = ContextCS of |
|
827 |
{swrappers: (string * (Proof.context -> wrapper)) list, |
|
828 |
uwrappers: (string * (Proof.context -> wrapper)) list}; |
|
829 |
||
830 |
fun context_cs ctxt cs (ContextCS {swrappers, uwrappers}) = |
|
831 |
let |
|
832 |
fun add_wrapper add (name, f) claset = add (claset, (name, f ctxt)); |
|
833 |
in |
|
22674 | 834 |
cs |
835 |
|> fold_rev (add_wrapper (op addSWrapper)) swrappers |
|
15036 | 836 |
|> fold_rev (add_wrapper (op addWrapper)) uwrappers |
837 |
end; |
|
838 |
||
839 |
fun make_context_cs (swrappers, uwrappers) = |
|
840 |
ContextCS {swrappers = swrappers, uwrappers = uwrappers}; |
|
841 |
||
842 |
val empty_context_cs = make_context_cs ([], []); |
|
843 |
||
844 |
fun merge_context_cs (ctxt_cs1, ctxt_cs2) = |
|
24358 | 845 |
if pointer_eq (ctxt_cs1, ctxt_cs2) then ctxt_cs1 |
846 |
else |
|
847 |
let |
|
848 |
val ContextCS {swrappers = swrappers1, uwrappers = uwrappers1} = ctxt_cs1; |
|
849 |
val ContextCS {swrappers = swrappers2, uwrappers = uwrappers2} = ctxt_cs2; |
|
850 |
val swrappers' = AList.merge (op =) (K true) (swrappers1, swrappers2); |
|
851 |
val uwrappers' = AList.merge (op =) (K true) (uwrappers1, uwrappers2); |
|
852 |
in make_context_cs (swrappers', uwrappers') end; |
|
15036 | 853 |
|
854 |
||
855 |
||
17880 | 856 |
(** claset data **) |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
857 |
|
24021 | 858 |
(* global clasets *) |
1724 | 859 |
|
16424 | 860 |
structure GlobalClaset = TheoryDataFun |
22846 | 861 |
( |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
862 |
type T = claset * context_cs; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
863 |
val empty = (empty_cs, empty_context_cs); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
864 |
val copy = I; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
865 |
val extend = I; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
866 |
fun merge _ ((cs1, ctxt_cs1), (cs2, ctxt_cs2)) = |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
867 |
(merge_cs (cs1, cs2), merge_context_cs (ctxt_cs1, ctxt_cs2)); |
22846 | 868 |
); |
1724 | 869 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
870 |
val get_claset = #1 o GlobalClaset.get; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
871 |
val map_claset = GlobalClaset.map o apfst; |
17880 | 872 |
|
15036 | 873 |
val get_context_cs = #2 o GlobalClaset.get o ProofContext.theory_of; |
874 |
fun map_context_cs f = GlobalClaset.map (apsnd |
|
875 |
(fn ContextCS {swrappers, uwrappers} => make_context_cs (f (swrappers, uwrappers)))); |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
876 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
877 |
fun change_claset f = Context.>> (Context.map_theory (map_claset f)); |
1800 | 878 |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
879 |
fun claset_of thy = |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
880 |
let val (cs, ctxt_cs) = GlobalClaset.get thy |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
881 |
in context_cs (ProofContext.init thy) cs (ctxt_cs) end; |
26425
6561665c5cb1
renamed ML_Context.the_context to ML_Context.the_global_context;
wenzelm
parents:
26412
diff
changeset
|
882 |
val claset = claset_of o ML_Context.the_global_context; |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
883 |
|
17880 | 884 |
fun CLASET tacf st = tacf (claset_of (Thm.theory_of_thm st)) st; |
885 |
fun CLASET' tacf i st = tacf (claset_of (Thm.theory_of_thm st)) i st; |
|
1724 | 886 |
|
17880 | 887 |
fun AddDs args = change_claset (fn cs => cs addDs args); |
888 |
fun AddEs args = change_claset (fn cs => cs addEs args); |
|
889 |
fun AddIs args = change_claset (fn cs => cs addIs args); |
|
890 |
fun AddSDs args = change_claset (fn cs => cs addSDs args); |
|
891 |
fun AddSEs args = change_claset (fn cs => cs addSEs args); |
|
892 |
fun AddSIs args = change_claset (fn cs => cs addSIs args); |
|
893 |
fun Delrules args = change_claset (fn cs => cs delrules args); |
|
3727
ed63c05d7992
Added Safe_tac; all other default claset tactics now dereference "claset"
paulson
parents:
3705
diff
changeset
|
894 |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
895 |
|
15036 | 896 |
(* context dependent components *) |
897 |
||
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
898 |
fun add_context_safe_wrapper wrapper = map_context_cs (apfst ((AList.update (op =) wrapper))); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
899 |
fun del_context_safe_wrapper name = map_context_cs (apfst ((AList.delete (op =) name))); |
15036 | 900 |
|
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
901 |
fun add_context_unsafe_wrapper wrapper = map_context_cs (apsnd ((AList.update (op =) wrapper))); |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
902 |
fun del_context_unsafe_wrapper name = map_context_cs (apsnd ((AList.delete (op =) name))); |
15036 | 903 |
|
904 |
||
24021 | 905 |
(* local clasets *) |
5841 | 906 |
|
16424 | 907 |
structure LocalClaset = ProofDataFun |
22846 | 908 |
( |
5841 | 909 |
type T = claset; |
17880 | 910 |
val init = get_claset; |
22846 | 911 |
); |
5841 | 912 |
|
15036 | 913 |
fun local_claset_of ctxt = |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
914 |
context_cs ctxt (LocalClaset.get ctxt) (get_context_cs ctxt); |
22846 | 915 |
|
5841 | 916 |
|
24021 | 917 |
(* generic clasets *) |
918 |
||
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
919 |
val get_cs = Context.cases claset_of local_claset_of; |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
920 |
fun map_cs f = Context.mapping (map_claset f) (LocalClaset.map f); |
24021 | 921 |
|
922 |
||
5885 | 923 |
(* attributes *) |
924 |
||
18728 | 925 |
fun attrib f = Thm.declaration_attribute (fn th => |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
926 |
Context.mapping (map_claset (f th)) (LocalClaset.map (f th))); |
5885 | 927 |
|
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
928 |
fun safe_dest w = attrib (addSE w o make_elim); |
18691 | 929 |
val safe_elim = attrib o addSE; |
930 |
val safe_intro = attrib o addSI; |
|
21689
58abd6d8abd1
Removal of theorem tagging, which the ATP linkup no longer requires,
paulson
parents:
21687
diff
changeset
|
931 |
fun haz_dest w = attrib (addE w o make_elim); |
18691 | 932 |
val haz_elim = attrib o addE; |
933 |
val haz_intro = attrib o addI; |
|
934 |
val rule_del = attrib delrule o ContextRules.rule_del; |
|
5885 | 935 |
|
936 |
||
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
937 |
(* tactics referring to the implicit claset *) |
1800 | 938 |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
939 |
(*the abstraction over the proof state delays the dereferencing*) |
9938 | 940 |
fun Safe_tac st = safe_tac (claset()) st; |
941 |
fun Safe_step_tac i st = safe_step_tac (claset()) i st; |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
942 |
fun Clarify_step_tac i st = clarify_step_tac (claset()) i st; |
9938 | 943 |
fun Clarify_tac i st = clarify_tac (claset()) i st; |
944 |
fun Step_tac i st = step_tac (claset()) i st; |
|
945 |
fun Fast_tac i st = fast_tac (claset()) i st; |
|
946 |
fun Best_tac i st = best_tac (claset()) i st; |
|
947 |
fun Slow_tac i st = slow_tac (claset()) i st; |
|
948 |
fun Slow_best_tac i st = slow_best_tac (claset()) i st; |
|
949 |
fun Deepen_tac m = deepen_tac (claset()) m; |
|
2066 | 950 |
|
1800 | 951 |
|
10736 | 952 |
end; |
5841 | 953 |
|
954 |
||
955 |
||
5885 | 956 |
(** concrete syntax of attributes **) |
5841 | 957 |
|
958 |
val introN = "intro"; |
|
959 |
val elimN = "elim"; |
|
960 |
val destN = "dest"; |
|
9938 | 961 |
val ruleN = "rule"; |
5841 | 962 |
|
963 |
val setup_attrs = Attrib.add_attributes |
|
18728 | 964 |
[("swapped", swapped, "classical swap of introduction rule"), |
965 |
(destN, ContextRules.add_args safe_dest haz_dest ContextRules.dest_query, |
|
18688 | 966 |
"declaration of Classical destruction rule"), |
18728 | 967 |
(elimN, ContextRules.add_args safe_elim haz_elim ContextRules.elim_query, |
18688 | 968 |
"declaration of Classical elimination rule"), |
18728 | 969 |
(introN, ContextRules.add_args safe_intro haz_intro ContextRules.intro_query, |
18688 | 970 |
"declaration of Classical introduction rule"), |
18728 | 971 |
(ruleN, Attrib.syntax (Scan.lift Args.del >> K rule_del), |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
972 |
"remove declaration of intro/elim/dest rule")]; |
5841 | 973 |
|
974 |
||
975 |
||
7230 | 976 |
(** proof methods **) |
977 |
||
14605
9de4d64eee3b
'instance' and intro_classes now handle general sorts;
wenzelm
parents:
13525
diff
changeset
|
978 |
fun METHOD_CLASET tac ctxt = |
15036 | 979 |
Method.METHOD (tac ctxt (local_claset_of ctxt)); |
5841 | 980 |
|
8098 | 981 |
fun METHOD_CLASET' tac ctxt = |
15036 | 982 |
Method.METHOD (HEADGOAL o tac ctxt (local_claset_of ctxt)); |
7230 | 983 |
|
984 |
||
985 |
local |
|
986 |
||
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
987 |
fun some_rule_tac ctxt (CS {xtra_netpair, ...}) facts = SUBGOAL (fn (goal, i) => |
5841 | 988 |
let |
12401 | 989 |
val [rules1, rules2, rules4] = ContextRules.find_rules false facts goal ctxt; |
990 |
val rules3 = ContextRules.find_rules_netpair true facts goal xtra_netpair; |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
991 |
val rules = rules1 @ rules2 @ rules3 @ rules4; |
18223 | 992 |
val ruleq = Drule.multi_resolves facts rules; |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
993 |
in |
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
994 |
Method.trace ctxt rules; |
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
995 |
fn st => Seq.flat (Seq.map (fn rule => Tactic.rtac rule i st) ruleq) |
18834 | 996 |
end) |
21687 | 997 |
THEN_ALL_NEW Goal.norm_hhf_tac; |
5841 | 998 |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
999 |
fun rule_tac [] ctxt cs facts = some_rule_tac ctxt cs facts |
10394 | 1000 |
| rule_tac rules _ _ facts = Method.rule_tac rules facts; |
7281 | 1001 |
|
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
1002 |
fun default_tac rules ctxt cs facts = |
14605
9de4d64eee3b
'instance' and intro_classes now handle general sorts;
wenzelm
parents:
13525
diff
changeset
|
1003 |
HEADGOAL (rule_tac rules ctxt cs facts) ORELSE |
26470 | 1004 |
Class.default_intro_tac ctxt facts; |
10309 | 1005 |
|
7230 | 1006 |
in |
7281 | 1007 |
val rule = METHOD_CLASET' o rule_tac; |
14605
9de4d64eee3b
'instance' and intro_classes now handle general sorts;
wenzelm
parents:
13525
diff
changeset
|
1008 |
val default = METHOD_CLASET o default_tac; |
7230 | 1009 |
end; |
5841 | 1010 |
|
1011 |
||
7230 | 1012 |
(* contradiction method *) |
6502 | 1013 |
|
7425 | 1014 |
val contradiction = Method.rule [Data.not_elim, Data.not_elim COMP Drule.swap_prems_rl]; |
6502 | 1015 |
|
1016 |
||
1017 |
(* automatic methods *) |
|
5841 | 1018 |
|
5927 | 1019 |
val cla_modifiers = |
18728 | 1020 |
[Args.$$$ destN -- Args.bang_colon >> K ((I, safe_dest NONE): Method.modifier), |
1021 |
Args.$$$ destN -- Args.colon >> K (I, haz_dest NONE), |
|
1022 |
Args.$$$ elimN -- Args.bang_colon >> K (I, safe_elim NONE), |
|
1023 |
Args.$$$ elimN -- Args.colon >> K (I, haz_elim NONE), |
|
1024 |
Args.$$$ introN -- Args.bang_colon >> K (I, safe_intro NONE), |
|
1025 |
Args.$$$ introN -- Args.colon >> K (I, haz_intro NONE), |
|
1026 |
Args.del -- Args.colon >> K (I, rule_del)]; |
|
5927 | 1027 |
|
7559 | 1028 |
fun cla_meth tac prems ctxt = Method.METHOD (fn facts => |
15036 | 1029 |
ALLGOALS (Method.insert_tac (prems @ facts)) THEN tac (local_claset_of ctxt)); |
7132 | 1030 |
|
7559 | 1031 |
fun cla_meth' tac prems ctxt = Method.METHOD (fn facts => |
15036 | 1032 |
HEADGOAL (Method.insert_tac (prems @ facts) THEN' tac (local_claset_of ctxt))); |
5841 | 1033 |
|
7559 | 1034 |
val cla_method = Method.bang_sectioned_args cla_modifiers o cla_meth; |
1035 |
val cla_method' = Method.bang_sectioned_args cla_modifiers o cla_meth'; |
|
5841 | 1036 |
|
1037 |
||
1038 |
||
1039 |
(** setup_methods **) |
|
1040 |
||
1041 |
val setup_methods = Method.add_methods |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
1042 |
[("default", Method.thms_ctxt_args default, "apply some intro/elim rule (potentially classical)"), |
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
1043 |
("rule", Method.thms_ctxt_args rule, "apply some intro/elim rule (potentially classical)"), |
6502 | 1044 |
("contradiction", Method.no_args contradiction, "proof by contradiction"), |
10821 | 1045 |
("clarify", cla_method' (CHANGED_PROP oo clarify_tac), "repeatedly apply safe steps"), |
7004 | 1046 |
("fast", cla_method' fast_tac, "classical prover (depth-first)"), |
9806 | 1047 |
("slow", cla_method' slow_tac, "classical prover (slow depth-first)"), |
9773 | 1048 |
("best", cla_method' best_tac, "classical prover (best-first)"), |
18015 | 1049 |
("deepen", cla_method' (fn cs => deepen_tac cs 4), "classical prover (iterative deepening)"), |
10821 | 1050 |
("safe", cla_method (CHANGED_PROP o safe_tac), "classical prover (apply safe rules)")]; |
5841 | 1051 |
|
1052 |
||
1053 |
||
1054 |
(** theory setup **) |
|
1055 |
||
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
1056 |
val setup = setup_attrs #> setup_methods; |
5841 | 1057 |
|
1058 |
||
8667 | 1059 |
|
1060 |
(** outer syntax **) |
|
1061 |
||
24867 | 1062 |
val _ = |
8667 | 1063 |
OuterSyntax.improper_command "print_claset" "print context of Classical Reasoner" |
17057 | 1064 |
OuterKeyword.diag |
26497
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
1065 |
(Scan.succeed (Toplevel.no_timing o Toplevel.unknown_context o |
1873915c64a9
purely functional setup of claset/simpset/clasimpset;
wenzelm
parents:
26470
diff
changeset
|
1066 |
Toplevel.keep (print_cs o local_claset_of o Toplevel.context_of))); |
8667 | 1067 |
|
5841 | 1068 |
end; |