author | wenzelm |
Wed, 09 Jul 2025 12:48:44 +0200 | |
changeset 82833 | 13a8c49a48a0 |
parent 82832 | bf1bc2932343 |
child 82838 | ca600cbfd4bf |
permissions | -rw-r--r-- |
9938 | 1 |
(* Title: Provers/classical.ML |
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
0 | 3 |
|
4 |
Theorem prover for classical reasoning, including predicate calculus, set |
|
5 |
theory, etc. |
|
6 |
||
60943 | 7 |
Rules must be classified as intro, elim, safe, unsafe. |
0 | 8 |
|
9 |
A rule is unsafe unless it can be applied blindly without harmful results. |
|
10 |
For a rule to be safe, its premises and conclusion should be logically |
|
11 |
equivalent. There should be no variables in the premises that are not in |
|
12 |
the conclusion. |
|
13 |
*) |
|
14 |
||
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
15 |
(*higher precedence than := facilitates use of references*) |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
16 |
infix 4 addSIs addSEs addSDs addIs addEs addDs delrules |
4651 | 17 |
addSWrapper delSWrapper addWrapper delWrapper |
11181
d04f57b91166
renamed addaltern to addafter, addSaltern to addSafter
oheimb
parents:
11168
diff
changeset
|
18 |
addSbefore addSafter addbefore addafter |
5523 | 19 |
addD2 addE2 addSD2 addSE2; |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
20 |
|
0 | 21 |
signature CLASSICAL_DATA = |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
22 |
sig |
42790 | 23 |
val imp_elim: thm (* P --> Q ==> (~ R ==> P) ==> (Q ==> R) ==> R *) |
24 |
val not_elim: thm (* ~P ==> P ==> R *) |
|
25 |
val swap: thm (* ~ P ==> (~ R ==> P) ==> R *) |
|
26 |
val classical: thm (* (~ P ==> P) ==> P *) |
|
50062 | 27 |
val sizef: thm -> int (* size function for BEST_FIRST, typically size_of_thm *) |
51798 | 28 |
val hyp_subst_tacs: (Proof.context -> int -> tactic) list (* optional tactics for |
29 |
substitution in the hypotheses; assumed to be safe! *) |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
30 |
end; |
0 | 31 |
|
5841 | 32 |
signature BASIC_CLASSICAL = |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
33 |
sig |
42812 | 34 |
type wrapper = (int -> tactic) -> int -> tactic |
0 | 35 |
type claset |
42793 | 36 |
val print_claset: Proof.context -> unit |
37 |
val addDs: Proof.context * thm list -> Proof.context |
|
38 |
val addEs: Proof.context * thm list -> Proof.context |
|
39 |
val addIs: Proof.context * thm list -> Proof.context |
|
40 |
val addSDs: Proof.context * thm list -> Proof.context |
|
41 |
val addSEs: Proof.context * thm list -> Proof.context |
|
42 |
val addSIs: Proof.context * thm list -> Proof.context |
|
43 |
val delrules: Proof.context * thm list -> Proof.context |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
44 |
val addSWrapper: Proof.context * (string * (Proof.context -> wrapper)) -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
45 |
val delSWrapper: Proof.context * string -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
46 |
val addWrapper: Proof.context * (string * (Proof.context -> wrapper)) -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
47 |
val delWrapper: Proof.context * string -> Proof.context |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
48 |
val addSbefore: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
49 |
val addSafter: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
50 |
val addbefore: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
51 |
val addafter: Proof.context * (string * (Proof.context -> int -> tactic)) -> Proof.context |
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
52 |
val addD2: Proof.context * (string * thm) -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
53 |
val addE2: Proof.context * (string * thm) -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
54 |
val addSD2: Proof.context * (string * thm) -> Proof.context |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
55 |
val addSE2: Proof.context * (string * thm) -> Proof.context |
42793 | 56 |
val appSWrappers: Proof.context -> wrapper |
57 |
val appWrappers: Proof.context -> wrapper |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
58 |
|
42790 | 59 |
val claset_of: Proof.context -> claset |
42793 | 60 |
val put_claset: claset -> Proof.context -> Proof.context |
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
61 |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
62 |
val map_theory_claset: (Proof.context -> Proof.context) -> theory -> theory |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
63 |
|
42793 | 64 |
val fast_tac: Proof.context -> int -> tactic |
65 |
val slow_tac: Proof.context -> int -> tactic |
|
66 |
val astar_tac: Proof.context -> int -> tactic |
|
67 |
val slow_astar_tac: Proof.context -> int -> tactic |
|
68 |
val best_tac: Proof.context -> int -> tactic |
|
69 |
val first_best_tac: Proof.context -> int -> tactic |
|
70 |
val slow_best_tac: Proof.context -> int -> tactic |
|
71 |
val depth_tac: Proof.context -> int -> int -> tactic |
|
72 |
val deepen_tac: Proof.context -> int -> int -> tactic |
|
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
73 |
|
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
74 |
val contr_tac: Proof.context -> int -> tactic |
59970 | 75 |
val dup_elim: Proof.context -> thm -> thm |
42790 | 76 |
val dup_intr: thm -> thm |
42793 | 77 |
val dup_step_tac: Proof.context -> int -> tactic |
58957 | 78 |
val eq_mp_tac: Proof.context -> int -> tactic |
60943 | 79 |
val unsafe_step_tac: Proof.context -> int -> tactic |
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
80 |
val mp_tac: Proof.context -> int -> tactic |
42793 | 81 |
val safe_tac: Proof.context -> tactic |
82 |
val safe_steps_tac: Proof.context -> int -> tactic |
|
83 |
val safe_step_tac: Proof.context -> int -> tactic |
|
84 |
val clarify_tac: Proof.context -> int -> tactic |
|
85 |
val clarify_step_tac: Proof.context -> int -> tactic |
|
86 |
val step_tac: Proof.context -> int -> tactic |
|
87 |
val slow_step_tac: Proof.context -> int -> tactic |
|
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
88 |
val swap_res_tac: Proof.context -> thm list -> int -> tactic |
42793 | 89 |
val inst_step_tac: Proof.context -> int -> tactic |
90 |
val inst0_step_tac: Proof.context -> int -> tactic |
|
91 |
val instp_step_tac: Proof.context -> int -> tactic |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
92 |
end; |
1724 | 93 |
|
5841 | 94 |
signature CLASSICAL = |
95 |
sig |
|
96 |
include BASIC_CLASSICAL |
|
59970 | 97 |
val classical_rule: Proof.context -> thm -> thm |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
98 |
type rl = thm * thm option |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
99 |
type info = {rl: rl, dup_rl: rl} |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
100 |
type rule = thm * info |
42812 | 101 |
val rep_cs: claset -> |
60945 | 102 |
{safeIs: rule Item_Net.T, |
103 |
safeEs: rule Item_Net.T, |
|
104 |
unsafeIs: rule Item_Net.T, |
|
105 |
unsafeEs: rule Item_Net.T, |
|
42812 | 106 |
swrappers: (string * (Proof.context -> wrapper)) list, |
107 |
uwrappers: (string * (Proof.context -> wrapper)) list, |
|
82812
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
108 |
safe0_netpair: Bires.netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
109 |
safep_netpair: Bires.netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
110 |
unsafe_netpair: Bires.netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
111 |
dup_netpair: Bires.netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
112 |
extra_netpair: Bires.netpair} |
24021 | 113 |
val get_cs: Context.generic -> claset |
114 |
val map_cs: (claset -> claset) -> Context.generic -> Context.generic |
|
18728 | 115 |
val safe_dest: int option -> attribute |
116 |
val safe_elim: int option -> attribute |
|
117 |
val safe_intro: int option -> attribute |
|
60943 | 118 |
val unsafe_dest: int option -> attribute |
119 |
val unsafe_elim: int option -> attribute |
|
120 |
val unsafe_intro: int option -> attribute |
|
18728 | 121 |
val rule_del: attribute |
61327 | 122 |
val rule_tac: Proof.context -> thm list -> thm list -> int -> tactic |
123 |
val standard_tac: Proof.context -> thm list -> tactic |
|
30513 | 124 |
val cla_modifiers: Method.modifier parser list |
42793 | 125 |
val cla_method: |
126 |
(Proof.context -> tactic) -> (Proof.context -> Proof.method) context_parser |
|
127 |
val cla_method': |
|
128 |
(Proof.context -> int -> tactic) -> (Proof.context -> Proof.method) context_parser |
|
5841 | 129 |
end; |
130 |
||
0 | 131 |
|
42799 | 132 |
functor Classical(Data: CLASSICAL_DATA): CLASSICAL = |
0 | 133 |
struct |
134 |
||
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
135 |
(** classical elimination rules **) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
136 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
137 |
(* |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
138 |
Classical reasoning requires stronger elimination rules. For |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
139 |
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
|
140 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
141 |
[| 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
|
142 |
|
26938 | 143 |
Such rules can cause fast_tac to fail and blast_tac to report "PROOF |
59119 | 144 |
FAILED"; classical_rule will strengthen this to |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
145 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
146 |
[| 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
|
147 |
*) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
148 |
|
59970 | 149 |
fun classical_rule ctxt rule = |
150 |
if is_some (Object_Logic.elim_concl ctxt rule) then |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
151 |
let |
60817 | 152 |
val thy = Proof_Context.theory_of ctxt; |
42792 | 153 |
val rule' = rule RS Data.classical; |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
154 |
val concl' = Thm.concl_of rule'; |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
155 |
fun redundant_hyp goal = |
19257 | 156 |
concl' aconv Logic.strip_assums_concl goal orelse |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
157 |
(case Logic.strip_assums_hyp goal of |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
158 |
hyp :: hyps => exists (fn t => t aconv hyp) hyps |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
159 |
| _ => false); |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
160 |
val rule'' = |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
161 |
rule' |> ALLGOALS (SUBGOAL (fn (goal, i) => |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
162 |
if i = 1 orelse redundant_hyp goal |
60757 | 163 |
then eresolve_tac ctxt [thin_rl] i |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
164 |
else all_tac)) |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
165 |
|> Seq.hd |
21963 | 166 |
|> Drule.zero_var_indexes; |
60817 | 167 |
in if Thm.equiv_thm thy (rule, rule'') then rule else rule'' end |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
168 |
else rule; |
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
169 |
|
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
170 |
(*flatten nested meta connectives in prems*) |
59970 | 171 |
fun flat_rule ctxt = |
172 |
Conv.fconv_rule (Conv.prems_conv ~1 (Object_Logic.atomize_prems ctxt)); |
|
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
173 |
|
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
174 |
|
1800 | 175 |
(*** Useful tactics for classical reasoning ***) |
0 | 176 |
|
10736 | 177 |
(*Prove goal that assumes both P and ~P. |
4392 | 178 |
No backtracking if it finds an equal assumption. Perhaps should call |
179 |
ematch_tac instead of eresolve_tac, but then cannot prove ZF/cantor.*) |
|
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
180 |
fun contr_tac ctxt = |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
181 |
eresolve_tac ctxt [Data.not_elim] THEN' (eq_assume_tac ORELSE' assume_tac ctxt); |
0 | 182 |
|
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
183 |
(*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
|
184 |
Could do the same thing for P<->Q and P... *) |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
185 |
fun mp_tac ctxt i = |
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
186 |
eresolve_tac ctxt [Data.not_elim, Data.imp_elim] i THEN assume_tac ctxt i; |
0 | 187 |
|
188 |
(*Like mp_tac but instantiates no variables*) |
|
58957 | 189 |
fun eq_mp_tac ctxt i = ematch_tac ctxt [Data.not_elim, Data.imp_elim] i THEN eq_assume_tac i; |
0 | 190 |
|
191 |
(*Creates rules to eliminate ~A, from rules to introduce A*) |
|
82832
bf1bc2932343
more robust: unique result expected, otherwise index calculations will go wrong;
wenzelm
parents:
82831
diff
changeset
|
192 |
fun maybe_swap_rule th = |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
193 |
(case [th] RLN (2, [Data.swap]) of |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
194 |
[] => NONE |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
195 |
| [res] => SOME res |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
196 |
| _ => raise THM ("RSN: multiple unifiers", 2, [th, Data.swap])); |
82832
bf1bc2932343
more robust: unique result expected, otherwise index calculations will go wrong;
wenzelm
parents:
82831
diff
changeset
|
197 |
|
82831 | 198 |
fun swap_rule intr = intr RSN (2, Data.swap); |
199 |
val swapped = Thm.rule_attribute [] (K swap_rule); |
|
0 | 200 |
|
201 |
(*Uses introduction rules in the normal way, or on negated assumptions, |
|
202 |
trying rules in order. *) |
|
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
203 |
fun swap_res_tac ctxt rls = |
61056 | 204 |
let |
82831 | 205 |
fun addrl rl brls = (false, rl) :: (true, swap_rule rl) :: brls; |
61056 | 206 |
in |
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
207 |
assume_tac ctxt ORELSE' |
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
208 |
contr_tac ctxt ORELSE' |
82830 | 209 |
biresolve_tac ctxt (fold_rev (addrl o Thm.transfer' ctxt) rls []) |
42792 | 210 |
end; |
0 | 211 |
|
60943 | 212 |
(*Duplication of unsafe rules, for complete provers*) |
42792 | 213 |
fun dup_intr th = zero_var_indexes (th RS Data.classical); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
214 |
|
59970 | 215 |
fun dup_elim ctxt th = |
216 |
let val rl = (th RSN (2, revcut_rl)) |> Thm.assumption (SOME ctxt) 2 |> Seq.hd; |
|
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
217 |
in rule_by_tactic ctxt (TRYALL (eresolve_tac ctxt [revcut_rl])) rl end; |
36546 | 218 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
219 |
|
1800 | 220 |
(**** Classical rule sets ****) |
0 | 221 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
222 |
type rl = thm * thm option; (*internal form, with possibly swapped version*) |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
223 |
type info = {rl: rl, dup_rl: rl}; |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
224 |
type rule = thm * info; (*external form, internal forms*) |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
225 |
|
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
226 |
fun maybe_swapped_rl th : rl = (th, maybe_swap_rule th); |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
227 |
fun no_swapped_rl th : rl = (th, NONE); |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
228 |
|
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
229 |
fun make_info rl dup_rl : info = {rl = rl, dup_rl = dup_rl}; |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
230 |
fun make_info1 rl : info = make_info rl rl; |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
231 |
|
42812 | 232 |
type wrapper = (int -> tactic) -> int -> tactic; |
233 |
||
0 | 234 |
datatype claset = |
42793 | 235 |
CS of |
60945 | 236 |
{safeIs: rule Item_Net.T, (*safe introduction rules*) |
237 |
safeEs: rule Item_Net.T, (*safe elimination rules*) |
|
238 |
unsafeIs: rule Item_Net.T, (*unsafe introduction rules*) |
|
239 |
unsafeEs: rule Item_Net.T, (*unsafe elimination rules*) |
|
240 |
swrappers: (string * (Proof.context -> wrapper)) list, (*for transforming safe_step_tac*) |
|
241 |
uwrappers: (string * (Proof.context -> wrapper)) list, (*for transforming step_tac*) |
|
82812
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
242 |
safe0_netpair: Bires.netpair, (*nets for trivial cases*) |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
243 |
safep_netpair: Bires.netpair, (*nets for >0 subgoals*) |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
244 |
unsafe_netpair: Bires.netpair, (*nets for unsafe rules*) |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
245 |
dup_netpair: Bires.netpair, (*nets for duplication*) |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
246 |
extra_netpair: Bires.netpair}; (*nets for extra rules*) |
60945 | 247 |
|
248 |
val empty_rules: rule Item_Net.T = |
|
249 |
Item_Net.init (Thm.eq_thm_prop o apply2 #1) (single o Thm.full_prop_of o #1); |
|
0 | 250 |
|
10736 | 251 |
val empty_cs = |
42793 | 252 |
CS |
60945 | 253 |
{safeIs = empty_rules, |
254 |
safeEs = empty_rules, |
|
255 |
unsafeIs = empty_rules, |
|
256 |
unsafeEs = empty_rules, |
|
42793 | 257 |
swrappers = [], |
258 |
uwrappers = [], |
|
82812
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
259 |
safe0_netpair = Bires.empty_netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
260 |
safep_netpair = Bires.empty_netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
261 |
unsafe_netpair = Bires.empty_netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
262 |
dup_netpair = Bires.empty_netpair, |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
263 |
extra_netpair = Bires.empty_netpair}; |
0 | 264 |
|
4653 | 265 |
fun rep_cs (CS args) = args; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
266 |
|
4079
9df5e4f22d96
new implicit claset mechanism based on Sign.sg anytype data;
wenzelm
parents:
4066
diff
changeset
|
267 |
|
1800 | 268 |
(*** Adding (un)safe introduction or elimination rules. |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
269 |
|
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
270 |
In case of overlap, new rules are tried BEFORE old ones!! |
1800 | 271 |
***) |
0 | 272 |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
273 |
fun joinrules (intrs, elims) = map (pair true) elims @ map (pair false) intrs; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
274 |
|
10736 | 275 |
(*Priority: prefer rules with fewest subgoals, |
1231 | 276 |
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
|
277 |
fun tag_brls k [] = [] |
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
278 |
| tag_brls k (brl::brls) = |
82814 | 279 |
({weight = Bires.subgoals_of brl, index = k}, brl) :: tag_brls (k + 1) brls; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
280 |
|
82814 | 281 |
fun tag_weight_brls _ _ [] = [] |
282 |
| tag_weight_brls w k (brl::brls) = |
|
283 |
({weight = w, index = k}, brl) :: tag_weight_brls w (k + 1) brls; |
|
10736 | 284 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
285 |
(*Insert into netpair that already has nI intr rules and nE elim rules. |
82832
bf1bc2932343
more robust: unique result expected, otherwise index calculations will go wrong;
wenzelm
parents:
82831
diff
changeset
|
286 |
Count the intr rules double (to account for swapped rules). Negate to give the |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
287 |
new insertions the lowest priority.*) |
82807 | 288 |
fun insert (nI, nE) = Bires.insert_tagged_rules o (tag_brls (~(2*nI+nE))) o joinrules; |
82814 | 289 |
|
290 |
fun insert_default_weight w0 w (nI, nE) = |
|
82815 | 291 |
Bires.insert_tagged_rules o tag_weight_brls (the_default w0 w) (~(nI + nE)) o single; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
292 |
|
82807 | 293 |
fun delete x = Bires.delete_tagged_rules (joinrules x); |
1800 | 294 |
|
61268 | 295 |
fun bad_thm ctxt msg th = error (msg ^ "\n" ^ Thm.string_of_thm ctxt th); |
42793 | 296 |
|
60945 | 297 |
fun make_elim ctxt th = |
82804 | 298 |
if Thm.no_prems th then bad_thm ctxt "Ill-formed destruction rule" th |
42793 | 299 |
else Tactic.make_elim th; |
42790 | 300 |
|
60945 | 301 |
fun warn_thm ctxt msg th = |
302 |
if Context_Position.is_really_visible ctxt |
|
61268 | 303 |
then warning (msg ^ Thm.string_of_thm ctxt th) else (); |
42793 | 304 |
|
60945 | 305 |
fun warn_rules ctxt msg rules (r: rule) = |
306 |
Item_Net.member rules r andalso (warn_thm ctxt msg (#1 r); true); |
|
42807
e639d91d9073
more precise warnings: observe context visibility;
wenzelm
parents:
42799
diff
changeset
|
307 |
|
60945 | 308 |
fun warn_claset ctxt r (CS {safeIs, safeEs, unsafeIs, unsafeEs, ...}) = |
309 |
warn_rules ctxt "Rule already declared as safe introduction (intro!)\n" safeIs r orelse |
|
310 |
warn_rules ctxt "Rule already declared as safe elimination (elim!)\n" safeEs r orelse |
|
311 |
warn_rules ctxt "Rule already declared as introduction (intro)\n" unsafeIs r orelse |
|
312 |
warn_rules ctxt "Rule already declared as elimination (elim)\n" unsafeEs r; |
|
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
313 |
|
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
314 |
|
60946 | 315 |
(*** add rules ***) |
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
316 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
317 |
fun add_safe_intro w (r: rule) |
60943 | 318 |
(cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
319 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
60945 | 320 |
if Item_Net.member safeIs r then cs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
321 |
else |
42790 | 322 |
let |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
323 |
val (th, {rl, ...}) = r; |
23594
e65e466dda01
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23178
diff
changeset
|
324 |
val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*) |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
325 |
List.partition (Thm.no_prems o fst) [rl]; |
42810
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
326 |
val nI = Item_Net.length safeIs + 1; |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
327 |
val nE = Item_Net.length safeEs; |
42790 | 328 |
in |
329 |
CS |
|
60945 | 330 |
{safeIs = Item_Net.update r safeIs, |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
331 |
safe0_netpair = insert (nI, nE) (map fst safe0_rls, maps (the_list o snd) safe0_rls) safe0_netpair, |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
332 |
safep_netpair = insert (nI, nE) (map fst safep_rls, maps (the_list o snd) safep_rls) safep_netpair, |
42790 | 333 |
safeEs = safeEs, |
60943 | 334 |
unsafeIs = unsafeIs, |
335 |
unsafeEs = unsafeEs, |
|
42790 | 336 |
swrappers = swrappers, |
337 |
uwrappers = uwrappers, |
|
60943 | 338 |
unsafe_netpair = unsafe_netpair, |
42790 | 339 |
dup_netpair = dup_netpair, |
82815 | 340 |
extra_netpair = insert_default_weight 0 w (nI, nE) (false, th) extra_netpair} |
42790 | 341 |
end; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
342 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
343 |
fun add_safe_elim w (r: rule) |
60943 | 344 |
(cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
345 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
60945 | 346 |
if Item_Net.member safeEs r then cs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
347 |
else |
42790 | 348 |
let |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
349 |
val (th, {rl, ...}) = r; |
18534
6799b38ed872
added classical_rule, which replaces Data.make_elim;
wenzelm
parents:
18374
diff
changeset
|
350 |
val (safe0_rls, safep_rls) = (*0 subgoals vs 1 or more*) |
82809 | 351 |
List.partition (Thm.one_prem o #1) [rl]; |
42810
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
352 |
val nI = Item_Net.length safeIs; |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
353 |
val nE = Item_Net.length safeEs + 1; |
42790 | 354 |
in |
355 |
CS |
|
60945 | 356 |
{safeEs = Item_Net.update r safeEs, |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
357 |
safe0_netpair = insert (nI, nE) ([], map fst safe0_rls) safe0_netpair, |
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
358 |
safep_netpair = insert (nI, nE) ([], map fst safep_rls) safep_netpair, |
42790 | 359 |
safeIs = safeIs, |
60943 | 360 |
unsafeIs = unsafeIs, |
361 |
unsafeEs = unsafeEs, |
|
42790 | 362 |
swrappers = swrappers, |
363 |
uwrappers = uwrappers, |
|
60943 | 364 |
unsafe_netpair = unsafe_netpair, |
42790 | 365 |
dup_netpair = dup_netpair, |
82815 | 366 |
extra_netpair = insert_default_weight 0 w (nI, nE) (true, th) extra_netpair} |
42790 | 367 |
end; |
0 | 368 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
369 |
fun add_unsafe_intro w (r: rule) |
60943 | 370 |
(cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
371 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
60945 | 372 |
if Item_Net.member unsafeIs r then cs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
373 |
else |
42790 | 374 |
let |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
375 |
val (th, {rl, dup_rl}) = r; |
60943 | 376 |
val nI = Item_Net.length unsafeIs + 1; |
377 |
val nE = Item_Net.length unsafeEs; |
|
42790 | 378 |
in |
379 |
CS |
|
60945 | 380 |
{unsafeIs = Item_Net.update r unsafeIs, |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
381 |
unsafe_netpair = insert (nI, nE) ([fst rl], the_list (snd rl)) unsafe_netpair, |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
382 |
dup_netpair = insert (nI, nE) ([fst dup_rl], the_list (snd dup_rl)) dup_netpair, |
42790 | 383 |
safeIs = safeIs, |
384 |
safeEs = safeEs, |
|
60943 | 385 |
unsafeEs = unsafeEs, |
42790 | 386 |
swrappers = swrappers, |
387 |
uwrappers = uwrappers, |
|
9938 | 388 |
safe0_netpair = safe0_netpair, |
389 |
safep_netpair = safep_netpair, |
|
82815 | 390 |
extra_netpair = insert_default_weight 1 w (nI, nE) (false, th) extra_netpair} |
60945 | 391 |
end; |
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
392 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
393 |
fun add_unsafe_elim w (r: rule) |
60943 | 394 |
(cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
395 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
60945 | 396 |
if Item_Net.member unsafeEs r then cs |
1927
6f97cb16e453
New classical reasoner: warns of, and ignores, redundant rules.
paulson
parents:
1814
diff
changeset
|
397 |
else |
42790 | 398 |
let |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
399 |
val (th, {rl, dup_rl}) = r; |
60943 | 400 |
val nI = Item_Net.length unsafeIs; |
401 |
val nE = Item_Net.length unsafeEs + 1; |
|
42790 | 402 |
in |
403 |
CS |
|
60945 | 404 |
{unsafeEs = Item_Net.update r unsafeEs, |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
405 |
unsafe_netpair = insert (nI, nE) ([], [fst rl]) unsafe_netpair, |
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
406 |
dup_netpair = insert (nI, nE) ([], [fst dup_rl]) dup_netpair, |
42790 | 407 |
safeIs = safeIs, |
408 |
safeEs = safeEs, |
|
60943 | 409 |
unsafeIs = unsafeIs, |
42790 | 410 |
swrappers = swrappers, |
411 |
uwrappers = uwrappers, |
|
9938 | 412 |
safe0_netpair = safe0_netpair, |
413 |
safep_netpair = safep_netpair, |
|
82815 | 414 |
extra_netpair = insert_default_weight 1 w (nI, nE) (true, th) extra_netpair} |
42790 | 415 |
end; |
0 | 416 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
417 |
fun trim_context_rl (th1, opt_th2) = |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
418 |
(Thm.trim_context th1, Option.map Thm.trim_context opt_th2); |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
419 |
|
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
420 |
fun trim_context (th, {rl, dup_rl}) : rule = |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
421 |
(Thm.trim_context th, {rl = trim_context_rl rl, dup_rl = trim_context_rl dup_rl}); |
61056 | 422 |
|
60946 | 423 |
fun addSI w ctxt th (cs as CS {safeIs, ...}) = |
424 |
let |
|
425 |
val th' = flat_rule ctxt th; |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
426 |
val r = trim_context (th, make_info1 (maybe_swapped_rl th')); |
60946 | 427 |
val _ = |
428 |
warn_rules ctxt "Ignoring duplicate safe introduction (intro!)\n" safeIs r orelse |
|
429 |
warn_claset ctxt r cs; |
|
430 |
in add_safe_intro w r cs end; |
|
431 |
||
432 |
fun addSE w ctxt th (cs as CS {safeEs, ...}) = |
|
433 |
let |
|
82804 | 434 |
val _ = Thm.no_prems th andalso bad_thm ctxt "Ill-formed elimination rule" th; |
60946 | 435 |
val th' = classical_rule ctxt (flat_rule ctxt th); |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
436 |
val r = trim_context (th, make_info1 (no_swapped_rl th')); |
60946 | 437 |
val _ = |
438 |
warn_rules ctxt "Ignoring duplicate safe elimination (elim!)\n" safeEs r orelse |
|
439 |
warn_claset ctxt r cs; |
|
440 |
in add_safe_elim w r cs end; |
|
441 |
||
442 |
fun addSD w ctxt th = addSE w ctxt (make_elim ctxt th); |
|
443 |
||
60945 | 444 |
fun addI w ctxt th (cs as CS {unsafeIs, ...}) = |
445 |
let |
|
446 |
val th' = flat_rule ctxt th; |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
447 |
val dup_th' = dup_intr th' handle THM _ => bad_thm ctxt "Ill-formed introduction rule" th; |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
448 |
val r = trim_context (th, make_info (maybe_swapped_rl th') (maybe_swapped_rl dup_th')); |
60945 | 449 |
val _ = |
450 |
warn_rules ctxt "Ignoring duplicate introduction (intro)\n" unsafeIs r orelse |
|
451 |
warn_claset ctxt r cs; |
|
452 |
in add_unsafe_intro w r cs end; |
|
42793 | 453 |
|
60945 | 454 |
fun addE w ctxt th (cs as CS {unsafeEs, ...}) = |
455 |
let |
|
82804 | 456 |
val _ = Thm.no_prems th andalso bad_thm ctxt "Ill-formed elimination rule" th; |
60945 | 457 |
val th' = classical_rule ctxt (flat_rule ctxt th); |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
458 |
val dup_th' = dup_elim ctxt th' handle THM _ => bad_thm ctxt "Ill-formed elimination rule" th; |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
459 |
val r = trim_context (th, make_info (no_swapped_rl th') (no_swapped_rl dup_th')); |
60945 | 460 |
val _ = |
461 |
warn_rules ctxt "Ignoring duplicate elimination (elim)\n" unsafeEs r orelse |
|
462 |
warn_claset ctxt r cs; |
|
463 |
in add_unsafe_elim w r cs end; |
|
464 |
||
465 |
fun addD w ctxt th = addE w ctxt (make_elim ctxt th); |
|
0 | 466 |
|
1073
b3f190995bc9
Recoded addSIs, etc., so that nets are built incrementally
lcp
parents:
1010
diff
changeset
|
467 |
|
60946 | 468 |
(*** delete rules ***) |
469 |
||
470 |
local |
|
1800 | 471 |
|
60946 | 472 |
fun del_safe_intro (r: rule) |
473 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
|
474 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
475 |
let |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
476 |
val (th, {rl, ...}) = r; |
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
477 |
val (safe0_rls, safep_rls) = List.partition (Thm.no_prems o fst) [rl]; |
60946 | 478 |
in |
479 |
CS |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
480 |
{safe0_netpair = delete (map fst safe0_rls, maps (the_list o snd) safe0_rls) safe0_netpair, |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
481 |
safep_netpair = delete (map fst safep_rls, maps (the_list o snd) safep_rls) safep_netpair, |
60946 | 482 |
safeIs = Item_Net.remove r safeIs, |
483 |
safeEs = safeEs, |
|
484 |
unsafeIs = unsafeIs, |
|
485 |
unsafeEs = unsafeEs, |
|
486 |
swrappers = swrappers, |
|
487 |
uwrappers = uwrappers, |
|
488 |
unsafe_netpair = unsafe_netpair, |
|
489 |
dup_netpair = dup_netpair, |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
490 |
extra_netpair = delete ([th], []) extra_netpair} |
60946 | 491 |
end; |
1800 | 492 |
|
60946 | 493 |
fun del_safe_elim (r: rule) |
494 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
|
495 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
496 |
let |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
497 |
val (th, {rl, ...}) = r; |
82809 | 498 |
val (safe0_rls, safep_rls) = List.partition (Thm.one_prem o #1) [rl]; |
60946 | 499 |
in |
500 |
CS |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
501 |
{safe0_netpair = delete ([], map fst safe0_rls) safe0_netpair, |
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
502 |
safep_netpair = delete ([], map fst safep_rls) safep_netpair, |
60946 | 503 |
safeIs = safeIs, |
504 |
safeEs = Item_Net.remove r safeEs, |
|
505 |
unsafeIs = unsafeIs, |
|
506 |
unsafeEs = unsafeEs, |
|
507 |
swrappers = swrappers, |
|
508 |
uwrappers = uwrappers, |
|
509 |
unsafe_netpair = unsafe_netpair, |
|
510 |
dup_netpair = dup_netpair, |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
511 |
extra_netpair = delete ([], [th]) extra_netpair} |
60946 | 512 |
end; |
1800 | 513 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
514 |
fun del_unsafe_intro (r as (th, {rl = (th', swapped_th'), dup_rl = (dup_th', swapped_dup_th')})) |
60946 | 515 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
516 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
517 |
CS |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
518 |
{unsafe_netpair = delete ([th'], the_list swapped_th') unsafe_netpair, |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
519 |
dup_netpair = delete ([dup_th'], the_list swapped_dup_th') dup_netpair, |
60946 | 520 |
safeIs = safeIs, |
521 |
safeEs = safeEs, |
|
522 |
unsafeIs = Item_Net.remove r unsafeIs, |
|
523 |
unsafeEs = unsafeEs, |
|
524 |
swrappers = swrappers, |
|
525 |
uwrappers = uwrappers, |
|
526 |
safe0_netpair = safe0_netpair, |
|
527 |
safep_netpair = safep_netpair, |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
528 |
extra_netpair = delete ([th], []) extra_netpair}; |
1800 | 529 |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
530 |
fun del_unsafe_elim (r as (th, {rl = (th', _), dup_rl = (dup_th', _)})) |
60946 | 531 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
532 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
533 |
CS |
|
534 |
{unsafe_netpair = delete ([], [th']) unsafe_netpair, |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
535 |
dup_netpair = delete ([], [dup_th']) dup_netpair, |
60946 | 536 |
safeIs = safeIs, |
537 |
safeEs = safeEs, |
|
538 |
unsafeIs = unsafeIs, |
|
539 |
unsafeEs = Item_Net.remove r unsafeEs, |
|
540 |
swrappers = swrappers, |
|
541 |
uwrappers = uwrappers, |
|
542 |
safe0_netpair = safe0_netpair, |
|
543 |
safep_netpair = safep_netpair, |
|
61055
6fc78876f9be
store result of swapify, to avoid later access to implicit context;
wenzelm
parents:
61049
diff
changeset
|
544 |
extra_netpair = delete ([], [th]) extra_netpair}; |
1800 | 545 |
|
60946 | 546 |
fun del f rules th cs = |
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
547 |
fold f (Item_Net.lookup rules (th, make_info1 (no_swapped_rl th))) cs; |
60946 | 548 |
|
549 |
in |
|
550 |
||
60945 | 551 |
fun delrule ctxt th (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, ...}) = |
552 |
let |
|
553 |
val th' = Tactic.make_elim th; |
|
82833
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
554 |
val r = (th, make_info1 (no_swapped_rl th)); |
13a8c49a48a0
clarified signature: more explicit types, notably (thm option) instead of (thm list);
wenzelm
parents:
82832
diff
changeset
|
555 |
val r' = (th', make_info1 (no_swapped_rl th')); |
60945 | 556 |
in |
557 |
if Item_Net.member safeIs r orelse Item_Net.member safeEs r orelse |
|
558 |
Item_Net.member unsafeIs r orelse Item_Net.member unsafeEs r orelse |
|
559 |
Item_Net.member safeEs r' orelse Item_Net.member unsafeEs r' |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
560 |
then |
60942 | 561 |
cs |
60946 | 562 |
|> del del_safe_intro safeIs th |
563 |
|> del del_safe_elim safeEs th |
|
564 |
|> del del_safe_elim safeEs th' |
|
565 |
|> del del_unsafe_intro unsafeIs th |
|
566 |
|> del del_unsafe_elim unsafeEs th |
|
567 |
|> del del_unsafe_elim unsafeEs th' |
|
60945 | 568 |
else (warn_thm ctxt "Undeclared classical rule\n" th; cs) |
9938 | 569 |
end; |
1800 | 570 |
|
60946 | 571 |
end; |
572 |
||
1800 | 573 |
|
42793 | 574 |
|
575 |
(** claset data **) |
|
42790 | 576 |
|
42793 | 577 |
(* wrappers *) |
42790 | 578 |
|
22674 | 579 |
fun map_swrappers f |
60943 | 580 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
581 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
582 |
CS {safeIs = safeIs, safeEs = safeEs, unsafeIs = unsafeIs, unsafeEs = unsafeEs, |
|
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
583 |
swrappers = f swrappers, uwrappers = uwrappers, |
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
584 |
safe0_netpair = safe0_netpair, safep_netpair = safep_netpair, |
60943 | 585 |
unsafe_netpair = unsafe_netpair, dup_netpair = dup_netpair, extra_netpair = extra_netpair}; |
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
586 |
|
22674 | 587 |
fun map_uwrappers f |
60943 | 588 |
(CS {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, |
589 |
safe0_netpair, safep_netpair, unsafe_netpair, dup_netpair, extra_netpair}) = |
|
590 |
CS {safeIs = safeIs, safeEs = safeEs, unsafeIs = unsafeIs, unsafeEs = unsafeEs, |
|
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
591 |
swrappers = swrappers, uwrappers = f uwrappers, |
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
592 |
safe0_netpair = safe0_netpair, safep_netpair = safep_netpair, |
60943 | 593 |
unsafe_netpair = unsafe_netpair, dup_netpair = dup_netpair, extra_netpair = extra_netpair}; |
4767
b9f3468c6ee2
introduced functions for updating the wrapper lists
oheimb
parents:
4765
diff
changeset
|
594 |
|
22674 | 595 |
|
42793 | 596 |
(* merge_cs *) |
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
597 |
|
42810
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
598 |
(*Merge works by adding all new rules of the 2nd claset into the 1st claset, |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
599 |
in order to preserve priorities reliably.*) |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
600 |
|
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
601 |
fun merge_thms add thms1 thms2 = |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
602 |
fold_rev (fn thm => if Item_Net.member thms1 thm then I else add thm) (Item_Net.content thms2); |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
603 |
|
60943 | 604 |
fun merge_cs (cs as CS {safeIs, safeEs, unsafeIs, unsafeEs, ...}, |
605 |
cs' as CS {safeIs = safeIs2, safeEs = safeEs2, unsafeIs = unsafeIs2, unsafeEs = unsafeEs2, |
|
22674 | 606 |
swrappers, uwrappers, ...}) = |
24358 | 607 |
if pointer_eq (cs, cs') then cs |
608 |
else |
|
42810
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
609 |
cs |
60945 | 610 |
|> merge_thms (add_safe_intro NONE) safeIs safeIs2 |
611 |
|> merge_thms (add_safe_elim NONE) safeEs safeEs2 |
|
612 |
|> merge_thms (add_unsafe_intro NONE) unsafeIs unsafeIs2 |
|
613 |
|> merge_thms (add_unsafe_elim NONE) unsafeEs unsafeEs2 |
|
42810
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
614 |
|> map_swrappers (fn ws => AList.merge (op =) (K true) (ws, swrappers)) |
2425068fe13a
slightly more efficient claset operations, using Item_Net to maintain rules in canonical order;
wenzelm
parents:
42807
diff
changeset
|
615 |
|> map_uwrappers (fn ws => AList.merge (op =) (K true) (ws, uwrappers)); |
42793 | 616 |
|
617 |
||
618 |
(* data *) |
|
619 |
||
620 |
structure Claset = Generic_Data |
|
621 |
( |
|
622 |
type T = claset; |
|
623 |
val empty = empty_cs; |
|
624 |
val merge = merge_cs; |
|
625 |
); |
|
626 |
||
627 |
val claset_of = Claset.get o Context.Proof; |
|
628 |
val rep_claset_of = rep_cs o claset_of; |
|
629 |
||
630 |
val get_cs = Claset.get; |
|
631 |
val map_cs = Claset.map; |
|
632 |
||
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
633 |
fun map_theory_claset f thy = |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
634 |
let |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
635 |
val ctxt' = f (Proof_Context.init_global thy); |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
636 |
val thy' = Proof_Context.theory_of ctxt'; |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
637 |
in Context.theory_map (Claset.map (K (claset_of ctxt'))) thy' end; |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
638 |
|
42793 | 639 |
fun map_claset f = Context.proof_map (map_cs f); |
640 |
fun put_claset cs = map_claset (K cs); |
|
641 |
||
642 |
fun print_claset ctxt = |
|
643 |
let |
|
60943 | 644 |
val {safeIs, safeEs, unsafeIs, unsafeEs, swrappers, uwrappers, ...} = rep_claset_of ctxt; |
61268 | 645 |
val pretty_thms = map (Thm.pretty_thm_item ctxt o #1) o Item_Net.content; |
42793 | 646 |
in |
647 |
[Pretty.big_list "safe introduction rules (intro!):" (pretty_thms safeIs), |
|
60943 | 648 |
Pretty.big_list "introduction rules (intro):" (pretty_thms unsafeIs), |
42793 | 649 |
Pretty.big_list "safe elimination rules (elim!):" (pretty_thms safeEs), |
60943 | 650 |
Pretty.big_list "elimination rules (elim):" (pretty_thms unsafeEs), |
42793 | 651 |
Pretty.strs ("safe wrappers:" :: map #1 swrappers), |
652 |
Pretty.strs ("unsafe wrappers:" :: map #1 uwrappers)] |
|
82587
7415414bd9d8
more scalable: discontinue odd shortcuts from 6b3739fee456, which produce bulky strings internally;
wenzelm
parents:
74561
diff
changeset
|
653 |
|> Pretty.chunks |> Pretty.writeln |
42793 | 654 |
end; |
655 |
||
656 |
||
657 |
(* old-style declarations *) |
|
658 |
||
60945 | 659 |
fun decl f (ctxt, ths) = map_claset (fold_rev (f ctxt) ths) ctxt; |
42793 | 660 |
|
661 |
val op addSIs = decl (addSI NONE); |
|
662 |
val op addSEs = decl (addSE NONE); |
|
663 |
val op addSDs = decl (addSD NONE); |
|
664 |
val op addIs = decl (addI NONE); |
|
665 |
val op addEs = decl (addE NONE); |
|
666 |
val op addDs = decl (addD NONE); |
|
667 |
val op delrules = decl delrule; |
|
668 |
||
669 |
||
670 |
||
671 |
(*** Modifying the wrapper tacticals ***) |
|
672 |
||
673 |
fun appSWrappers ctxt = fold (fn (_, w) => w ctxt) (#swrappers (rep_claset_of ctxt)); |
|
674 |
fun appWrappers ctxt = fold (fn (_, w) => w ctxt) (#uwrappers (rep_claset_of ctxt)); |
|
675 |
||
676 |
fun update_warn msg (p as (key : string, _)) xs = |
|
677 |
(if AList.defined (op =) xs key then warning msg else (); AList.update (op =) p xs); |
|
678 |
||
679 |
fun delete_warn msg (key : string) xs = |
|
680 |
if AList.defined (op =) xs key then AList.delete (op =) key xs |
|
681 |
else (warning msg; xs); |
|
682 |
||
683 |
(*Add/replace a safe wrapper*) |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
684 |
fun ctxt addSWrapper new_swrapper = ctxt |> map_claset |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
685 |
(map_swrappers (update_warn ("Overwriting safe wrapper " ^ fst new_swrapper) new_swrapper)); |
42793 | 686 |
|
687 |
(*Add/replace an unsafe wrapper*) |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
688 |
fun ctxt addWrapper new_uwrapper = ctxt |> map_claset |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
689 |
(map_uwrappers (update_warn ("Overwriting unsafe wrapper " ^ fst new_uwrapper) new_uwrapper)); |
42793 | 690 |
|
691 |
(*Remove a safe wrapper*) |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
692 |
fun ctxt delSWrapper name = ctxt |> map_claset |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
693 |
(map_swrappers (delete_warn ("No such safe wrapper in claset: " ^ name) name)); |
42793 | 694 |
|
695 |
(*Remove an unsafe wrapper*) |
|
51703
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
696 |
fun ctxt delWrapper name = ctxt |> map_claset |
f2e92fc0c8aa
modifiers for classical wrappers operate on Proof.context instead of claset;
wenzelm
parents:
51688
diff
changeset
|
697 |
(map_uwrappers (delete_warn ("No such unsafe wrapper in claset: " ^ name) name)); |
42793 | 698 |
|
699 |
(* compose a safe tactic alternatively before/after safe_step_tac *) |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
700 |
fun ctxt addSbefore (name, tac1) = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
701 |
ctxt addSWrapper (name, fn ctxt => fn tac2 => tac1 ctxt ORELSE' tac2); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
702 |
fun ctxt addSafter (name, tac2) = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
703 |
ctxt addSWrapper (name, fn ctxt => fn tac1 => tac1 ORELSE' tac2 ctxt); |
42793 | 704 |
|
705 |
(*compose a tactic alternatively before/after the step tactic *) |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
706 |
fun ctxt addbefore (name, tac1) = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
707 |
ctxt addWrapper (name, fn ctxt => fn tac2 => tac1 ctxt APPEND' tac2); |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
708 |
fun ctxt addafter (name, tac2) = |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51703
diff
changeset
|
709 |
ctxt addWrapper (name, fn ctxt => fn tac1 => tac1 APPEND' tac2 ctxt); |
42793 | 710 |
|
58957 | 711 |
fun ctxt addD2 (name, thm) = |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
712 |
ctxt addafter (name, fn ctxt' => dresolve_tac ctxt' [thm] THEN' assume_tac ctxt'); |
58957 | 713 |
fun ctxt addE2 (name, thm) = |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
714 |
ctxt addafter (name, fn ctxt' => eresolve_tac ctxt' [thm] THEN' assume_tac ctxt'); |
58957 | 715 |
fun ctxt addSD2 (name, thm) = |
716 |
ctxt addSafter (name, fn ctxt' => dmatch_tac ctxt' [thm] THEN' eq_assume_tac); |
|
717 |
fun ctxt addSE2 (name, thm) = |
|
718 |
ctxt addSafter (name, fn ctxt' => ematch_tac ctxt' [thm] THEN' eq_assume_tac); |
|
42793 | 719 |
|
1711 | 720 |
|
982
4fe0b642b7d5
Addition of wrappers for integration with the simplifier.
lcp
parents:
747
diff
changeset
|
721 |
|
1800 | 722 |
(**** Simple tactics for theorem proving ****) |
0 | 723 |
|
724 |
(*Attack subgoals using safe inferences -- matching, not resolution*) |
|
42793 | 725 |
fun safe_step_tac ctxt = |
726 |
let val {safe0_netpair, safep_netpair, ...} = rep_claset_of ctxt in |
|
727 |
appSWrappers ctxt |
|
728 |
(FIRST' |
|
729 |
[eq_assume_tac, |
|
58957 | 730 |
eq_mp_tac ctxt, |
82805 | 731 |
Bires.bimatch_from_nets_tac ctxt safe0_netpair, |
51798 | 732 |
FIRST' (map (fn tac => tac ctxt) Data.hyp_subst_tacs), |
82805 | 733 |
Bires.bimatch_from_nets_tac ctxt safep_netpair]) |
42793 | 734 |
end; |
0 | 735 |
|
5757 | 736 |
(*Repeatedly attack a subgoal using safe inferences -- it's deterministic!*) |
42793 | 737 |
fun safe_steps_tac ctxt = |
738 |
REPEAT_DETERM1 o (fn i => COND (has_fewer_prems i) no_tac (safe_step_tac ctxt i)); |
|
5757 | 739 |
|
0 | 740 |
(*Repeatedly attack subgoals using safe inferences -- it's deterministic!*) |
42793 | 741 |
fun safe_tac ctxt = REPEAT_DETERM1 (FIRSTGOAL (safe_steps_tac ctxt)); |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
742 |
|
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
743 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
744 |
(*** 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
|
745 |
|
82805 | 746 |
(*version of Bires.bimatch_from_nets_tac that only applies rules that |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
747 |
create precisely n subgoals.*) |
59164 | 748 |
fun n_bimatch_from_nets_tac ctxt n = |
82812
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
749 |
Bires.biresolution_from_nets_tac ctxt Bires.tag_ord |
ea8d633fd4a8
just one type Bires.netpair, based on Bires.tag with explicit weight;
wenzelm
parents:
82809
diff
changeset
|
750 |
(SOME (fn rl => Bires.subgoals_of rl = n)) true; |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
751 |
|
58957 | 752 |
fun eq_contr_tac ctxt i = ematch_tac ctxt [Data.not_elim] i THEN eq_assume_tac i; |
753 |
fun eq_assume_contr_tac ctxt = eq_assume_tac ORELSE' eq_contr_tac ctxt; |
|
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
754 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
755 |
(*Two-way branching is allowed only if one of the branches immediately closes*) |
58957 | 756 |
fun bimatch2_tac ctxt netpair i = |
59164 | 757 |
n_bimatch_from_nets_tac ctxt 2 netpair i THEN |
58957 | 758 |
(eq_assume_contr_tac ctxt i ORELSE eq_assume_contr_tac ctxt (i + 1)); |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
759 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
760 |
(*Attack subgoals using safe inferences -- matching, not resolution*) |
42793 | 761 |
fun clarify_step_tac ctxt = |
762 |
let val {safe0_netpair, safep_netpair, ...} = rep_claset_of ctxt in |
|
763 |
appSWrappers ctxt |
|
764 |
(FIRST' |
|
58957 | 765 |
[eq_assume_contr_tac ctxt, |
82805 | 766 |
Bires.bimatch_from_nets_tac ctxt safe0_netpair, |
51798 | 767 |
FIRST' (map (fn tac => tac ctxt) Data.hyp_subst_tacs), |
59164 | 768 |
n_bimatch_from_nets_tac ctxt 1 safep_netpair, |
58957 | 769 |
bimatch2_tac ctxt safep_netpair]) |
42793 | 770 |
end; |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
771 |
|
42793 | 772 |
fun clarify_tac ctxt = SELECT_GOAL (REPEAT_DETERM (clarify_step_tac ctxt 1)); |
3705
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
773 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
774 |
|
76f3b2803982
Addition of clarify_tac, clarify_step_tac, Clarify_tac, Clarify_step_tac
paulson
parents:
3546
diff
changeset
|
775 |
(*** 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
|
776 |
|
4066 | 777 |
(*Backtracking is allowed among the various these unsafe ways of |
778 |
proving a subgoal. *) |
|
42793 | 779 |
fun inst0_step_tac ctxt = |
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
780 |
assume_tac ctxt APPEND' |
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
58958
diff
changeset
|
781 |
contr_tac ctxt APPEND' |
82805 | 782 |
Bires.biresolve_from_nets_tac ctxt (#safe0_netpair (rep_claset_of ctxt)); |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
783 |
|
4066 | 784 |
(*These unsafe steps could generate more subgoals.*) |
42793 | 785 |
fun instp_step_tac ctxt = |
82805 | 786 |
Bires.biresolve_from_nets_tac ctxt (#safep_netpair (rep_claset_of ctxt)); |
0 | 787 |
|
788 |
(*These steps could instantiate variables and are therefore unsafe.*) |
|
42793 | 789 |
fun inst_step_tac ctxt = inst0_step_tac ctxt APPEND' instp_step_tac ctxt; |
0 | 790 |
|
60943 | 791 |
fun unsafe_step_tac ctxt = |
82805 | 792 |
Bires.biresolve_from_nets_tac ctxt (#unsafe_netpair (rep_claset_of ctxt)); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
793 |
|
0 | 794 |
(*Single step for the prover. FAILS unless it makes progress. *) |
42793 | 795 |
fun step_tac ctxt i = |
60943 | 796 |
safe_tac ctxt ORELSE appWrappers ctxt (inst_step_tac ctxt ORELSE' unsafe_step_tac ctxt) i; |
0 | 797 |
|
798 |
(*Using a "safe" rule to instantiate variables is unsafe. This tactic |
|
799 |
allows backtracking from "safe" rules to "unsafe" rules here.*) |
|
42793 | 800 |
fun slow_step_tac ctxt i = |
60943 | 801 |
safe_tac ctxt ORELSE appWrappers ctxt (inst_step_tac ctxt APPEND' unsafe_step_tac ctxt) i; |
0 | 802 |
|
42791
36f787ae5f70
eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents:
42790
diff
changeset
|
803 |
|
1800 | 804 |
(**** The following tactics all fail unless they solve one goal ****) |
0 | 805 |
|
806 |
(*Dumb but fast*) |
|
42793 | 807 |
fun fast_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
808 |
Object_Logic.atomize_prems_tac ctxt THEN' SELECT_GOAL (DEPTH_SOLVE (step_tac ctxt 1)); |
0 | 809 |
|
810 |
(*Slower but smarter than fast_tac*) |
|
42793 | 811 |
fun best_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
812 |
Object_Logic.atomize_prems_tac ctxt THEN' |
82804 | 813 |
SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (step_tac ctxt 1)); |
0 | 814 |
|
9402 | 815 |
(*even a bit smarter than best_tac*) |
42793 | 816 |
fun first_best_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
817 |
Object_Logic.atomize_prems_tac ctxt THEN' |
82804 | 818 |
SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (FIRSTGOAL (step_tac ctxt))); |
9402 | 819 |
|
42793 | 820 |
fun slow_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
821 |
Object_Logic.atomize_prems_tac ctxt THEN' |
42793 | 822 |
SELECT_GOAL (DEPTH_SOLVE (slow_step_tac ctxt 1)); |
0 | 823 |
|
42793 | 824 |
fun slow_best_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
825 |
Object_Logic.atomize_prems_tac ctxt THEN' |
82804 | 826 |
SELECT_GOAL (BEST_FIRST (Thm.no_prems, Data.sizef) (slow_step_tac ctxt 1)); |
0 | 827 |
|
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
828 |
|
10736 | 829 |
(***ASTAR with weight weight_ASTAR, by Norbert Voelker*) |
42791
36f787ae5f70
eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents:
42790
diff
changeset
|
830 |
|
36f787ae5f70
eliminated weight_ASTAR: int Unsynchronized.ref (astar_tac appears to be obsolete anyway);
wenzelm
parents:
42790
diff
changeset
|
831 |
val weight_ASTAR = 5; |
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
832 |
|
42793 | 833 |
fun astar_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
834 |
Object_Logic.atomize_prems_tac ctxt THEN' |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
835 |
SELECT_GOAL |
82804 | 836 |
(ASTAR (Thm.no_prems, fn lev => fn thm => Data.sizef thm + weight_ASTAR * lev) |
42793 | 837 |
(step_tac ctxt 1)); |
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
838 |
|
42793 | 839 |
fun slow_astar_tac ctxt = |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
840 |
Object_Logic.atomize_prems_tac ctxt THEN' |
10382
1fb807260ff1
atomize: all automated tactics that "solve" goals;
wenzelm
parents:
10309
diff
changeset
|
841 |
SELECT_GOAL |
82804 | 842 |
(ASTAR (Thm.no_prems, fn lev => fn thm => Data.sizef thm + weight_ASTAR * lev) |
42793 | 843 |
(slow_step_tac ctxt 1)); |
1587
e7d8a4957bac
Now provides astar versions (thanks to Norbert Voelker)
paulson
parents:
1524
diff
changeset
|
844 |
|
42790 | 845 |
|
1800 | 846 |
(**** 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
|
847 |
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
|
848 |
easy theorems faster, but loses completeness -- and many of the harder |
1800 | 849 |
theorems such as 43. ****) |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
850 |
|
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
851 |
(*Non-deterministic! Could always expand the first unsafe connective. |
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
852 |
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
|
853 |
greater search depth required.*) |
42793 | 854 |
fun dup_step_tac ctxt = |
82805 | 855 |
Bires.biresolve_from_nets_tac ctxt (#dup_netpair (rep_claset_of ctxt)); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
856 |
|
5523 | 857 |
(*Searching to depth m. A variant called nodup_depth_tac appears in clasimp.ML*) |
5757 | 858 |
local |
42793 | 859 |
fun slow_step_tac' ctxt = appWrappers ctxt (instp_step_tac ctxt APPEND' dup_step_tac ctxt); |
42790 | 860 |
in |
42793 | 861 |
fun depth_tac ctxt m i state = SELECT_GOAL |
862 |
(safe_steps_tac ctxt 1 THEN_ELSE |
|
863 |
(DEPTH_SOLVE (depth_tac ctxt m 1), |
|
864 |
inst0_step_tac ctxt 1 APPEND COND (K (m = 0)) no_tac |
|
865 |
(slow_step_tac' ctxt 1 THEN DEPTH_SOLVE (depth_tac ctxt (m - 1) 1)))) i state; |
|
5757 | 866 |
end; |
747
bdc066781063
deepen_tac: modified due to outcome of experiments. Its
lcp
parents:
681
diff
changeset
|
867 |
|
10736 | 868 |
(*Search, with depth bound m. |
2173 | 869 |
This is the "entry point", which does safe inferences first.*) |
42793 | 870 |
fun safe_depth_tac ctxt m = SUBGOAL (fn (prem, i) => |
871 |
let |
|
872 |
val deti = (*No Vars in the goal? No need to backtrack between goals.*) |
|
873 |
if exists_subterm (fn Var _ => true | _ => false) prem then DETERM else I; |
|
42790 | 874 |
in |
42793 | 875 |
SELECT_GOAL (TRY (safe_tac ctxt) THEN DEPTH_SOLVE (deti (depth_tac ctxt m 1))) i |
42790 | 876 |
end); |
681
9b02474744ca
Provers/classical: now takes theorem "classical" as argument, proves "swap"
lcp
parents:
469
diff
changeset
|
877 |
|
42793 | 878 |
fun deepen_tac ctxt = DEEPEN (2, 10) (safe_depth_tac ctxt); |
24021 | 879 |
|
880 |
||
5885 | 881 |
(* attributes *) |
882 |
||
42793 | 883 |
fun attrib f = |
60945 | 884 |
Thm.declaration_attribute (fn th => fn context => |
885 |
map_cs (f (Context.proof_of context) th) context); |
|
5885 | 886 |
|
18691 | 887 |
val safe_elim = attrib o addSE; |
888 |
val safe_intro = attrib o addSI; |
|
42793 | 889 |
val safe_dest = attrib o addSD; |
60943 | 890 |
val unsafe_elim = attrib o addE; |
891 |
val unsafe_intro = attrib o addI; |
|
892 |
val unsafe_dest = attrib o addD; |
|
45375
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents:
42817
diff
changeset
|
893 |
|
7fe19930dfc9
more explicit representation of rule_attribute vs. declaration_attribute vs. mixed_attribute;
wenzelm
parents:
42817
diff
changeset
|
894 |
val rule_del = |
60945 | 895 |
Thm.declaration_attribute (fn th => fn context => |
896 |
context |
|
897 |
|> map_cs (delrule (Context.proof_of context) th) |
|
898 |
|> Thm.attribute_declaration Context_Rules.rule_del th); |
|
5885 | 899 |
|
900 |
||
5841 | 901 |
|
5885 | 902 |
(** concrete syntax of attributes **) |
5841 | 903 |
|
904 |
val introN = "intro"; |
|
905 |
val elimN = "elim"; |
|
906 |
val destN = "dest"; |
|
907 |
||
58826 | 908 |
val _ = |
909 |
Theory.setup |
|
69593 | 910 |
(Attrib.setup \<^binding>\<open>swapped\<close> (Scan.succeed swapped) |
58826 | 911 |
"classical swap of introduction rule" #> |
69593 | 912 |
Attrib.setup \<^binding>\<open>dest\<close> (Context_Rules.add safe_dest unsafe_dest Context_Rules.dest_query) |
58826 | 913 |
"declaration of Classical destruction rule" #> |
69593 | 914 |
Attrib.setup \<^binding>\<open>elim\<close> (Context_Rules.add safe_elim unsafe_elim Context_Rules.elim_query) |
58826 | 915 |
"declaration of Classical elimination rule" #> |
69593 | 916 |
Attrib.setup \<^binding>\<open>intro\<close> (Context_Rules.add safe_intro unsafe_intro Context_Rules.intro_query) |
58826 | 917 |
"declaration of Classical introduction rule" #> |
69593 | 918 |
Attrib.setup \<^binding>\<open>rule\<close> (Scan.lift Args.del >> K rule_del) |
82818 | 919 |
"remove declaration of Classical intro/elim/dest rule"); |
5841 | 920 |
|
921 |
||
922 |
||
7230 | 923 |
(** proof methods **) |
924 |
||
925 |
local |
|
926 |
||
30609
983e8b6e4e69
Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents:
30558
diff
changeset
|
927 |
fun some_rule_tac ctxt facts = SUBGOAL (fn (goal, i) => |
5841 | 928 |
let |
61049 | 929 |
val [rules1, rules2, rules4] = Context_Rules.find_rules ctxt false facts goal; |
60942 | 930 |
val {extra_netpair, ...} = rep_claset_of ctxt; |
61049 | 931 |
val rules3 = Context_Rules.find_rules_netpair ctxt true facts goal extra_netpair; |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
932 |
val rules = rules1 @ rules2 @ rules3 @ rules4; |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
58893
diff
changeset
|
933 |
val ruleq = Drule.multi_resolves (SOME ctxt) facts rules; |
52732 | 934 |
val _ = Method.trace ctxt rules; |
12376
480303e3fa08
simplified (and clarified) integration with Pure/ContextRules;
wenzelm
parents:
12362
diff
changeset
|
935 |
in |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59164
diff
changeset
|
936 |
fn st => Seq.maps (fn rule => resolve_tac ctxt [rule] i st) ruleq |
18834 | 937 |
end) |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
938 |
THEN_ALL_NEW Goal.norm_hhf_tac ctxt; |
5841 | 939 |
|
30609
983e8b6e4e69
Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents:
30558
diff
changeset
|
940 |
in |
7281 | 941 |
|
30609
983e8b6e4e69
Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents:
30558
diff
changeset
|
942 |
fun rule_tac ctxt [] facts = some_rule_tac ctxt facts |
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
52732
diff
changeset
|
943 |
| rule_tac ctxt rules facts = Method.rule_tac ctxt rules facts; |
30609
983e8b6e4e69
Disposed old declarations, tactics, tactic combinators that refer to the simpset or claset of an implicit theory;
wenzelm
parents:
30558
diff
changeset
|
944 |
|
60619
7512716f03db
no arguments for "standard" (or old "default") methods;
wenzelm
parents:
60618
diff
changeset
|
945 |
fun standard_tac ctxt facts = |
7512716f03db
no arguments for "standard" (or old "default") methods;
wenzelm
parents:
60618
diff
changeset
|
946 |
HEADGOAL (some_rule_tac ctxt facts) ORELSE |
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60097
diff
changeset
|
947 |
Class.standard_intro_classes_tac ctxt facts; |
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60097
diff
changeset
|
948 |
|
7230 | 949 |
end; |
5841 | 950 |
|
951 |
||
6502 | 952 |
(* automatic methods *) |
5841 | 953 |
|
5927 | 954 |
val cla_modifiers = |
64556 | 955 |
[Args.$$$ destN -- Args.bang_colon >> K (Method.modifier (safe_dest NONE) \<^here>), |
956 |
Args.$$$ destN -- Args.colon >> K (Method.modifier (unsafe_dest NONE) \<^here>), |
|
957 |
Args.$$$ elimN -- Args.bang_colon >> K (Method.modifier (safe_elim NONE) \<^here>), |
|
958 |
Args.$$$ elimN -- Args.colon >> K (Method.modifier (unsafe_elim NONE) \<^here>), |
|
959 |
Args.$$$ introN -- Args.bang_colon >> K (Method.modifier (safe_intro NONE) \<^here>), |
|
960 |
Args.$$$ introN -- Args.colon >> K (Method.modifier (unsafe_intro NONE) \<^here>), |
|
961 |
Args.del -- Args.colon >> K (Method.modifier rule_del \<^here>)]; |
|
5927 | 962 |
|
42793 | 963 |
fun cla_method tac = Method.sections cla_modifiers >> K (SIMPLE_METHOD o tac); |
964 |
fun cla_method' tac = Method.sections cla_modifiers >> K (SIMPLE_METHOD' o tac); |
|
5841 | 965 |
|
966 |
||
967 |
||
58826 | 968 |
(** method setup **) |
5841 | 969 |
|
58826 | 970 |
val _ = |
971 |
Theory.setup |
|
69593 | 972 |
(Method.setup \<^binding>\<open>standard\<close> (Scan.succeed (METHOD o standard_tac)) |
60618
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
wenzelm
parents:
60097
diff
changeset
|
973 |
"standard proof step: classical intro/elim rule or class introduction" #> |
69593 | 974 |
Method.setup \<^binding>\<open>rule\<close> |
58826 | 975 |
(Attrib.thms >> (fn rules => fn ctxt => METHOD (HEADGOAL o rule_tac ctxt rules))) |
976 |
"apply some intro/elim rule (potentially classical)" #> |
|
69593 | 977 |
Method.setup \<^binding>\<open>contradiction\<close> |
58826 | 978 |
(Scan.succeed (fn ctxt => Method.rule ctxt [Data.not_elim, Drule.rotate_prems 1 Data.not_elim])) |
979 |
"proof by contradiction" #> |
|
69593 | 980 |
Method.setup \<^binding>\<open>clarify\<close> (cla_method' (CHANGED_PROP oo clarify_tac)) |
58826 | 981 |
"repeatedly apply safe steps" #> |
69593 | 982 |
Method.setup \<^binding>\<open>fast\<close> (cla_method' fast_tac) "classical prover (depth-first)" #> |
983 |
Method.setup \<^binding>\<open>slow\<close> (cla_method' slow_tac) "classical prover (slow depth-first)" #> |
|
984 |
Method.setup \<^binding>\<open>best\<close> (cla_method' best_tac) "classical prover (best-first)" #> |
|
985 |
Method.setup \<^binding>\<open>deepen\<close> |
|
58826 | 986 |
(Scan.lift (Scan.optional Parse.nat 4) --| Method.sections cla_modifiers |
987 |
>> (fn n => fn ctxt => SIMPLE_METHOD' (deepen_tac ctxt n))) |
|
988 |
"classical prover (iterative deepening)" #> |
|
69593 | 989 |
Method.setup \<^binding>\<open>safe\<close> (cla_method (CHANGED_PROP o safe_tac)) |
58826 | 990 |
"classical prover (apply safe rules)" #> |
69593 | 991 |
Method.setup \<^binding>\<open>safe_step\<close> (cla_method' safe_step_tac) |
58826 | 992 |
"single classical step (safe rules)" #> |
69593 | 993 |
Method.setup \<^binding>\<open>inst_step\<close> (cla_method' inst_step_tac) |
58826 | 994 |
"single classical step (safe rules, allow instantiations)" #> |
69593 | 995 |
Method.setup \<^binding>\<open>step\<close> (cla_method' step_tac) |
58826 | 996 |
"single classical step (safe and unsafe rules)" #> |
69593 | 997 |
Method.setup \<^binding>\<open>slow_step\<close> (cla_method' slow_step_tac) |
58826 | 998 |
"single classical step (safe and unsafe rules, allow backtracking)" #> |
69593 | 999 |
Method.setup \<^binding>\<open>clarify_step\<close> (cla_method' clarify_step_tac) |
58826 | 1000 |
"single classical step (safe rules, without splitting)"); |
5841 | 1001 |
|
8667 | 1002 |
|
1003 |
(** outer syntax **) |
|
1004 |
||
24867 | 1005 |
val _ = |
69593 | 1006 |
Outer_Syntax.command \<^command_keyword>\<open>print_claset\<close> "print context of Classical Reasoner" |
60097
d20ca79d50e4
discontinued pointless warnings: commands are only defined inside a theory context;
wenzelm
parents:
59970
diff
changeset
|
1007 |
(Scan.succeed (Toplevel.keep (print_claset o Toplevel.context_of))); |
8667 | 1008 |
|
5841 | 1009 |
end; |