| author | wenzelm | 
| Sun, 15 Apr 2007 14:31:47 +0200 | |
| changeset 22691 | 290454649b8c | 
| parent 22586 | d2008c5f8d99 | 
| child 22846 | fb79144af9a3 | 
| permissions | -rw-r--r-- | 
| 5824 | 1 | (* Title: Pure/Isar/method.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Markus Wenzel, TU Muenchen | |
| 4 | ||
| 17110 | 5 | Isar proof methods. | 
| 5824 | 6 | *) | 
| 7 | ||
| 8 | signature BASIC_METHOD = | |
| 9 | sig | |
| 17110 | 10 | val FINDGOAL: (int -> thm -> 'a Seq.seq) -> thm -> 'a Seq.seq | 
| 11 | val HEADGOAL: (int -> thm -> 'a Seq.seq) -> thm -> 'a Seq.seq | |
| 12 | type method | |
| 11731 | 13 | val trace_rules: bool ref | 
| 5824 | 14 | val print_methods: theory -> unit | 
| 15 | end; | |
| 16 | ||
| 17 | signature METHOD = | |
| 18 | sig | |
| 19 | include BASIC_METHOD | |
| 18227 | 20 | val apply: method -> thm list -> cases_tactic | 
| 21 | val RAW_METHOD_CASES: (thm list -> cases_tactic) -> method | |
| 17110 | 22 | val RAW_METHOD: (thm list -> tactic) -> method | 
| 18227 | 23 | val METHOD_CASES: (thm list -> cases_tactic) -> method | 
| 17110 | 24 | val METHOD: (thm list -> tactic) -> method | 
| 25 | val fail: method | |
| 26 | val succeed: method | |
| 27 | val insert_tac: thm list -> int -> tactic | |
| 28 | val insert: thm list -> method | |
| 29 | val insert_facts: method | |
| 30 | val SIMPLE_METHOD: tactic -> method | |
| 21592 | 31 | val SIMPLE_METHOD': (int -> tactic) -> method | 
| 32 | val SIMPLE_METHOD'': ((int -> tactic) -> tactic) -> (int -> tactic) -> method | |
| 17110 | 33 | val defer: int option -> method | 
| 34 | val prefer: int -> method | |
| 20289 | 35 | val cheating: bool -> Proof.context -> method | 
| 17110 | 36 | val intro: thm list -> method | 
| 37 | val elim: thm list -> method | |
| 20289 | 38 | val unfold: thm list -> Proof.context -> method | 
| 39 | val fold: thm list -> Proof.context -> method | |
| 17110 | 40 | val atomize: bool -> method | 
| 41 | val this: method | |
| 20289 | 42 | val fact: thm list -> Proof.context -> method | 
| 43 | val assumption: Proof.context -> method | |
| 44 | val close: bool -> Proof.context -> method | |
| 45 | val trace: Proof.context -> thm list -> unit | |
| 6091 | 46 | val rule_tac: thm list -> thm list -> int -> tactic | 
| 20289 | 47 | val some_rule_tac: thm list -> Proof.context -> thm list -> int -> tactic | 
| 17110 | 48 | val rule: thm list -> method | 
| 49 | val erule: int -> thm list -> method | |
| 50 | val drule: int -> thm list -> method | |
| 51 | val frule: int -> thm list -> method | |
| 20289 | 52 | val iprover_tac: Proof.context -> int option -> int -> tactic | 
| 53 | val set_tactic: (Proof.context -> thm list -> tactic) -> unit | |
| 54 | val tactic: string -> Proof.context -> method | |
| 17110 | 55 | type src | 
| 5824 | 56 | datatype text = | 
| 20289 | 57 | Basic of (Proof.context -> method) | | 
| 15703 | 58 | Source of src | | 
| 20030 | 59 | Source_i of src | | 
| 5824 | 60 | Then of text list | | 
| 61 | Orelse of text list | | |
| 62 | Try of text | | |
| 19186 | 63 | Repeat1 of text | | 
| 64 | SelectGoals of int * text | |
| 17857 | 65 | val primitive_text: (thm -> thm) -> text | 
| 66 | val succeed_text: text | |
| 17110 | 67 | val default_text: text | 
| 68 | val this_text: text | |
| 69 | val done_text: text | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 70 | val sorry_text: bool -> text | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 71 | val finish_text: text option * bool -> text | 
| 17110 | 72 | exception METHOD_FAIL of (string * Position.T) * exn | 
| 20289 | 73 | val method: theory -> src -> Proof.context -> method | 
| 74 | val method_i: theory -> src -> Proof.context -> method | |
| 75 | val add_methods: (bstring * (src -> Proof.context -> method) * string) list | |
| 17110 | 76 | -> theory -> theory | 
| 20289 | 77 | val add_method: bstring * (src -> Proof.context -> method) * string | 
| 17110 | 78 | -> theory -> theory | 
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 79 | val method_setup: bstring * string * string -> theory -> theory | 
| 18999 | 80 | val syntax: (Context.generic * Args.T list -> 'a * (Context.generic * Args.T list)) | 
| 21879 | 81 | -> src -> Proof.context -> 'a * Proof.context | 
| 17110 | 82 | val simple_args: (Args.T list -> 'a * Args.T list) | 
| 20289 | 83 |     -> ('a -> Proof.context -> method) -> src -> Proof.context -> method
 | 
| 84 | val ctxt_args: (Proof.context -> method) -> src -> Proof.context -> method | |
| 85 | val no_args: method -> src -> Proof.context -> method | |
| 17110 | 86 | type modifier | 
| 18999 | 87 | val sectioned_args: (Context.generic * Args.T list -> 'a * (Context.generic * Args.T list)) -> | 
| 17110 | 88 | (Args.T list -> modifier * Args.T list) list -> | 
| 20289 | 89 |     ('a -> Proof.context -> 'b) -> src -> Proof.context -> 'b
 | 
| 17110 | 90 | val bang_sectioned_args: | 
| 91 | (Args.T list -> modifier * Args.T list) list -> | |
| 20289 | 92 | (thm list -> Proof.context -> 'a) -> src -> Proof.context -> 'a | 
| 17110 | 93 | val bang_sectioned_args': | 
| 94 | (Args.T list -> modifier * Args.T list) list -> | |
| 18999 | 95 | (Context.generic * Args.T list -> 'a * (Context.generic * Args.T list)) -> | 
| 20289 | 96 |     ('a -> thm list -> Proof.context -> 'b) -> src -> Proof.context -> 'b
 | 
| 17110 | 97 | val only_sectioned_args: | 
| 98 | (Args.T list -> modifier * Args.T list) list -> | |
| 20289 | 99 | (Proof.context -> 'a) -> src -> Proof.context -> 'a | 
| 100 | val thms_ctxt_args: (thm list -> Proof.context -> 'a) -> src -> | |
| 101 | Proof.context -> 'a | |
| 102 | val thms_args: (thm list -> 'a) -> src -> Proof.context -> 'a | |
| 103 | val thm_args: (thm -> 'a) -> src -> Proof.context -> 'a | |
| 9539 | 104 |   val goal_args: (Args.T list -> 'a * Args.T list) -> ('a -> int -> tactic)
 | 
| 20289 | 105 | -> src -> Proof.context -> method | 
| 18999 | 106 | val goal_args': (Context.generic * Args.T list -> 'a * (Context.generic * Args.T list)) | 
| 20289 | 107 |     -> ('a -> int -> tactic) -> src -> Proof.context -> method
 | 
| 17110 | 108 | val goal_args_ctxt: (Args.T list -> 'a * Args.T list) -> | 
| 20289 | 109 | (Proof.context -> 'a -> int -> tactic) -> src -> Proof.context -> method | 
| 18999 | 110 | val goal_args_ctxt': (Context.generic * Args.T list -> 'a * (Context.generic * Args.T list)) -> | 
| 20289 | 111 | (Proof.context -> 'a -> int -> tactic) -> src -> Proof.context -> method | 
| 22118 | 112 | val parse: OuterLex.token list -> text * OuterLex.token list | 
| 5824 | 113 | end; | 
| 114 | ||
| 115 | structure Method: METHOD = | |
| 116 | struct | |
| 117 | ||
| 17110 | 118 | (** generic tools **) | 
| 119 | ||
| 120 | (* goal addressing *) | |
| 121 | ||
| 122 | fun FINDGOAL tac st = | |
| 123 | let fun find i n = if i > n then Seq.fail else Seq.APPEND (tac i, find (i + 1) n) | |
| 124 | in find 1 (Thm.nprems_of st) st end; | |
| 125 | ||
| 126 | fun HEADGOAL tac = tac 1; | |
| 127 | ||
| 128 | ||
| 5824 | 129 | |
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 130 | (** proof methods **) | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 131 | |
| 17110 | 132 | (* datatype method *) | 
| 11731 | 133 | |
| 18227 | 134 | datatype method = Meth of thm list -> cases_tactic; | 
| 11731 | 135 | |
| 17756 | 136 | fun apply (Meth m) = m; | 
| 11731 | 137 | |
| 17756 | 138 | val RAW_METHOD_CASES = Meth; | 
| 11731 | 139 | |
| 17110 | 140 | fun RAW_METHOD tac = RAW_METHOD_CASES (NO_CASES o tac); | 
| 12144 | 141 | |
| 17110 | 142 | fun METHOD_CASES tac = RAW_METHOD_CASES (fn facts => | 
| 21687 | 143 | Seq.THEN (ALLGOALS Goal.conjunction_tac, tac facts)); | 
| 8372 | 144 | |
| 21687 | 145 | fun METHOD tac = RAW_METHOD (fn facts => ALLGOALS Goal.conjunction_tac THEN tac facts); | 
| 5824 | 146 | |
| 147 | val fail = METHOD (K no_tac); | |
| 148 | val succeed = METHOD (K all_tac); | |
| 149 | ||
| 150 | ||
| 17110 | 151 | (* insert facts *) | 
| 7419 | 152 | |
| 153 | local | |
| 5824 | 154 | |
| 21579 | 155 | fun cut_rule_tac rule = | 
| 156 | Tactic.rtac (Drule.forall_intr_vars rule COMP_INCR revcut_rl); | |
| 6981 | 157 | |
| 7419 | 158 | in | 
| 5824 | 159 | |
| 7419 | 160 | fun insert_tac [] i = all_tac | 
| 161 | | insert_tac facts i = EVERY (map (fn th => cut_rule_tac th i) facts); | |
| 6981 | 162 | |
| 7555 | 163 | val insert_facts = METHOD (ALLGOALS o insert_tac); | 
| 7664 | 164 | fun insert thms = METHOD (fn _ => ALLGOALS (insert_tac thms)); | 
| 7419 | 165 | |
| 9706 | 166 | fun SIMPLE_METHOD tac = METHOD (fn facts => ALLGOALS (insert_tac facts) THEN tac); | 
| 21592 | 167 | fun SIMPLE_METHOD'' quant tac = METHOD (fn facts => quant (insert_tac facts THEN' tac)); | 
| 168 | val SIMPLE_METHOD' = SIMPLE_METHOD'' HEADGOAL; | |
| 9706 | 169 | |
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 170 | end; | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 171 | |
| 9706 | 172 | |
| 17110 | 173 | (* shuffle subgoals *) | 
| 174 | ||
| 175 | fun prefer i = METHOD (K (Tactic.defer_tac i THEN PRIMITIVE (Thm.permute_prems 0 ~1))); | |
| 18939 | 176 | fun defer opt_i = METHOD (K (Tactic.defer_tac (the_default 1 opt_i))); | 
| 17110 | 177 | |
| 178 | ||
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 179 | (* cheating *) | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 180 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 181 | fun cheating int ctxt = METHOD (K (setmp quick_and_dirty (int orelse ! quick_and_dirty) | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 182 | (SkipProof.cheat_tac (ProofContext.theory_of ctxt)))); | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 183 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 184 | |
| 17110 | 185 | (* unfold intro/elim rules *) | 
| 186 | ||
| 21592 | 187 | fun intro ths = SIMPLE_METHOD' (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.match_tac ths)); | 
| 188 | fun elim ths = SIMPLE_METHOD' (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.ematch_tac ths)); | |
| 17110 | 189 | |
| 190 | ||
| 12384 | 191 | (* unfold/fold definitions *) | 
| 192 | ||
| 18877 | 193 | fun unfold_meth ths ctxt = SIMPLE_METHOD (CHANGED_PROP (LocalDefs.unfold_tac ctxt ths)); | 
| 194 | fun fold_meth ths ctxt = SIMPLE_METHOD (CHANGED_PROP (LocalDefs.fold_tac ctxt ths)); | |
| 6532 | 195 | |
| 12384 | 196 | |
| 12829 | 197 | (* atomize rule statements *) | 
| 198 | ||
| 21592 | 199 | fun atomize false = SIMPLE_METHOD' (CHANGED_PROP o ObjectLogic.atomize_tac) | 
| 12829 | 200 | | atomize true = RAW_METHOD (K (HEADGOAL (CHANGED_PROP o ObjectLogic.full_atomize_tac))); | 
| 201 | ||
| 202 | ||
| 18039 | 203 | (* this -- resolve facts directly *) | 
| 12384 | 204 | |
| 17110 | 205 | val this = METHOD (EVERY o map (HEADGOAL o Tactic.rtac)); | 
| 9484 | 206 | |
| 207 | ||
| 18039 | 208 | (* fact -- composition by facts from context *) | 
| 209 | ||
| 21592 | 210 | fun fact [] ctxt = SIMPLE_METHOD' (ProofContext.some_fact_tac ctxt) | 
| 211 | | fact rules _ = SIMPLE_METHOD' (ProofContext.fact_tac rules); | |
| 18039 | 212 | |
| 213 | ||
| 17110 | 214 | (* assumption *) | 
| 7419 | 215 | |
| 216 | local | |
| 217 | ||
| 17110 | 218 | fun asm_tac ths = | 
| 219 | foldr (op APPEND') (K no_tac) (map (fn th => Tactic.rtac th THEN_ALL_NEW assume_tac) ths); | |
| 220 | ||
| 19778 | 221 | fun cond_rtac cond rule = SUBGOAL (fn (prop, i) => | 
| 222 | if cond (Logic.strip_assums_concl prop) | |
| 223 | then Tactic.rtac rule i else no_tac); | |
| 7419 | 224 | |
| 17110 | 225 | fun assm_tac ctxt = | 
| 226 | assume_tac APPEND' | |
| 20224 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20117diff
changeset | 227 | asm_tac (Assumption.prems_of ctxt) APPEND' | 
| 19778 | 228 | cond_rtac (can Logic.dest_equals) Drule.reflexive_thm APPEND' | 
| 229 | cond_rtac (can Logic.dest_term) Drule.termI; | |
| 17110 | 230 | |
| 231 | fun assumption_tac ctxt [] = assm_tac ctxt | |
| 232 | | assumption_tac _ [fact] = asm_tac [fact] | |
| 233 | | assumption_tac _ _ = K no_tac; | |
| 7419 | 234 | |
| 235 | in | |
| 236 | ||
| 17110 | 237 | fun assumption ctxt = METHOD (HEADGOAL o assumption_tac ctxt); | 
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 238 | fun close immed ctxt = METHOD (K | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 239 | (FILTER Thm.no_prems ((if immed then ALLGOALS (assm_tac ctxt) else all_tac) THEN flexflex_tac))); | 
| 7419 | 240 | |
| 241 | end; | |
| 242 | ||
| 243 | ||
| 17110 | 244 | (* rule etc. -- single-step refinements *) | 
| 12347 | 245 | |
| 17110 | 246 | val trace_rules = ref false; | 
| 12347 | 247 | |
| 17110 | 248 | fun trace ctxt rules = | 
| 21962 | 249 | if ! trace_rules andalso not (null rules) then | 
| 17110 | 250 | Pretty.big_list "rules:" (map (ProofContext.pretty_thm ctxt) rules) | 
| 21962 | 251 | |> Pretty.string_of |> tracing | 
| 252 | else (); | |
| 12347 | 253 | |
| 254 | local | |
| 255 | ||
| 18841 | 256 | fun gen_rule_tac tac rules facts = | 
| 257 | (fn i => fn st => | |
| 258 | if null facts then tac rules i st | |
| 259 | else Seq.maps (fn rule => (tac o single) rule i st) (Drule.multi_resolves facts rules)) | |
| 21687 | 260 | THEN_ALL_NEW Goal.norm_hhf_tac; | 
| 7130 | 261 | |
| 10744 | 262 | fun gen_arule_tac tac j rules facts = | 
| 263 | EVERY' (gen_rule_tac tac rules facts :: replicate j Tactic.assume_tac); | |
| 264 | ||
| 11785 | 265 | fun gen_some_rule_tac tac arg_rules ctxt facts = SUBGOAL (fn (goal, i) => | 
| 266 | let | |
| 267 | val rules = | |
| 268 | if not (null arg_rules) then arg_rules | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19307diff
changeset | 269 | else flat (ContextRules.find_rules false facts goal ctxt) | 
| 12055 | 270 | in trace ctxt rules; tac rules facts i end); | 
| 10309 | 271 | |
| 10744 | 272 | fun meth tac x = METHOD (HEADGOAL o tac x); | 
| 273 | fun meth' tac x y = METHOD (HEADGOAL o tac x y); | |
| 8220 | 274 | |
| 7419 | 275 | in | 
| 276 | ||
| 10744 | 277 | val rule_tac = gen_rule_tac Tactic.resolve_tac; | 
| 278 | val rule = meth rule_tac; | |
| 279 | val some_rule_tac = gen_some_rule_tac rule_tac; | |
| 280 | val some_rule = meth' some_rule_tac; | |
| 281 | ||
| 282 | val erule = meth' (gen_arule_tac Tactic.eresolve_tac); | |
| 283 | val drule = meth' (gen_arule_tac Tactic.dresolve_tac); | |
| 284 | val frule = meth' (gen_arule_tac Tactic.forward_tac); | |
| 5824 | 285 | |
| 7419 | 286 | end; | 
| 287 | ||
| 288 | ||
| 17587 | 289 | (* iprover -- intuitionistic proof search *) | 
| 17110 | 290 | |
| 291 | local | |
| 292 | ||
| 293 | val remdups_tac = SUBGOAL (fn (g, i) => | |
| 294 | let val prems = Logic.strip_assums_hyp g in | |
| 19046 
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
 wenzelm parents: 
18999diff
changeset | 295 | REPEAT_DETERM_N (length prems - length (distinct op aconv prems)) | 
| 17110 | 296 | (Tactic.ematch_tac [Drule.remdups_rl] i THEN Tactic.eq_assume_tac i) | 
| 297 | end); | |
| 298 | ||
| 299 | fun REMDUPS tac = tac THEN_ALL_NEW remdups_tac; | |
| 300 | ||
| 301 | val bires_tac = Tactic.biresolution_from_nets_tac ContextRules.orderlist; | |
| 302 | ||
| 303 | fun safe_step_tac ctxt = | |
| 304 | ContextRules.Swrap ctxt | |
| 305 | (eq_assume_tac ORELSE' | |
| 306 | bires_tac true (ContextRules.netpair_bang ctxt)); | |
| 8195 | 307 | |
| 17110 | 308 | fun unsafe_step_tac ctxt = | 
| 309 | ContextRules.wrap ctxt | |
| 310 | (assume_tac APPEND' | |
| 311 | bires_tac false (ContextRules.netpair_bang ctxt) APPEND' | |
| 312 | bires_tac false (ContextRules.netpair ctxt)); | |
| 313 | ||
| 314 | fun step_tac ctxt i = | |
| 315 | REPEAT_DETERM1 (REMDUPS (safe_step_tac ctxt) i) ORELSE | |
| 316 | REMDUPS (unsafe_step_tac ctxt) i; | |
| 317 | ||
| 318 | fun intprover_tac ctxt gs d lim = SUBGOAL (fn (g, i) => if d > lim then no_tac else | |
| 319 | let | |
| 320 | val ps = Logic.strip_assums_hyp g; | |
| 321 | val c = Logic.strip_assums_concl g; | |
| 322 | in | |
| 18921 | 323 | if member (fn ((ps1, c1), (ps2, c2)) => | 
| 19307 | 324 | c1 aconv c2 andalso | 
| 325 | length ps1 = length ps2 andalso | |
| 326 | gen_eq_set (op aconv) (ps1, ps2)) gs (ps, c) then no_tac | |
| 17110 | 327 | else (step_tac ctxt THEN_ALL_NEW intprover_tac ctxt ((ps, c) :: gs) (d + 1) lim) i | 
| 328 | end); | |
| 329 | ||
| 330 | in | |
| 331 | ||
| 17587 | 332 | fun iprover_tac ctxt opt_lim = | 
| 18939 | 333 | SELECT_GOAL (DEEPEN (2, the_default 20 opt_lim) (intprover_tac ctxt [] 0) 4 1); | 
| 17110 | 334 | |
| 335 | end; | |
| 8195 | 336 | |
| 337 | ||
| 8351 | 338 | (* ML tactics *) | 
| 339 | ||
| 20289 | 340 | val tactic_ref = ref ((fn _ => raise Match): Proof.context -> thm list -> tactic); | 
| 8351 | 341 | fun set_tactic f = tactic_ref := f; | 
| 342 | ||
| 343 | fun tactic txt ctxt = METHOD (fn facts => | |
| 22134 
ab01073210e4
ML tactic: proper context for compile and runtime;
 wenzelm parents: 
22118diff
changeset | 344 | (ML_Context.use_mltext | 
| 
ab01073210e4
ML tactic: proper context for compile and runtime;
 wenzelm parents: 
22118diff
changeset | 345 |    ("let fun tactic (ctxt: Proof.context) (facts: thm list) : tactic =\n"
 | 
| 
ab01073210e4
ML tactic: proper context for compile and runtime;
 wenzelm parents: 
22118diff
changeset | 346 | ^ txt ^ "\nin Method.set_tactic tactic end") false (SOME (Context.Proof ctxt)); | 
| 
ab01073210e4
ML tactic: proper context for compile and runtime;
 wenzelm parents: 
22118diff
changeset | 347 | ML_Context.setmp (SOME (Context.Proof ctxt)) (! tactic_ref ctxt) facts)); | 
| 8351 | 348 | |
| 349 | ||
| 5824 | 350 | |
| 17110 | 351 | (** method syntax **) | 
| 352 | ||
| 353 | (* method text *) | |
| 354 | ||
| 355 | type src = Args.src; | |
| 5824 | 356 | |
| 17110 | 357 | datatype text = | 
| 20289 | 358 | Basic of (Proof.context -> method) | | 
| 17110 | 359 | Source of src | | 
| 20030 | 360 | Source_i of src | | 
| 17110 | 361 | Then of text list | | 
| 362 | Orelse of text list | | |
| 363 | Try of text | | |
| 19186 | 364 | Repeat1 of text | | 
| 365 | SelectGoals of int * text; | |
| 17110 | 366 | |
| 17857 | 367 | val primitive_text = Basic o K o SIMPLE_METHOD o PRIMITIVE; | 
| 368 | val succeed_text = Basic (K succeed); | |
| 17110 | 369 | val default_text = Source (Args.src (("default", []), Position.none));
 | 
| 370 | val this_text = Basic (K this); | |
| 371 | val done_text = Basic (K (SIMPLE_METHOD all_tac)); | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 372 | val sorry_text = Basic o cheating; | 
| 17110 | 373 | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 374 | fun finish_text (NONE, immed) = Basic (close immed) | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 375 | | finish_text (SOME txt, immed) = Then [txt, Basic (close immed)]; | 
| 17110 | 376 | |
| 377 | ||
| 378 | (* method definitions *) | |
| 5824 | 379 | |
| 16448 | 380 | structure MethodsData = TheoryDataFun | 
| 381 | (struct | |
| 5824 | 382 | val name = "Isar/methods"; | 
| 20289 | 383 | type T = (((src -> Proof.context -> method) * string) * stamp) NameSpace.table; | 
| 5824 | 384 | |
| 16347 | 385 | val empty = NameSpace.empty_table; | 
| 6546 | 386 | val copy = I; | 
| 16448 | 387 | val extend = I; | 
| 17496 | 388 | fun merge _ tables = NameSpace.merge_tables (eq_snd (op =)) tables handle Symtab.DUPS dups => | 
| 16347 | 389 |     error ("Attempt to merge different versions of method(s) " ^ commas_quote dups);
 | 
| 5824 | 390 | |
| 16347 | 391 | fun print _ meths = | 
| 5824 | 392 | let | 
| 393 | fun prt_meth (name, ((_, comment), _)) = Pretty.block | |
| 6849 | 394 | [Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment]; | 
| 5824 | 395 | in | 
| 16347 | 396 | [Pretty.big_list "methods:" (map prt_meth (NameSpace.extern_table meths))] | 
| 9222 | 397 | |> Pretty.chunks |> Pretty.writeln | 
| 5824 | 398 | end; | 
| 16448 | 399 | end); | 
| 5824 | 400 | |
| 18708 | 401 | val _ = Context.add_setup MethodsData.init; | 
| 5824 | 402 | val print_methods = MethodsData.print; | 
| 7611 | 403 | |
| 5824 | 404 | |
| 405 | (* get methods *) | |
| 406 | ||
| 5916 | 407 | exception METHOD_FAIL of (string * Position.T) * exn; | 
| 408 | ||
| 20030 | 409 | fun method_i thy = | 
| 5824 | 410 | let | 
| 20030 | 411 | val meths = #2 (MethodsData.get thy); | 
| 5884 | 412 | fun meth src = | 
| 20030 | 413 | let val ((name, _), pos) = Args.dest_src src in | 
| 17412 | 414 | (case Symtab.lookup meths name of | 
| 15531 | 415 |           NONE => error ("Unknown proof method: " ^ quote name ^ Position.str_of pos)
 | 
| 416 | | SOME ((mth, _), _) => transform_failure (curry METHOD_FAIL (name, pos)) (mth src)) | |
| 5824 | 417 | end; | 
| 418 | in meth end; | |
| 419 | ||
| 20030 | 420 | fun method thy = method_i thy o Args.map_name (NameSpace.intern (#1 (MethodsData.get thy))); | 
| 421 | ||
| 5824 | 422 | |
| 17110 | 423 | (* add method *) | 
| 5824 | 424 | |
| 425 | fun add_methods raw_meths thy = | |
| 426 | let | |
| 16145 | 427 | val new_meths = raw_meths |> map (fn (name, f, comment) => | 
| 16347 | 428 | (name, ((f, comment), stamp ()))); | 
| 5824 | 429 | |
| 17110 | 430 | fun add meths = NameSpace.extend_table (Sign.naming_of thy) (meths, new_meths) | 
| 16347 | 431 | handle Symtab.DUPS dups => | 
| 432 |         error ("Duplicate declaration of method(s) " ^ commas_quote dups);
 | |
| 433 | in MethodsData.map add thy end; | |
| 5824 | 434 | |
| 9194 | 435 | val add_method = add_methods o Library.single; | 
| 436 | ||
| 5824 | 437 | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 438 | (* method_setup *) | 
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 439 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 440 | fun method_setup (name, txt, cmt) = | 
| 22118 | 441 | ML_Context.use_let | 
| 442 | "val method: bstring * (Method.src -> Proof.context -> Proof.method) * string" | |
| 22086 | 443 | "Context.map_theory (Method.add_method method)" | 
| 444 |     ("(" ^ quote name ^ ", " ^ txt ^ ", " ^ quote cmt ^ ")")
 | |
| 445 | |> Context.theory_map; | |
| 17356 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 446 | |
| 
09afdf37cdb3
added cheating, sorry_text (from skip_proofs.ML);
 wenzelm parents: 
17314diff
changeset | 447 | |
| 5884 | 448 | |
| 17110 | 449 | (** concrete syntax **) | 
| 5824 | 450 | |
| 5884 | 451 | (* basic *) | 
| 452 | ||
| 18999 | 453 | fun syntax scan = Args.context_syntax "method" scan; | 
| 5824 | 454 | |
| 17110 | 455 | fun simple_args scan f src ctxt : method = | 
| 21879 | 456 | fst (syntax (Scan.lift (scan >> (fn x => f x ctxt))) src ctxt); | 
| 8351 | 457 | |
| 20289 | 458 | fun ctxt_args (f: Proof.context -> method) src ctxt = | 
| 21879 | 459 | fst (syntax (Scan.succeed (f ctxt)) src ctxt); | 
| 7555 | 460 | |
| 461 | fun no_args m = ctxt_args (K m); | |
| 5884 | 462 | |
| 463 | ||
| 464 | (* sections *) | |
| 5824 | 465 | |
| 20289 | 466 | type modifier = (Proof.context -> Proof.context) * attribute; | 
| 7268 | 467 | |
| 468 | local | |
| 469 | ||
| 8381 | 470 | fun sect ss = Scan.first (map Scan.lift ss); | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19307diff
changeset | 471 | fun thms ss = Scan.repeat (Scan.unless (sect ss) Attrib.multi_thm) >> flat; | 
| 5884 | 472 | |
| 19186 | 473 | fun app (f, att) (context, ths) = foldl_map att (Context.map_proof f context, ths); | 
| 5824 | 474 | |
| 18999 | 475 | fun section ss = (sect ss -- thms ss) :-- (fn (m, ths) => Scan.depend (fn context => | 
| 19186 | 476 | Scan.succeed (app m (context, ths)))) >> #2; | 
| 5884 | 477 | |
| 7601 | 478 | fun sectioned args ss = args -- Scan.repeat (section ss); | 
| 5884 | 479 | |
| 7268 | 480 | in | 
| 5824 | 481 | |
| 5884 | 482 | fun sectioned_args args ss f src ctxt = | 
| 21879 | 483 | let val ((x, _), ctxt') = syntax (sectioned args ss) src ctxt | 
| 5921 | 484 | in f x ctxt' end; | 
| 5884 | 485 | |
| 7601 | 486 | fun bang_sectioned_args ss f = sectioned_args Args.bang_facts ss f; | 
| 9777 | 487 | fun bang_sectioned_args' ss scan f = | 
| 488 | sectioned_args (Args.bang_facts -- scan >> swap) ss (uncurry f); | |
| 7601 | 489 | fun only_sectioned_args ss f = sectioned_args (Scan.succeed ()) ss (fn () => f); | 
| 7268 | 490 | |
| 18999 | 491 | fun thms_ctxt_args f = sectioned_args (thms []) [] f; | 
| 8093 | 492 | fun thms_args f = thms_ctxt_args (K o f); | 
| 9706 | 493 | fun thm_args f = thms_args (fn [thm] => f thm | _ => error "Single theorem expected"); | 
| 5824 | 494 | |
| 7268 | 495 | end; | 
| 496 | ||
| 5824 | 497 | |
| 17587 | 498 | (* iprover syntax *) | 
| 12347 | 499 | |
| 500 | local | |
| 501 | ||
| 502 | val introN = "intro"; | |
| 503 | val elimN = "elim"; | |
| 504 | val destN = "dest"; | |
| 505 | val ruleN = "rule"; | |
| 506 | ||
| 507 | fun modifier name kind kind' att = | |
| 15531 | 508 | Args.$$$ name |-- (kind >> K NONE || kind' |-- Args.nat --| Args.colon >> SOME) | 
| 20289 | 509 | >> (pair (I: Proof.context -> Proof.context) o att); | 
| 12347 | 510 | |
| 17587 | 511 | val iprover_modifiers = | 
| 18728 | 512 | [modifier destN Args.bang_colon Args.bang ContextRules.dest_bang, | 
| 513 | modifier destN Args.colon (Scan.succeed ()) ContextRules.dest, | |
| 514 | modifier elimN Args.bang_colon Args.bang ContextRules.elim_bang, | |
| 515 | modifier elimN Args.colon (Scan.succeed ()) ContextRules.elim, | |
| 516 | modifier introN Args.bang_colon Args.bang ContextRules.intro_bang, | |
| 517 | modifier introN Args.colon (Scan.succeed ()) ContextRules.intro, | |
| 518 | Args.del -- Args.colon >> K (I, ContextRules.rule_del)]; | |
| 12347 | 519 | |
| 520 | in | |
| 521 | ||
| 18640 | 522 | val iprover_meth = | 
| 523 | bang_sectioned_args' iprover_modifiers (Scan.lift (Scan.option Args.nat)) | |
| 524 | (fn n => fn prems => fn ctxt => METHOD (fn facts => | |
| 525 | HEADGOAL (insert_tac (prems @ facts) THEN' | |
| 526 | ObjectLogic.atomize_tac THEN' iprover_tac ctxt n))); | |
| 12347 | 527 | |
| 528 | end; | |
| 529 | ||
| 530 | ||
| 9539 | 531 | (* tactic syntax *) | 
| 8238 | 532 | |
| 10744 | 533 | fun nat_thms_args f = uncurry f oo | 
| 21879 | 534 | (fst oo syntax (Scan.lift (Scan.optional (Args.parens Args.nat) 0) -- Attrib.thms)); | 
| 10744 | 535 | |
| 21879 | 536 | fun goal_args' args tac src ctxt = fst (syntax (Args.goal_spec HEADGOAL -- args >> | 
| 21592 | 537 | (fn (quant, s) => SIMPLE_METHOD'' quant (tac s))) src ctxt); | 
| 8537 | 538 | |
| 9539 | 539 | fun goal_args args tac = goal_args' (Scan.lift args) tac; | 
| 8238 | 540 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 541 | fun goal_args_ctxt' args tac src ctxt = | 
| 21879 | 542 | fst (syntax (Args.goal_spec HEADGOAL -- args >> | 
| 21592 | 543 | (fn (quant, s) => SIMPLE_METHOD'' quant (tac ctxt s))) src ctxt); | 
| 8238 | 544 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 545 | fun goal_args_ctxt args tac = goal_args_ctxt' (Scan.lift args) tac; | 
| 5824 | 546 | |
| 14718 | 547 | |
| 18708 | 548 | (* theory setup *) | 
| 5824 | 549 | |
| 18708 | 550 | val _ = Context.add_setup (add_methods | 
| 5824 | 551 |  [("fail", no_args fail, "force failure"),
 | 
| 552 |   ("succeed", no_args succeed, "succeed"),
 | |
| 9587 | 553 |   ("-", no_args insert_facts, "do nothing (insert current facts only)"),
 | 
| 9539 | 554 |   ("insert", thms_args insert, "insert theorems, ignoring facts (improper)"),
 | 
| 12384 | 555 |   ("intro", thms_args intro, "repeatedly apply introduction rules"),
 | 
| 556 |   ("elim", thms_args elim, "repeatedly apply elimination rules"),
 | |
| 18877 | 557 |   ("unfold", thms_ctxt_args unfold_meth, "unfold definitions"),
 | 
| 558 |   ("fold", thms_ctxt_args fold_meth, "fold definitions"),
 | |
| 21879 | 559 |   ("atomize", (atomize o fst) oo syntax (Args.mode "full"),
 | 
| 11962 | 560 | "present local premises as object-level statements"), | 
| 18640 | 561 |   ("iprover", iprover_meth, "intuitionistic proof search"),
 | 
| 12384 | 562 |   ("rule", thms_ctxt_args some_rule, "apply some intro/elim rule"),
 | 
| 10744 | 563 |   ("erule", nat_thms_args erule, "apply rule in elimination manner (improper)"),
 | 
| 564 |   ("drule", nat_thms_args drule, "apply rule in destruct manner (improper)"),
 | |
| 565 |   ("frule", nat_thms_args frule, "apply rule in forward manner (improper)"),
 | |
| 8195 | 566 |   ("this", no_args this, "apply current facts as rules"),
 | 
| 18039 | 567 |   ("fact", thms_ctxt_args fact, "composition by facts from context"),
 | 
| 8238 | 568 |   ("assumption", ctxt_args assumption, "proof by assumption, preferring facts"),
 | 
| 20335 | 569 |   ("rename_tac", goal_args (Scan.repeat1 Args.name) Tactic.rename_params_tac,
 | 
| 22586 | 570 | "rename parameters of goal"), | 
| 20335 | 571 |   ("rotate_tac", goal_args (Scan.optional Args.int 1) Tactic.rotate_tac,
 | 
| 572 | "rotate assumptions of goal"), | |
| 18708 | 573 |   ("tactic", simple_args Args.name tactic, "ML tactic as proof method")]);
 | 
| 5824 | 574 | |
| 575 | ||
| 22118 | 576 | (* outer parser *) | 
| 577 | ||
| 578 | local | |
| 579 | ||
| 580 | structure T = OuterLex; | |
| 581 | structure P = OuterParse; | |
| 582 | ||
| 583 | fun is_symid_meth s = | |
| 584 | s <> "|" andalso s <> "?" andalso s <> "+" andalso T.is_sid s; | |
| 585 | ||
| 586 | fun meth4 x = | |
| 587 | (P.position (P.xname >> rpair []) >> (Source o Args.src) || | |
| 588 |   P.$$$ "(" |-- P.!!! (meth0 --| P.$$$ ")")) x
 | |
| 589 | and meth3 x = | |
| 590 | (meth4 --| P.$$$ "?" >> Try || | |
| 591 | meth4 --| P.$$$ "+" >> Repeat1 || | |
| 592 | meth4 -- (P.$$$ "[" |-- Scan.optional P.nat 1 --| P.$$$ "]") >> (SelectGoals o swap) || | |
| 593 | meth4) x | |
| 594 | and meth2 x = | |
| 595 | (P.position (P.xname -- P.args1 is_symid_meth false) >> (Source o Args.src) || | |
| 596 | meth3) x | |
| 597 | and meth1 x = (P.enum1 "," meth2 >> (fn [m] => m | ms => Then ms)) x | |
| 598 | and meth0 x = (P.enum1 "|" meth1 >> (fn [m] => m | ms => Orelse ms)) x; | |
| 599 | ||
| 600 | in val parse = meth3 end; | |
| 601 | ||
| 602 | ||
| 16145 | 603 | (*final declarations of this structure!*) | 
| 604 | val unfold = unfold_meth; | |
| 605 | val fold = fold_meth; | |
| 606 | ||
| 5824 | 607 | end; | 
| 608 | ||
| 609 | structure BasicMethod: BASIC_METHOD = Method; | |
| 610 | open BasicMethod; |