| author | haftmann | 
| Tue, 23 Apr 2013 11:14:50 +0200 | |
| changeset 51734 | d504e349e951 | 
| parent 51584 | 98029ceda8ce | 
| child 52059 | 2f970c7f722b | 
| permissions | -rw-r--r-- | 
| 5824 | 1 | (* Title: Pure/Isar/method.ML | 
| 2 | Author: Markus Wenzel, TU Muenchen | |
| 3 | ||
| 17110 | 4 | Isar proof methods. | 
| 5824 | 5 | *) | 
| 6 | ||
| 7 | signature METHOD = | |
| 8 | sig | |
| 30508 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 9 | type method | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 10 | val apply: (Proof.context -> method) -> Proof.context -> thm list -> cases_tactic | 
| 18227 | 11 | val RAW_METHOD_CASES: (thm list -> cases_tactic) -> method | 
| 17110 | 12 | val RAW_METHOD: (thm list -> tactic) -> method | 
| 18227 | 13 | val METHOD_CASES: (thm list -> cases_tactic) -> method | 
| 17110 | 14 | val METHOD: (thm list -> tactic) -> method | 
| 15 | val fail: method | |
| 16 | val succeed: method | |
| 17 | val insert_tac: thm list -> int -> tactic | |
| 18 | val insert: thm list -> method | |
| 19 | val insert_facts: method | |
| 20 | val SIMPLE_METHOD: tactic -> method | |
| 21592 | 21 | val SIMPLE_METHOD': (int -> tactic) -> method | 
| 22 | val SIMPLE_METHOD'': ((int -> tactic) -> tactic) -> (int -> tactic) -> method | |
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 23 | val cheating: bool -> method | 
| 17110 | 24 | val intro: thm list -> method | 
| 25 | val elim: thm list -> method | |
| 20289 | 26 | val unfold: thm list -> Proof.context -> method | 
| 27 | val fold: thm list -> Proof.context -> method | |
| 17110 | 28 | val atomize: bool -> method | 
| 29 | val this: method | |
| 20289 | 30 | val fact: thm list -> Proof.context -> method | 
| 30234 
7dd251bce291
renamed Method.assumption_tac back to Method.assm_tac -- as assumption_tac it would have to be exactly the tactic behind the assumption method (with facts);
 wenzelm parents: 
30190diff
changeset | 31 | val assm_tac: Proof.context -> int -> tactic | 
| 30567 
cd8e20f86795
close/all_assm_tac: finish all subgoals from left to right (cf. Proof.goal_tac a28d83e903ce) -- NB: ALLGOALS/THEN_ALL_NEW operate from right to left;
 wenzelm parents: 
30544diff
changeset | 32 | val all_assm_tac: Proof.context -> tactic | 
| 20289 | 33 | val assumption: Proof.context -> method | 
| 46466 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45375diff
changeset | 34 | val rule_trace: bool Config.T | 
| 20289 | 35 | val trace: Proof.context -> thm list -> unit | 
| 6091 | 36 | val rule_tac: thm list -> thm list -> int -> tactic | 
| 20289 | 37 | val some_rule_tac: thm list -> Proof.context -> thm list -> int -> tactic | 
| 25270 | 38 | val intros_tac: thm list -> thm list -> tactic | 
| 36093 
0880493627ca
Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
 ballarin parents: 
33522diff
changeset | 39 | val try_intros_tac: thm list -> thm list -> tactic | 
| 17110 | 40 | val rule: thm list -> method | 
| 41 | val erule: int -> thm list -> method | |
| 42 | val drule: int -> thm list -> method | |
| 43 | val frule: int -> thm list -> method | |
| 27235 | 44 | val set_tactic: (thm list -> tactic) -> Proof.context -> Proof.context | 
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26291diff
changeset | 45 | val tactic: string * Position.T -> Proof.context -> method | 
| 27235 | 46 | val raw_tactic: string * Position.T -> Proof.context -> method | 
| 27729 | 47 | type src = Args.src | 
| 5824 | 48 | datatype text = | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 49 | Basic of Proof.context -> method | | 
| 15703 | 50 | Source of src | | 
| 20030 | 51 | Source_i of src | | 
| 5824 | 52 | Then of text list | | 
| 53 | Orelse of text list | | |
| 54 | Try of text | | |
| 19186 | 55 | Repeat1 of text | | 
| 51383 | 56 | Select_Goals of int * text | 
| 17857 | 57 | val primitive_text: (thm -> thm) -> text | 
| 58 | val succeed_text: text | |
| 17110 | 59 | val default_text: text | 
| 60 | val this_text: text | |
| 61 | val done_text: text | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 62 | val sorry_text: bool -> text | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 63 | val finish_text: text option * bool -> text | 
| 27729 | 64 | val print_methods: theory -> unit | 
| 26892 | 65 | val intern: theory -> xstring -> string | 
| 66 | val defined: theory -> string -> bool | |
| 20289 | 67 | val method: theory -> src -> Proof.context -> method | 
| 68 | val method_i: theory -> src -> Proof.context -> method | |
| 30512 | 69 | val syntax: 'a context_parser -> src -> Proof.context -> 'a * Proof.context | 
| 70 | val setup: binding -> (Proof.context -> method) context_parser -> string -> theory -> theory | |
| 30575 | 71 | val method_setup: bstring * Position.T -> Symbol_Pos.text * Position.T -> string -> | 
| 72 | theory -> theory | |
| 30540 | 73 | type modifier = (Proof.context -> Proof.context) * attribute | 
| 74 | val section: modifier parser list -> thm list context_parser | |
| 75 | val sections: modifier parser list -> thm list list context_parser | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 76 | type text_range = text * Position.range | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 77 | val parse: text_range parser | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 78 | val text: text_range option -> text option | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 79 | val position: text_range option -> Position.T | 
| 5824 | 80 | end; | 
| 81 | ||
| 82 | structure Method: METHOD = | |
| 83 | struct | |
| 84 | ||
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 85 | (** proof methods **) | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 86 | |
| 17110 | 87 | (* datatype method *) | 
| 11731 | 88 | |
| 18227 | 89 | datatype method = Meth of thm list -> cases_tactic; | 
| 11731 | 90 | |
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 91 | fun apply meth ctxt = let val Meth m = meth ctxt in m end; | 
| 11731 | 92 | |
| 17756 | 93 | val RAW_METHOD_CASES = Meth; | 
| 11731 | 94 | |
| 17110 | 95 | fun RAW_METHOD tac = RAW_METHOD_CASES (NO_CASES o tac); | 
| 12144 | 96 | |
| 17110 | 97 | fun METHOD_CASES tac = RAW_METHOD_CASES (fn facts => | 
| 21687 | 98 | Seq.THEN (ALLGOALS Goal.conjunction_tac, tac facts)); | 
| 8372 | 99 | |
| 21687 | 100 | fun METHOD tac = RAW_METHOD (fn facts => ALLGOALS Goal.conjunction_tac THEN tac facts); | 
| 5824 | 101 | |
| 102 | val fail = METHOD (K no_tac); | |
| 103 | val succeed = METHOD (K all_tac); | |
| 104 | ||
| 105 | ||
| 17110 | 106 | (* insert facts *) | 
| 7419 | 107 | |
| 108 | local | |
| 5824 | 109 | |
| 21579 | 110 | fun cut_rule_tac rule = | 
| 111 | Tactic.rtac (Drule.forall_intr_vars rule COMP_INCR revcut_rl); | |
| 6981 | 112 | |
| 7419 | 113 | in | 
| 5824 | 114 | |
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 115 | fun insert_tac [] _ = all_tac | 
| 7419 | 116 | | insert_tac facts i = EVERY (map (fn th => cut_rule_tac th i) facts); | 
| 6981 | 117 | |
| 7555 | 118 | val insert_facts = METHOD (ALLGOALS o insert_tac); | 
| 7664 | 119 | fun insert thms = METHOD (fn _ => ALLGOALS (insert_tac thms)); | 
| 7419 | 120 | |
| 9706 | 121 | fun SIMPLE_METHOD tac = METHOD (fn facts => ALLGOALS (insert_tac facts) THEN tac); | 
| 21592 | 122 | fun SIMPLE_METHOD'' quant tac = METHOD (fn facts => quant (insert_tac facts THEN' tac)); | 
| 123 | val SIMPLE_METHOD' = SIMPLE_METHOD'' HEADGOAL; | |
| 9706 | 124 | |
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 125 | end; | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 126 | |
| 9706 | 127 | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 128 | (* cheating *) | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 129 | |
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 130 | fun cheating int = METHOD (fn _ => fn st => | 
| 32969 | 131 | if int orelse ! quick_and_dirty then | 
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 132 | ALLGOALS Skip_Proof.cheat_tac st | 
| 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 133 | else error "Cheating requires quick_and_dirty mode!"); | 
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 134 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 135 | |
| 17110 | 136 | (* unfold intro/elim rules *) | 
| 137 | ||
| 21592 | 138 | fun intro ths = SIMPLE_METHOD' (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.match_tac ths)); | 
| 139 | fun elim ths = SIMPLE_METHOD' (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.ematch_tac ths)); | |
| 17110 | 140 | |
| 141 | ||
| 12384 | 142 | (* unfold/fold definitions *) | 
| 143 | ||
| 35624 | 144 | fun unfold_meth ths ctxt = SIMPLE_METHOD (CHANGED_PROP (Local_Defs.unfold_tac ctxt ths)); | 
| 145 | fun fold_meth ths ctxt = SIMPLE_METHOD (CHANGED_PROP (Local_Defs.fold_tac ctxt ths)); | |
| 6532 | 146 | |
| 12384 | 147 | |
| 12829 | 148 | (* atomize rule statements *) | 
| 149 | ||
| 35625 | 150 | fun atomize false = SIMPLE_METHOD' (CHANGED_PROP o Object_Logic.atomize_prems_tac) | 
| 151 | | atomize true = RAW_METHOD (K (HEADGOAL (CHANGED_PROP o Object_Logic.full_atomize_tac))); | |
| 12829 | 152 | |
| 153 | ||
| 18039 | 154 | (* this -- resolve facts directly *) | 
| 12384 | 155 | |
| 17110 | 156 | val this = METHOD (EVERY o map (HEADGOAL o Tactic.rtac)); | 
| 9484 | 157 | |
| 158 | ||
| 18039 | 159 | (* fact -- composition by facts from context *) | 
| 160 | ||
| 42360 | 161 | fun fact [] ctxt = SIMPLE_METHOD' (Proof_Context.some_fact_tac ctxt) | 
| 162 | | fact rules _ = SIMPLE_METHOD' (Proof_Context.fact_tac rules); | |
| 18039 | 163 | |
| 164 | ||
| 17110 | 165 | (* assumption *) | 
| 7419 | 166 | |
| 167 | local | |
| 168 | ||
| 19778 | 169 | fun cond_rtac cond rule = SUBGOAL (fn (prop, i) => | 
| 170 | if cond (Logic.strip_assums_concl prop) | |
| 171 | then Tactic.rtac rule i else no_tac); | |
| 7419 | 172 | |
| 29857 
2cc976ed8a3c
FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
 kleing parents: 
29301diff
changeset | 173 | in | 
| 
2cc976ed8a3c
FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
 kleing parents: 
29301diff
changeset | 174 | |
| 30234 
7dd251bce291
renamed Method.assumption_tac back to Method.assm_tac -- as assumption_tac it would have to be exactly the tactic behind the assumption method (with facts);
 wenzelm parents: 
30190diff
changeset | 175 | fun assm_tac ctxt = | 
| 17110 | 176 | assume_tac APPEND' | 
| 23349 | 177 | Goal.assume_rule_tac ctxt APPEND' | 
| 19778 | 178 | cond_rtac (can Logic.dest_equals) Drule.reflexive_thm APPEND' | 
| 179 | cond_rtac (can Logic.dest_term) Drule.termI; | |
| 17110 | 180 | |
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 181 | fun all_assm_tac ctxt = | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 182 | let | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 183 | fun tac i st = | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 184 | if i > Thm.nprems_of st then all_tac st | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 185 | else ((assm_tac ctxt i THEN tac i) ORELSE tac (i + 1)) st; | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 186 | in tac 1 end; | 
| 30567 
cd8e20f86795
close/all_assm_tac: finish all subgoals from left to right (cf. Proof.goal_tac a28d83e903ce) -- NB: ALLGOALS/THEN_ALL_NEW operate from right to left;
 wenzelm parents: 
30544diff
changeset | 187 | |
| 23349 | 188 | fun assumption ctxt = METHOD (HEADGOAL o | 
| 30234 
7dd251bce291
renamed Method.assumption_tac back to Method.assm_tac -- as assumption_tac it would have to be exactly the tactic behind the assumption method (with facts);
 wenzelm parents: 
30190diff
changeset | 189 | (fn [] => assm_tac ctxt | 
| 23349 | 190 | | [fact] => solve_tac [fact] | 
| 191 | | _ => K no_tac)); | |
| 192 | ||
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 193 | fun finish immed ctxt = | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 194 | METHOD (K ((if immed then all_assm_tac ctxt else all_tac) THEN flexflex_tac)); | 
| 7419 | 195 | |
| 196 | end; | |
| 197 | ||
| 198 | ||
| 17110 | 199 | (* rule etc. -- single-step refinements *) | 
| 12347 | 200 | |
| 42616 
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
 wenzelm parents: 
42380diff
changeset | 201 | val rule_trace = Attrib.setup_config_bool (Binding.name "rule_trace") (fn _ => false); | 
| 12347 | 202 | |
| 17110 | 203 | fun trace ctxt rules = | 
| 41379 | 204 | if Config.get ctxt rule_trace andalso not (null rules) then | 
| 51584 | 205 | Pretty.big_list "rules:" (map (Display.pretty_thm_item ctxt) rules) | 
| 21962 | 206 | |> Pretty.string_of |> tracing | 
| 207 | else (); | |
| 12347 | 208 | |
| 209 | local | |
| 210 | ||
| 18841 | 211 | fun gen_rule_tac tac rules facts = | 
| 212 | (fn i => fn st => | |
| 213 | if null facts then tac rules i st | |
| 214 | else Seq.maps (fn rule => (tac o single) rule i st) (Drule.multi_resolves facts rules)) | |
| 21687 | 215 | THEN_ALL_NEW Goal.norm_hhf_tac; | 
| 7130 | 216 | |
| 10744 | 217 | fun gen_arule_tac tac j rules facts = | 
| 218 | EVERY' (gen_rule_tac tac rules facts :: replicate j Tactic.assume_tac); | |
| 219 | ||
| 11785 | 220 | fun gen_some_rule_tac tac arg_rules ctxt facts = SUBGOAL (fn (goal, i) => | 
| 221 | let | |
| 222 | val rules = | |
| 223 | if not (null arg_rules) then arg_rules | |
| 33369 | 224 | else flat (Context_Rules.find_rules false facts goal ctxt) | 
| 12055 | 225 | in trace ctxt rules; tac rules facts i end); | 
| 10309 | 226 | |
| 10744 | 227 | fun meth tac x = METHOD (HEADGOAL o tac x); | 
| 228 | fun meth' tac x y = METHOD (HEADGOAL o tac x y); | |
| 8220 | 229 | |
| 7419 | 230 | in | 
| 231 | ||
| 10744 | 232 | val rule_tac = gen_rule_tac Tactic.resolve_tac; | 
| 233 | val rule = meth rule_tac; | |
| 234 | val some_rule_tac = gen_some_rule_tac rule_tac; | |
| 235 | val some_rule = meth' some_rule_tac; | |
| 236 | ||
| 237 | val erule = meth' (gen_arule_tac Tactic.eresolve_tac); | |
| 238 | val drule = meth' (gen_arule_tac Tactic.dresolve_tac); | |
| 239 | val frule = meth' (gen_arule_tac Tactic.forward_tac); | |
| 5824 | 240 | |
| 7419 | 241 | end; | 
| 242 | ||
| 243 | ||
| 25270 | 244 | (* intros_tac -- pervasive search spanned by intro rules *) | 
| 245 | ||
| 36093 
0880493627ca
Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
 ballarin parents: 
33522diff
changeset | 246 | fun gen_intros_tac goals intros facts = | 
| 
0880493627ca
Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
 ballarin parents: 
33522diff
changeset | 247 | goals (insert_tac facts THEN' | 
| 25270 | 248 | REPEAT_ALL_NEW (resolve_tac intros)) | 
| 249 | THEN Tactic.distinct_subgoals_tac; | |
| 250 | ||
| 36093 
0880493627ca
Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
 ballarin parents: 
33522diff
changeset | 251 | val intros_tac = gen_intros_tac ALLGOALS; | 
| 
0880493627ca
Graceful treatment of non-locale subgoals by methods unfold_locales and intro_locales.
 ballarin parents: 
33522diff
changeset | 252 | val try_intros_tac = gen_intros_tac TRYALL; | 
| 25270 | 253 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 254 | |
| 8351 | 255 | (* ML tactics *) | 
| 256 | ||
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 257 | structure ML_Tactic = Proof_Data | 
| 26472 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 258 | ( | 
| 27235 | 259 | type T = thm list -> tactic; | 
| 26472 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 260 | fun init _ = undefined; | 
| 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 261 | ); | 
| 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 262 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 263 | val set_tactic = ML_Tactic.put; | 
| 8351 | 264 | |
| 26472 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 265 | fun ml_tactic (txt, pos) ctxt = | 
| 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 266 | let | 
| 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 267 | val ctxt' = ctxt |> Context.proof_map | 
| 27235 | 268 | (ML_Context.expression pos | 
| 269 | "fun tactic (facts: thm list) : tactic" | |
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 270 | "Context.map_proof (Method.set_tactic tactic)" (ML_Lex.read pos txt)); | 
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37198diff
changeset | 271 | in Context.setmp_thread_data (SOME (Context.Proof ctxt)) (ML_Tactic.get ctxt') end; | 
| 23425 | 272 | |
| 273 | fun tactic txt ctxt = METHOD (ml_tactic txt ctxt); | |
| 274 | fun raw_tactic txt ctxt = RAW_METHOD (ml_tactic txt ctxt); | |
| 8351 | 275 | |
| 276 | ||
| 5824 | 277 | |
| 17110 | 278 | (** method syntax **) | 
| 279 | ||
| 280 | (* method text *) | |
| 281 | ||
| 282 | type src = Args.src; | |
| 5824 | 283 | |
| 17110 | 284 | datatype text = | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 285 | Basic of Proof.context -> method | | 
| 17110 | 286 | Source of src | | 
| 20030 | 287 | Source_i of src | | 
| 17110 | 288 | Then of text list | | 
| 289 | Orelse of text list | | |
| 290 | Try of text | | |
| 19186 | 291 | Repeat1 of text | | 
| 51383 | 292 | Select_Goals of int * text; | 
| 17110 | 293 | |
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 294 | fun primitive_text r = Basic (K (SIMPLE_METHOD (PRIMITIVE r))); | 
| 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 295 | val succeed_text = Basic (K succeed); | 
| 17110 | 296 | val default_text = Source (Args.src (("default", []), Position.none));
 | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 297 | val this_text = Basic (K this); | 
| 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32091diff
changeset | 298 | val done_text = Basic (K (SIMPLE_METHOD all_tac)); | 
| 51552 
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
 wenzelm parents: 
51383diff
changeset | 299 | fun sorry_text int = Basic (K (cheating int)); | 
| 17110 | 300 | |
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 301 | fun finish_text (NONE, immed) = Basic (finish immed) | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
48992diff
changeset | 302 | | finish_text (SOME txt, immed) = Then [txt, Basic (finish immed)]; | 
| 17110 | 303 | |
| 304 | ||
| 305 | (* method definitions *) | |
| 5824 | 306 | |
| 33522 | 307 | structure Methods = Theory_Data | 
| 22846 | 308 | ( | 
| 33095 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 wenzelm parents: 
33092diff
changeset | 309 | type T = ((src -> Proof.context -> method) * string) Name_Space.table; | 
| 33159 | 310 | val empty : T = Name_Space.empty_table "method"; | 
| 16448 | 311 | val extend = I; | 
| 33522 | 312 | fun merge data : T = Name_Space.merge_tables data; | 
| 22846 | 313 | ); | 
| 5824 | 314 | |
| 22846 | 315 | fun print_methods thy = | 
| 316 | let | |
| 42360 | 317 | val ctxt = Proof_Context.init_global thy; | 
| 24116 | 318 | val meths = Methods.get thy; | 
| 50301 | 319 | fun prt_meth (name, (_, "")) = Pretty.mark_str name | 
| 42813 
6c841fa92fa2
optional description for 'attribute_setup' and 'method_setup';
 wenzelm parents: 
42616diff
changeset | 320 | | prt_meth (name, (_, comment)) = | 
| 50301 | 321 | Pretty.block | 
| 322 | (Pretty.mark_str name :: Pretty.str ":" :: Pretty.brk 2 :: Pretty.text comment); | |
| 22846 | 323 | in | 
| 42358 
b47d41d9f4b5
Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
 wenzelm parents: 
41379diff
changeset | 324 | [Pretty.big_list "methods:" (map prt_meth (Name_Space.extern_table ctxt meths))] | 
| 22846 | 325 | |> Pretty.chunks |> Pretty.writeln | 
| 326 | end; | |
| 7611 | 327 | |
| 33092 
c859019d3ac5
eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
 wenzelm parents: 
32969diff
changeset | 328 | fun add_method name meth comment thy = thy | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46775diff
changeset | 329 | |> Methods.map (Name_Space.define (Context.Theory thy) true (name, (meth, comment)) #> snd); | 
| 31304 | 330 | |
| 5824 | 331 | |
| 332 | (* get methods *) | |
| 333 | ||
| 33095 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 wenzelm parents: 
33092diff
changeset | 334 | val intern = Name_Space.intern o #1 o Methods.get; | 
| 26892 | 335 | val defined = Symtab.defined o #2 o Methods.get; | 
| 336 | ||
| 20030 | 337 | fun method_i thy = | 
| 5824 | 338 | let | 
| 42380 | 339 | val (space, tab) = Methods.get thy; | 
| 5884 | 340 | fun meth src = | 
| 20030 | 341 | let val ((name, _), pos) = Args.dest_src src in | 
| 42380 | 342 | (case Symtab.lookup tab name of | 
| 48992 | 343 |           NONE => error ("Unknown proof method: " ^ quote name ^ Position.here pos)
 | 
| 42380 | 344 | | SOME (mth, _) => (Position.report pos (Name_Space.markup space name); mth src)) | 
| 5824 | 345 | end; | 
| 346 | in meth end; | |
| 347 | ||
| 45228 | 348 | fun method thy = method_i thy o Args.map_name (intern thy); | 
| 20030 | 349 | |
| 5824 | 350 | |
| 30512 | 351 | (* method setup *) | 
| 352 | ||
| 353 | fun syntax scan = Args.context_syntax "method" scan; | |
| 354 | ||
| 31304 | 355 | fun setup name scan = | 
| 356 | add_method name | |
| 357 | (fn src => fn ctxt => let val (m, ctxt') = syntax scan src ctxt in m ctxt' end); | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 358 | |
| 26385 
ae7564661e76
ML runtime compilation: pass position, tuned signature;
 wenzelm parents: 
26291diff
changeset | 359 | fun method_setup name (txt, pos) cmt = | 
| 26472 
9afdd61cf528
ml_tactic: non-critical version via proof data and thread data;
 wenzelm parents: 
26463diff
changeset | 360 | Context.theory_map (ML_Context.expression pos | 
| 30544 | 361 | "val (name, scan, comment): binding * (Proof.context -> Proof.method) context_parser * string" | 
| 362 | "Context.map_theory (Method.setup name scan comment)" | |
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 363 |     (ML_Lex.read Position.none ("(" ^ ML_Syntax.make_binding name ^ ", ") @
 | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 364 | ML_Lex.read pos txt @ | 
| 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 365 |       ML_Lex.read Position.none (", " ^ ML_Syntax.print_string cmt ^ ")")));
 | 
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 366 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 367 | |
| 5884 | 368 | |
| 17110 | 369 | (** concrete syntax **) | 
| 5824 | 370 | |
| 5884 | 371 | (* sections *) | 
| 5824 | 372 | |
| 20289 | 373 | type modifier = (Proof.context -> Proof.context) * attribute; | 
| 7268 | 374 | |
| 375 | local | |
| 376 | ||
| 24010 
2ef318813e1a
method section scanners: added [[declaration]] syntax, ignore sid-effects of thms;
 wenzelm parents: 
23937diff
changeset | 377 | fun thms ss = Scan.repeat (Scan.unless (Scan.lift (Scan.first ss)) Attrib.multi_thm) >> flat; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
46466diff
changeset | 378 | fun app (f, att) ths context = fold_map (Thm.apply_attribute att) ths (Context.map_proof f context); | 
| 5824 | 379 | |
| 30540 | 380 | in | 
| 381 | ||
| 24022 | 382 | fun section ss = Scan.depend (fn context => (Scan.first ss -- Scan.pass context (thms ss)) :|-- | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
46466diff
changeset | 383 | (fn (m, ths) => Scan.succeed (swap (app m ths context)))); | 
| 5884 | 384 | |
| 30540 | 385 | fun sections ss = Scan.repeat (section ss); | 
| 5824 | 386 | |
| 7268 | 387 | end; | 
| 388 | ||
| 5824 | 389 | |
| 30515 | 390 | (* extra rule methods *) | 
| 391 | ||
| 392 | fun xrule_meth m = | |
| 36950 | 393 | Scan.lift (Scan.optional (Args.parens Parse.nat) 0) -- Attrib.thms >> | 
| 30515 | 394 | (fn (n, ths) => K (m n ths)); | 
| 395 | ||
| 396 | ||
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 397 | (* outer parser *) | 
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 398 | |
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 399 | fun is_symid_meth s = | 
| 36959 
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
 wenzelm parents: 
36950diff
changeset | 400 | s <> "|" andalso s <> "?" andalso s <> "+" andalso Token.ident_or_symbolic s; | 
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 401 | |
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 402 | local | 
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 403 | |
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 404 | fun meth4 x = | 
| 36950 | 405 | (Parse.position (Parse.xname >> rpair []) >> (Source o Args.src) || | 
| 406 |   Parse.$$$ "(" |-- Parse.!!! (meth0 --| Parse.$$$ ")")) x
 | |
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 407 | and meth3 x = | 
| 36950 | 408 | (meth4 --| Parse.$$$ "?" >> Try || | 
| 409 | meth4 --| Parse.$$$ "+" >> Repeat1 || | |
| 51383 | 410 | meth4 -- (Parse.$$$ "[" |-- Scan.optional Parse.nat 1 --| Parse.$$$ "]") | 
| 411 | >> (Select_Goals o swap) || | |
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 412 | meth4) x | 
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 413 | and meth2 x = | 
| 36950 | 414 | (Parse.position (Parse.xname -- Args.parse1 is_symid_meth) >> (Source o Args.src) || | 
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 415 | meth3) x | 
| 36950 | 416 | and meth1 x = (Parse.enum1 "," meth2 >> (fn [m] => m | ms => Then ms)) x | 
| 417 | and meth0 x = (Parse.enum1 "|" meth1 >> (fn [m] => m | ms => Orelse ms)) x; | |
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 418 | |
| 49866 | 419 | in | 
| 420 | ||
| 421 | val parse = | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 422 | Scan.trace meth3 >> (fn (m, toks) => (m, Token.position_range_of toks)); | 
| 49866 | 423 | |
| 424 | end; | |
| 425 | ||
| 426 | ||
| 427 | (* text position *) | |
| 428 | ||
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 429 | type text_range = text * Position.range; | 
| 49866 | 430 | |
| 431 | fun text NONE = NONE | |
| 432 | | text (SOME (txt, _)) = SOME txt; | |
| 433 | ||
| 434 | fun position NONE = Position.none | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49866diff
changeset | 435 | | position (SOME (_, range)) = Position.set_range range; | 
| 27813 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 436 | |
| 
96fbe385a0d0
unified Args.T with OuterLex.token, renamed some operations;
 wenzelm parents: 
27751diff
changeset | 437 | |
| 18708 | 438 | (* theory setup *) | 
| 5824 | 439 | |
| 26463 | 440 | val _ = Context.>> (Context.map_theory | 
| 42616 
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
 wenzelm parents: 
42380diff
changeset | 441 | (setup (Binding.name "fail") (Scan.succeed (K fail)) "force failure" #> | 
| 30515 | 442 | setup (Binding.name "succeed") (Scan.succeed (K succeed)) "succeed" #> | 
| 443 | setup (Binding.name "-") (Scan.succeed (K insert_facts)) | |
| 444 | "do nothing (insert current facts only)" #> | |
| 445 | setup (Binding.name "insert") (Attrib.thms >> (K o insert)) | |
| 446 | "insert theorems, ignoring facts (improper)" #> | |
| 447 | setup (Binding.name "intro") (Attrib.thms >> (K o intro)) | |
| 448 | "repeatedly apply introduction rules" #> | |
| 449 | setup (Binding.name "elim") (Attrib.thms >> (K o elim)) | |
| 450 | "repeatedly apply elimination rules" #> | |
| 451 | setup (Binding.name "unfold") (Attrib.thms >> unfold_meth) "unfold definitions" #> | |
| 452 | setup (Binding.name "fold") (Attrib.thms >> fold_meth) "fold definitions" #> | |
| 453 | setup (Binding.name "atomize") (Args.mode "full" >> (K o atomize)) | |
| 454 | "present local premises as object-level statements" #> | |
| 455 | setup (Binding.name "rule") (Attrib.thms >> some_rule) "apply some intro/elim rule" #> | |
| 456 | setup (Binding.name "erule") (xrule_meth erule) "apply rule in elimination manner (improper)" #> | |
| 457 | setup (Binding.name "drule") (xrule_meth drule) "apply rule in destruct manner (improper)" #> | |
| 458 | setup (Binding.name "frule") (xrule_meth frule) "apply rule in forward manner (improper)" #> | |
| 459 | setup (Binding.name "this") (Scan.succeed (K this)) "apply current facts as rules" #> | |
| 460 | setup (Binding.name "fact") (Attrib.thms >> fact) "composition by facts from context" #> | |
| 461 | setup (Binding.name "assumption") (Scan.succeed assumption) | |
| 462 | "proof by assumption, preferring facts" #> | |
| 463 | setup (Binding.name "rename_tac") (Args.goal_spec -- Scan.lift (Scan.repeat1 Args.name) >> | |
| 464 | (fn (quant, xs) => K (SIMPLE_METHOD'' quant (Tactic.rename_tac xs)))) | |
| 465 | "rename parameters of goal" #> | |
| 36950 | 466 | setup (Binding.name "rotate_tac") (Args.goal_spec -- Scan.lift (Scan.optional Parse.int 1) >> | 
| 30515 | 467 | (fn (quant, i) => K (SIMPLE_METHOD'' quant (Tactic.rotate_tac i)))) | 
| 468 | "rotate assumptions of goal" #> | |
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 469 | setup (Binding.name "tactic") (Scan.lift Args.name_source_position >> tactic) | 
| 30515 | 470 | "ML tactic as proof method" #> | 
| 37198 
3af985b10550
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
 wenzelm parents: 
36959diff
changeset | 471 | setup (Binding.name "raw_tactic") (Scan.lift Args.name_source_position >> raw_tactic) | 
| 30515 | 472 | "ML tactic as raw proof method")); | 
| 5824 | 473 | |
| 474 | ||
| 16145 | 475 | (*final declarations of this structure!*) | 
| 476 | val unfold = unfold_meth; | |
| 477 | val fold = fold_meth; | |
| 478 | ||
| 5824 | 479 | end; | 
| 480 | ||
| 30508 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 481 | val RAW_METHOD_CASES = Method.RAW_METHOD_CASES; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 482 | val RAW_METHOD = Method.RAW_METHOD; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 483 | val METHOD_CASES = Method.METHOD_CASES; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 484 | val METHOD = Method.METHOD; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 485 | val SIMPLE_METHOD = Method.SIMPLE_METHOD; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 486 | val SIMPLE_METHOD' = Method.SIMPLE_METHOD'; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 487 | val SIMPLE_METHOD'' = Method.SIMPLE_METHOD''; | 
| 
958cc116d03b
tuned Method exports: non-pervasive type method (cf. Proof.method), pervasive METHOD combinators;
 wenzelm parents: 
30466diff
changeset | 488 |