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