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