| author | huffman | 
| Mon, 07 Mar 2005 23:54:01 +0100 | |
| changeset 15587 | f363e6e080e7 | 
| parent 15574 | b1d1b5bfc464 | 
| child 15703 | 727ef1b8b3ee | 
| permissions | -rw-r--r-- | 
| 5824 | 1 | (* Title: Pure/Isar/method.ML | 
| 2 | ID: $Id$ | |
| 3 | Author: Markus Wenzel, TU Muenchen | |
| 4 | ||
| 5 | Proof methods. | |
| 6 | *) | |
| 7 | ||
| 8 | signature BASIC_METHOD = | |
| 9 | sig | |
| 11731 | 10 | val trace_rules: bool ref | 
| 5824 | 11 | val print_methods: theory -> unit | 
| 12 | val Method: bstring -> (Args.src -> Proof.context -> Proof.method) -> string -> unit | |
| 13 | end; | |
| 14 | ||
| 15 | signature METHOD = | |
| 16 | sig | |
| 17 | include BASIC_METHOD | |
| 12055 | 18 | val trace: Proof.context -> thm list -> unit | 
| 12144 | 19 | val RAW_METHOD: (thm list -> tactic) -> Proof.method | 
| 20 | val RAW_METHOD_CASES: | |
| 21 | (thm list -> thm -> (thm * (string * RuleCases.T) list) Seq.seq) -> Proof.method | |
| 6091 | 22 | val METHOD: (thm list -> tactic) -> Proof.method | 
| 8372 | 23 | val METHOD_CASES: | 
| 24 | (thm list -> thm -> (thm * (string * RuleCases.T) list) Seq.seq) -> Proof.method | |
| 9706 | 25 | val SIMPLE_METHOD: tactic -> Proof.method | 
| 26 | val SIMPLE_METHOD': ((int -> tactic) -> tactic) -> (int -> tactic) -> Proof.method | |
| 5824 | 27 | val fail: Proof.method | 
| 28 | val succeed: Proof.method | |
| 8167 | 29 | val defer: int option -> Proof.method | 
| 30 | val prefer: int -> Proof.method | |
| 7419 | 31 | val insert_tac: thm list -> int -> tactic | 
| 7574 | 32 | val insert: thm list -> Proof.method | 
| 7555 | 33 | val insert_facts: Proof.method | 
| 7601 | 34 | val unfold: thm list -> Proof.method | 
| 7419 | 35 | val fold: thm list -> Proof.method | 
| 36 | val multi_resolve: thm list -> thm -> thm Seq.seq | |
| 37 | val multi_resolves: thm list -> thm list -> thm Seq.seq | |
| 12347 | 38 | val rules_tac: Proof.context -> int option -> int -> tactic | 
| 6091 | 39 | val rule_tac: thm list -> thm list -> int -> tactic | 
| 10309 | 40 | val some_rule_tac: thm list -> Proof.context -> thm list -> int -> tactic | 
| 6091 | 41 | val rule: thm list -> Proof.method | 
| 10744 | 42 | val erule: int -> thm list -> Proof.method | 
| 43 | val drule: int -> thm list -> Proof.method | |
| 44 | val frule: int -> thm list -> Proof.method | |
| 8195 | 45 | val this: Proof.method | 
| 7555 | 46 | val assumption: Proof.context -> Proof.method | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 47 | val bires_inst_tac: bool -> Proof.context -> (indexname * string) list -> thm -> int -> tactic | 
| 8351 | 48 | val set_tactic: (Proof.context -> thm list -> tactic) -> unit | 
| 49 | val tactic: string -> Proof.context -> Proof.method | |
| 5916 | 50 | exception METHOD_FAIL of (string * Position.T) * exn | 
| 5824 | 51 | val method: theory -> Args.src -> Proof.context -> Proof.method | 
| 9539 | 52 | val add_method: bstring * (Args.src -> Proof.context -> Proof.method) * string | 
| 53 | -> theory -> theory | |
| 5824 | 54 | val add_methods: (bstring * (Args.src -> Proof.context -> Proof.method) * string) list | 
| 55 | -> theory -> theory | |
| 5884 | 56 | val syntax: (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list)) -> | 
| 8282 | 57 | Args.src -> Proof.context -> Proof.context * 'a | 
| 8351 | 58 | val simple_args: (Args.T list -> 'a * Args.T list) | 
| 59 |     -> ('a -> Proof.context -> Proof.method) -> Args.src -> Proof.context -> Proof.method
 | |
| 7555 | 60 | val ctxt_args: (Proof.context -> Proof.method) -> Args.src -> Proof.context -> Proof.method | 
| 5884 | 61 | val no_args: Proof.method -> Args.src -> Proof.context -> Proof.method | 
| 7268 | 62 | type modifier | 
| 7601 | 63 | val sectioned_args: (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list)) -> | 
| 7268 | 64 | (Args.T list -> modifier * Args.T list) list -> | 
| 9864 | 65 |     ('a -> Proof.context -> 'b) -> Args.src -> Proof.context -> 'b
 | 
| 7601 | 66 | val bang_sectioned_args: | 
| 67 | (Args.T list -> modifier * Args.T list) list -> | |
| 9864 | 68 | (thm list -> Proof.context -> 'a) -> Args.src -> Proof.context -> 'a | 
| 9777 | 69 | val bang_sectioned_args': | 
| 70 | (Args.T list -> modifier * Args.T list) list -> | |
| 71 | (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list)) -> | |
| 9864 | 72 |     ('a -> thm list -> Proof.context -> 'b) -> Args.src -> Proof.context -> 'b
 | 
| 7601 | 73 | val only_sectioned_args: | 
| 74 | (Args.T list -> modifier * Args.T list) list -> | |
| 9864 | 75 | (Proof.context -> 'a) -> Args.src -> Proof.context -> 'a | 
| 76 | val thms_ctxt_args: (thm list -> Proof.context -> 'a) -> Args.src -> Proof.context -> 'a | |
| 77 | val thms_args: (thm list -> 'a) -> Args.src -> Proof.context -> 'a | |
| 78 | val thm_args: (thm -> 'a) -> Args.src -> Proof.context -> 'a | |
| 5824 | 79 | datatype text = | 
| 80 | Basic of (Proof.context -> Proof.method) | | |
| 81 | Source of Args.src | | |
| 82 | Then of text list | | |
| 83 | Orelse of text list | | |
| 84 | Try of text | | |
| 85 | Repeat1 of text | |
| 86 | val refine: text -> Proof.state -> Proof.state Seq.seq | |
| 8238 | 87 | val refine_end: text -> Proof.state -> Proof.state Seq.seq | 
| 5824 | 88 | val proof: text option -> Proof.state -> Proof.state Seq.seq | 
| 8966 | 89 | val local_qed: bool -> text option | 
| 12144 | 90 | -> (Proof.context -> string * (string * thm list) list -> unit) * | 
| 12055 | 91 | (Proof.context -> thm -> unit) -> Proof.state -> Proof.state Seq.seq | 
| 6981 | 92 | val local_terminal_proof: text * text option | 
| 12144 | 93 | -> (Proof.context -> string * (string * thm list) list -> unit) * | 
| 12055 | 94 | (Proof.context -> thm -> unit) -> Proof.state -> Proof.state Seq.seq | 
| 12144 | 95 | val local_default_proof: (Proof.context -> string * (string * thm list) list -> unit) * | 
| 12055 | 96 | (Proof.context -> thm -> unit) -> Proof.state -> Proof.state Seq.seq | 
| 12144 | 97 | val local_immediate_proof: (Proof.context -> string * (string * thm list) list -> unit) * | 
| 12055 | 98 | (Proof.context -> thm -> unit) -> Proof.state -> Proof.state Seq.seq | 
| 12144 | 99 | val local_done_proof: (Proof.context -> string * (string * thm list) list -> unit) * | 
| 12055 | 100 | (Proof.context -> thm -> unit) -> Proof.state -> Proof.state Seq.seq | 
| 8966 | 101 | val global_qed: bool -> text option | 
| 12244 | 102 | -> Proof.state -> theory * ((string * string) * (string * thm list) list) | 
| 6934 | 103 | val global_terminal_proof: text * text option | 
| 12244 | 104 | -> Proof.state -> theory * ((string * string) * (string * thm list) list) | 
| 105 | val global_default_proof: Proof.state -> theory * ((string * string) * (string * thm list) list) | |
| 106 | val global_immediate_proof: Proof.state -> | |
| 107 | theory * ((string * string) * (string * thm list) list) | |
| 108 | val global_done_proof: Proof.state -> theory * ((string * string) * (string * thm list) list) | |
| 9539 | 109 |   val goal_args: (Args.T list -> 'a * Args.T list) -> ('a -> int -> tactic)
 | 
| 110 | -> Args.src -> Proof.context -> Proof.method | |
| 111 | val goal_args': (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list)) | |
| 112 |     -> ('a -> int -> tactic) -> Args.src -> Proof.context -> Proof.method
 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 113 | val goal_args_ctxt: (Args.T list -> 'a * Args.T list) -> (Proof.context -> 'a -> int -> tactic) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 114 | -> Args.src -> Proof.context -> Proof.method | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 115 | val goal_args_ctxt': (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list)) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 116 | -> (Proof.context -> 'a -> int -> tactic) -> Args.src -> Proof.context -> Proof.method | 
| 5824 | 117 | val setup: (theory -> theory) list | 
| 118 | end; | |
| 119 | ||
| 120 | structure Method: METHOD = | |
| 121 | struct | |
| 122 | ||
| 123 | ||
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 124 | (** proof methods **) | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 125 | |
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 126 | (* tracing *) | 
| 11731 | 127 | |
| 128 | val trace_rules = ref false; | |
| 129 | ||
| 12055 | 130 | fun trace ctxt rules = | 
| 12262 | 131 | conditional (! trace_rules andalso not (null rules)) (fn () => | 
| 132 | Pretty.big_list "rules:" (map (ProofContext.pretty_thm ctxt) rules) | |
| 133 | |> Pretty.string_of |> tracing); | |
| 11731 | 134 | |
| 135 | ||
| 8372 | 136 | (* make methods *) | 
| 5824 | 137 | |
| 12144 | 138 | val RAW_METHOD = Proof.method; | 
| 139 | val RAW_METHOD_CASES = Proof.method_cases; | |
| 140 | ||
| 141 | fun METHOD m = Proof.method (fn facts => TRY Tactic.conjunction_tac THEN m facts); | |
| 142 | fun METHOD_CASES m = | |
| 143 | Proof.method_cases (fn facts => Seq.THEN (TRY Tactic.conjunction_tac, m facts)); | |
| 8372 | 144 | |
| 5824 | 145 | |
| 146 | (* primitive *) | |
| 147 | ||
| 148 | val fail = METHOD (K no_tac); | |
| 149 | val succeed = METHOD (K all_tac); | |
| 150 | ||
| 151 | ||
| 8167 | 152 | (* shuffle *) | 
| 153 | ||
| 8240 | 154 | fun prefer i = METHOD (K (Tactic.defer_tac i THEN PRIMITIVE (Thm.permute_prems 0 ~1))); | 
| 15570 | 155 | fun defer opt_i = METHOD (K (Tactic.defer_tac (getOpt (opt_i,1)))); | 
| 8167 | 156 | |
| 157 | ||
| 7419 | 158 | (* insert *) | 
| 159 | ||
| 160 | local | |
| 5824 | 161 | |
| 6981 | 162 | fun cut_rule_tac raw_rule = | 
| 163 | let | |
| 164 | val rule = Drule.forall_intr_vars raw_rule; | |
| 165 | val revcut_rl = Drule.incr_indexes_wrt [] [] [] [rule] Drule.revcut_rl; | |
| 7555 | 166 | in Tactic.rtac (rule COMP revcut_rl) end; | 
| 6981 | 167 | |
| 7419 | 168 | in | 
| 5824 | 169 | |
| 7419 | 170 | fun insert_tac [] i = all_tac | 
| 171 | | insert_tac facts i = EVERY (map (fn th => cut_rule_tac th i) facts); | |
| 6981 | 172 | |
| 7555 | 173 | val insert_facts = METHOD (ALLGOALS o insert_tac); | 
| 7664 | 174 | fun insert thms = METHOD (fn _ => ALLGOALS (insert_tac thms)); | 
| 7419 | 175 | |
| 9706 | 176 | fun SIMPLE_METHOD tac = METHOD (fn facts => ALLGOALS (insert_tac facts) THEN tac); | 
| 177 | fun SIMPLE_METHOD' quant tac = METHOD (fn facts => quant (insert_tac facts THEN' tac)); | |
| 178 | ||
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 179 | end; | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 180 | |
| 9706 | 181 | |
| 12384 | 182 | (* unfold/fold definitions *) | 
| 183 | ||
| 184 | fun unfold ths = SIMPLE_METHOD (CHANGED_PROP (rewrite_goals_tac ths)); | |
| 185 | fun fold ths = SIMPLE_METHOD (CHANGED_PROP (fold_goals_tac ths)); | |
| 6532 | 186 | |
| 12384 | 187 | |
| 12829 | 188 | (* atomize rule statements *) | 
| 189 | ||
| 190 | fun atomize false = SIMPLE_METHOD' HEADGOAL (CHANGED_PROP o ObjectLogic.atomize_tac) | |
| 191 | | atomize true = RAW_METHOD (K (HEADGOAL (CHANGED_PROP o ObjectLogic.full_atomize_tac))); | |
| 192 | ||
| 193 | ||
| 12384 | 194 | (* unfold intro/elim rules *) | 
| 195 | ||
| 196 | fun intro ths = SIMPLE_METHOD' HEADGOAL (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.match_tac ths)); | |
| 197 | fun elim ths = SIMPLE_METHOD' HEADGOAL (CHANGED_PROP o REPEAT_ALL_NEW (Tactic.ematch_tac ths)); | |
| 9484 | 198 | |
| 199 | ||
| 7419 | 200 | (* multi_resolve *) | 
| 201 | ||
| 202 | local | |
| 203 | ||
| 204 | fun res th i rule = | |
| 205 | Thm.biresolution false [(false, th)] i rule handle THM _ => Seq.empty; | |
| 206 | ||
| 207 | fun multi_res _ [] rule = Seq.single rule | |
| 208 | | multi_res i (th :: ths) rule = Seq.flat (Seq.map (res th i) (multi_res (i + 1) ths rule)); | |
| 209 | ||
| 210 | in | |
| 211 | ||
| 212 | val multi_resolve = multi_res 1; | |
| 8372 | 213 | fun multi_resolves facts rules = Seq.flat (Seq.map (multi_resolve facts) (Seq.of_list rules)); | 
| 7419 | 214 | |
| 215 | end; | |
| 216 | ||
| 217 | ||
| 12347 | 218 | (* rules_tac *) | 
| 8372 | 219 | |
| 7419 | 220 | local | 
| 5824 | 221 | |
| 12359 | 222 | val remdups_tac = SUBGOAL (fn (g, i) => | 
| 223 | let val prems = Logic.strip_assums_hyp g in | |
| 224 | REPEAT_DETERM_N (length prems - length (gen_distinct op aconv prems)) | |
| 225 | (Tactic.ematch_tac [Drule.remdups_rl] i THEN Tactic.eq_assume_tac i) | |
| 226 | end); | |
| 12347 | 227 | |
| 228 | fun REMDUPS tac = tac THEN_ALL_NEW remdups_tac; | |
| 229 | ||
| 230 | fun gen_eq_set e s1 s2 = | |
| 231 | length s1 = length s2 andalso | |
| 232 | gen_subset e (s1, s2) andalso gen_subset e (s2, s1); | |
| 233 | ||
| 12350 | 234 | val bires_tac = Tactic.biresolution_from_nets_tac ContextRules.orderlist; | 
| 12347 | 235 | |
| 236 | fun safe_step_tac ctxt = | |
| 12350 | 237 | ContextRules.Swrap ctxt | 
| 238 | (eq_assume_tac ORELSE' | |
| 239 | bires_tac true (ContextRules.netpair_bang ctxt)); | |
| 12347 | 240 | |
| 241 | fun unsafe_step_tac ctxt = | |
| 12350 | 242 | ContextRules.wrap ctxt | 
| 243 | (assume_tac APPEND' | |
| 244 | bires_tac false (ContextRules.netpair_bang ctxt) APPEND' | |
| 245 | bires_tac false (ContextRules.netpair ctxt)); | |
| 12347 | 246 | |
| 247 | fun step_tac ctxt i = | |
| 248 | REPEAT_DETERM1 (REMDUPS (safe_step_tac ctxt) i) ORELSE | |
| 249 | REMDUPS (unsafe_step_tac ctxt) i; | |
| 250 | ||
| 251 | fun intpr_tac ctxt gs d lim = SUBGOAL (fn (g, i) => if d > lim then no_tac else | |
| 252 | let | |
| 253 | val ps = Logic.strip_assums_hyp g; | |
| 254 | val c = Logic.strip_assums_concl g; | |
| 255 | in | |
| 256 | if gen_mem (fn ((ps1, c1), (ps2, c2)) => | |
| 257 | c1 aconv c2 andalso gen_eq_set op aconv ps1 ps2) ((ps, c), gs) then no_tac | |
| 258 | else (step_tac ctxt THEN_ALL_NEW intpr_tac ctxt ((ps, c) :: gs) (d + 1) lim) i | |
| 259 | end); | |
| 260 | ||
| 261 | in | |
| 262 | ||
| 12359 | 263 | fun rules_tac ctxt opt_lim = | 
| 15570 | 264 | SELECT_GOAL (DEEPEN (2, getOpt (opt_lim,20)) (intpr_tac ctxt [] 0) 4 1); | 
| 12347 | 265 | |
| 266 | end; | |
| 267 | ||
| 268 | ||
| 269 | (* rule_tac etc. *) | |
| 270 | ||
| 271 | local | |
| 272 | ||
| 10541 
fdec07d4f047
resolveq(_cases)_tac moved to HOL/Tools/induct_method.ML;
 wenzelm parents: 
10529diff
changeset | 273 | fun gen_rule_tac tac rules [] i st = tac rules i st | 
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 274 | | gen_rule_tac tac rules facts i st = | 
| 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 275 | Seq.flat (Seq.map (fn rule => (tac o single) rule i st) (multi_resolves facts rules)); | 
| 7130 | 276 | |
| 10744 | 277 | fun gen_arule_tac tac j rules facts = | 
| 278 | EVERY' (gen_rule_tac tac rules facts :: replicate j Tactic.assume_tac); | |
| 279 | ||
| 11785 | 280 | fun gen_some_rule_tac tac arg_rules ctxt facts = SUBGOAL (fn (goal, i) => | 
| 281 | let | |
| 282 | val rules = | |
| 283 | if not (null arg_rules) then arg_rules | |
| 15570 | 284 | else List.concat (ContextRules.find_rules false facts goal ctxt) | 
| 12055 | 285 | in trace ctxt rules; tac rules facts i end); | 
| 10309 | 286 | |
| 10744 | 287 | fun meth tac x = METHOD (HEADGOAL o tac x); | 
| 288 | fun meth' tac x y = METHOD (HEADGOAL o tac x y); | |
| 8220 | 289 | |
| 7419 | 290 | in | 
| 291 | ||
| 10744 | 292 | val rule_tac = gen_rule_tac Tactic.resolve_tac; | 
| 293 | val rule = meth rule_tac; | |
| 294 | val some_rule_tac = gen_some_rule_tac rule_tac; | |
| 295 | val some_rule = meth' some_rule_tac; | |
| 296 | ||
| 297 | val erule = meth' (gen_arule_tac Tactic.eresolve_tac); | |
| 298 | val drule = meth' (gen_arule_tac Tactic.dresolve_tac); | |
| 299 | val frule = meth' (gen_arule_tac Tactic.forward_tac); | |
| 5824 | 300 | |
| 7419 | 301 | end; | 
| 302 | ||
| 303 | ||
| 8195 | 304 | (* this *) | 
| 305 | ||
| 8671 | 306 | val this = METHOD (EVERY o map (HEADGOAL o Tactic.rtac)); | 
| 8195 | 307 | |
| 308 | ||
| 309 | (* assumption *) | |
| 7555 | 310 | |
| 10378 
98c95ebf804f
assumption / finish: handle non-atomic assumptions from context as well;
 wenzelm parents: 
10309diff
changeset | 311 | fun asm_tac ths = | 
| 15574 
b1d1b5bfc464
Removed practically all references to Library.foldr.
 skalberg parents: 
15570diff
changeset | 312 | foldr (op APPEND') (K no_tac) (map (fn th => Tactic.rtac th THEN_ALL_NEW assume_tac) ths); | 
| 10378 
98c95ebf804f
assumption / finish: handle non-atomic assumptions from context as well;
 wenzelm parents: 
10309diff
changeset | 313 | |
| 10405 | 314 | fun assm_tac ctxt = | 
| 315 | assume_tac APPEND' | |
| 316 | asm_tac (ProofContext.prems_of ctxt) APPEND' | |
| 317 | Tactic.rtac Drule.reflexive_thm; | |
| 7419 | 318 | |
| 7555 | 319 | fun assumption_tac ctxt [] = assm_tac ctxt | 
| 10378 
98c95ebf804f
assumption / finish: handle non-atomic assumptions from context as well;
 wenzelm parents: 
10309diff
changeset | 320 | | assumption_tac _ [fact] = asm_tac [fact] | 
| 7555 | 321 | | assumption_tac _ _ = K no_tac; | 
| 7419 | 322 | |
| 8671 | 323 | fun assumption ctxt = METHOD (HEADGOAL o assumption_tac ctxt); | 
| 7419 | 324 | |
| 325 | ||
| 9539 | 326 | (* res_inst_tac etc. *) | 
| 8238 | 327 | |
| 14718 | 328 | (*Reimplemented to support both static (Isar) and dynamic (proof state) | 
| 329 | context. By Clemens Ballarin.*) | |
| 12119 | 330 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 331 | fun bires_inst_tac bires_flag ctxt insts thm = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 332 | let | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 333 | val sign = ProofContext.sign_of ctxt; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 334 | (* Separate type and term insts *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 335 | fun has_type_var ((x, _), _) = (case Symbol.explode x of | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 336 | "'"::cs => true | cs => false); | 
| 15570 | 337 | val Tinsts = List.filter has_type_var insts; | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 338 | val tinsts = filter_out has_type_var insts; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 339 | (* Tactic *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 340 | fun tac i st = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 341 | let | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 342 | (* Preprocess state: extract environment information: | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 343 | - variables and their types | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 344 | - type variables and their sorts | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 345 | - parameters and their types *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 346 | val (types, sorts) = types_sorts st; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 347 | (* Process type insts: Tinsts_env *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 348 | fun absent xi = error | 
| 14718 | 349 |           ("No such variable in theorem: " ^ Syntax.string_of_vname xi);
 | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 350 | val (rtypes, rsorts) = types_sorts thm; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 351 | fun readT (xi, s) = | 
| 15531 | 352 | let val S = case rsorts xi of SOME S => S | NONE => absent xi; | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 353 | val T = Sign.read_typ (sign, sorts) s; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 354 | in if Sign.typ_instance sign (T, TVar (xi, S)) then (xi, T) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 355 | else error | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 356 |              ("Instantiation of " ^ Syntax.string_of_vname xi ^ " fails")
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 357 | end; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 358 | val Tinsts_env = map readT Tinsts; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 359 | (* Preprocess rule: extract vars and their types, apply Tinsts *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 360 | fun get_typ xi = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 361 | (case rtypes xi of | 
| 15531 | 362 | SOME T => typ_subst_TVars Tinsts_env T | 
| 363 | | NONE => absent xi); | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 364 | val (xis, ss) = Library.split_list tinsts; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 365 | val Ts = map get_typ xis; | 
| 14718 | 366 | val (_, _, Bi, _) = dest_state(st,i) | 
| 367 | val params = Logic.strip_params Bi | |
| 368 | (* params of subgoal i as string typ pairs *) | |
| 369 | val params = rev(Term.rename_wrt_term Bi params) | |
| 370 | (* as they are printed: bound variables with *) | |
| 14508 
859b11514537
Experimental command for instantiation of locales in proof contexts:
 ballarin parents: 
14215diff
changeset | 371 | (* the same name are renamed during printing *) | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 372 | fun types' (a, ~1) = (case assoc (params, a) of | 
| 15531 | 373 | NONE => types (a, ~1) | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 374 | | some => some) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 375 | | types' xi = types xi; | 
| 15570 | 376 | fun internal x = isSome (types' (x, ~1)); | 
| 14718 | 377 | val used = Term.add_term_tvarnames (Thm.prop_of st $ Thm.prop_of thm, []); | 
| 378 | val (ts, envT) = | |
| 379 | ProofContext.read_termTs_schematic ctxt internal types' sorts used (ss ~~ Ts); | |
| 380 | val cenvT = map (apsnd (Thm.ctyp_of sign)) (envT @ Tinsts_env); | |
| 381 | val cenv = | |
| 382 | map | |
| 383 | (fn (xi, t) => | |
| 384 | pairself (Thm.cterm_of sign) (Var (xi, fastype_of t), t)) | |
| 385 | (gen_distinct | |
| 386 | (fn ((x1, t1), (x2, t2)) => x1 = x2 andalso t1 aconv t2) | |
| 387 | (xis ~~ ts)); | |
| 388 | (* Lift and instantiate rule *) | |
| 389 |         val {maxidx, ...} = rep_thm st;
 | |
| 390 | val paramTs = map #2 params | |
| 391 | and inc = maxidx+1 | |
| 392 | fun liftvar (Var ((a,j), T)) = | |
| 393 | Var((a, j+inc), paramTs ---> incr_tvar inc T) | |
| 394 |           | liftvar t = raise TERM("Variable expected", [t]);
 | |
| 395 | fun liftterm t = list_abs_free | |
| 396 | (params, Logic.incr_indexes(paramTs,inc) t) | |
| 397 | fun liftpair (cv,ct) = | |
| 398 | (cterm_fun liftvar cv, cterm_fun liftterm ct) | |
| 399 | fun lifttvar((a,i),ctyp) = | |
| 400 |             let val {T,sign} = rep_ctyp ctyp
 | |
| 401 | in ((a,i+inc), ctyp_of sign (incr_tvar inc T)) end | |
| 402 | val rule = Drule.instantiate | |
| 403 | (map lifttvar cenvT, map liftpair cenv) | |
| 404 | (lift_rule (st, i) thm) | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 405 | in | 
| 14718 | 406 | if i > nprems_of st then no_tac st | 
| 407 | else st |> | |
| 408 | compose_tac (bires_flag, rule, nprems_of thm) i | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 409 | end | 
| 14718 | 410 | handle TERM (msg,_) => (warning msg; no_tac st) | 
| 411 | | THM (msg,_,_) => (warning msg; no_tac st); | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 412 | in | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 413 | tac | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 414 | end; | 
| 8238 | 415 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 416 | fun gen_inst _ tac _ (quant, ([], thms)) = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 417 | METHOD (fn facts => quant (insert_tac facts THEN' tac thms)) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 418 | | gen_inst inst_tac _ ctxt (quant, (insts, [thm])) = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 419 | METHOD (fn facts => | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 420 | quant (insert_tac facts THEN' inst_tac ctxt insts thm)) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 421 | | gen_inst _ _ _ _ = error "Cannot have instantiations with multiple rules"; | 
| 14718 | 422 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 423 | val res_inst_meth = gen_inst (bires_inst_tac false) Tactic.resolve_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 424 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 425 | val eres_inst_meth = gen_inst (bires_inst_tac true) Tactic.eresolve_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 426 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 427 | (* Preserve Var indexes of rl; increment revcut_rl instead. | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 428 | Copied from tactic.ML *) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 429 | fun make_elim_preserve rl = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 430 |   let val {maxidx,...} = rep_thm rl
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 431 | fun cvar xi = cterm_of (Theory.sign_of ProtoPure.thy) (Var(xi,propT)); | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 432 | val revcut_rl' = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 433 |           instantiate ([],  [(cvar("V",0), cvar("V",maxidx+1)),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 434 |                              (cvar("W",0), cvar("W",maxidx+1))]) revcut_rl
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 435 | val arg = (false, rl, nprems_of rl) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 436 | val [th] = Seq.list_of (bicompose false arg 1 revcut_rl') | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 437 | in th end | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 438 |   handle Bind => raise THM("make_elim_preserve", 1, [rl]);
 | 
| 8238 | 439 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 440 | val cut_inst_meth = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 441 | gen_inst | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 442 | (fn ctxt => fn insts => fn thm => | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 443 | bires_inst_tac false ctxt insts (make_elim_preserve thm)) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 444 | Tactic.cut_rules_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 445 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 446 | val dres_inst_meth = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 447 | gen_inst | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 448 | (fn ctxt => fn insts => fn rule => | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 449 | bires_inst_tac true ctxt insts (make_elim_preserve rule)) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 450 | Tactic.dresolve_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 451 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 452 | val forw_inst_meth = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 453 | gen_inst | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 454 | (fn ctxt => fn insts => fn rule => | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 455 | bires_inst_tac false ctxt insts (make_elim_preserve rule) THEN' | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 456 | assume_tac) | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 457 | Tactic.forward_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 458 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 459 | fun subgoal_tac ctxt sprop = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 460 |   DETERM o bires_inst_tac false ctxt [(("psi", 0), sprop)] cut_rl THEN'
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 461 | SUBGOAL (fn (prop, _) => | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 462 | let val concl' = Logic.strip_assums_concl prop in | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 463 | if null (term_tvars concl') then () | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 464 | else warning "Type variables in new subgoal: add a type constraint?"; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 465 | all_tac | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 466 | end); | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 467 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 468 | fun subgoals_tac ctxt sprops = EVERY' (map (subgoal_tac ctxt) sprops); | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 469 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 470 | fun thin_tac ctxt s = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 471 |   bires_inst_tac true ctxt [(("V", 0), s)] thin_rl;
 | 
| 8238 | 472 | |
| 14718 | 473 | |
| 8329 | 474 | (* simple Prolog interpreter *) | 
| 475 | ||
| 476 | fun prolog_tac rules facts = | |
| 477 | DEPTH_SOLVE_1 (HEADGOAL (Tactic.assume_tac APPEND' Tactic.resolve_tac (facts @ rules))); | |
| 478 | ||
| 479 | val prolog = METHOD o prolog_tac; | |
| 480 | ||
| 481 | ||
| 8351 | 482 | (* ML tactics *) | 
| 483 | ||
| 484 | val tactic_ref = ref ((fn _ => raise Match): Proof.context -> thm list -> tactic); | |
| 485 | fun set_tactic f = tactic_ref := f; | |
| 486 | ||
| 487 | fun tactic txt ctxt = METHOD (fn facts => | |
| 9631 | 488 | (Context.use_mltext | 
| 489 |     ("let fun tactic (ctxt: PureIsar.Proof.context) (facts: thm list) : tactic = \
 | |
| 15531 | 490 | \let val thm = PureIsar.ProofContext.get_thm_closure ctxt o rpair NONE\n\ | 
| 491 | \ and thms = PureIsar.ProofContext.get_thms_closure ctxt o rpair NONE in\n" | |
| 9631 | 492 | ^ txt ^ | 
| 493 | "\nend in PureIsar.Method.set_tactic tactic end") | |
| 15531 | 494 | false NONE; | 
| 495 | Context.setmp (SOME (ProofContext.theory_of ctxt)) (! tactic_ref ctxt) facts)); | |
| 8351 | 496 | |
| 497 | ||
| 5824 | 498 | |
| 499 | (** methods theory data **) | |
| 500 | ||
| 501 | (* data kind 'Isar/methods' *) | |
| 502 | ||
| 503 | structure MethodsDataArgs = | |
| 504 | struct | |
| 505 | val name = "Isar/methods"; | |
| 506 | type T = | |
| 507 |     {space: NameSpace.T,
 | |
| 508 | meths: (((Args.src -> Proof.context -> Proof.method) * string) * stamp) Symtab.table}; | |
| 509 | ||
| 510 |   val empty = {space = NameSpace.empty, meths = Symtab.empty};
 | |
| 6546 | 511 | val copy = I; | 
| 5824 | 512 | val prep_ext = I; | 
| 513 |   fun merge ({space = space1, meths = meths1}, {space = space2, meths = meths2}) =
 | |
| 514 |     {space = NameSpace.merge (space1, space2),
 | |
| 515 | meths = Symtab.merge eq_snd (meths1, meths2) handle Symtab.DUPS dups => | |
| 516 |         error ("Attempt to merge different versions of methods " ^ commas_quote dups)};
 | |
| 517 | ||
| 9222 | 518 |   fun print _ {space, meths} =
 | 
| 5824 | 519 | let | 
| 520 | fun prt_meth (name, ((_, comment), _)) = Pretty.block | |
| 6849 | 521 | [Pretty.str (name ^ ":"), Pretty.brk 2, Pretty.str comment]; | 
| 5824 | 522 | in | 
| 8720 | 523 | [Pretty.big_list "methods:" (map prt_meth (NameSpace.cond_extern_table space meths))] | 
| 9222 | 524 | |> Pretty.chunks |> Pretty.writeln | 
| 5824 | 525 | end; | 
| 526 | end; | |
| 527 | ||
| 528 | structure MethodsData = TheoryDataFun(MethodsDataArgs); | |
| 529 | val print_methods = MethodsData.print; | |
| 7611 | 530 | |
| 5824 | 531 | |
| 532 | (* get methods *) | |
| 533 | ||
| 5916 | 534 | exception METHOD_FAIL of (string * Position.T) * exn; | 
| 535 | ||
| 5824 | 536 | fun method thy = | 
| 537 | let | |
| 538 |     val {space, meths} = MethodsData.get thy;
 | |
| 539 | ||
| 5884 | 540 | fun meth src = | 
| 541 | let | |
| 542 | val ((raw_name, _), pos) = Args.dest_src src; | |
| 543 | val name = NameSpace.intern space raw_name; | |
| 544 | in | |
| 5824 | 545 | (case Symtab.lookup (meths, name) of | 
| 15531 | 546 |           NONE => error ("Unknown proof method: " ^ quote name ^ Position.str_of pos)
 | 
| 547 | | SOME ((mth, _), _) => transform_failure (curry METHOD_FAIL (name, pos)) (mth src)) | |
| 5824 | 548 | end; | 
| 549 | in meth end; | |
| 550 | ||
| 551 | ||
| 9194 | 552 | (* add_method(s) *) | 
| 5824 | 553 | |
| 554 | fun add_methods raw_meths thy = | |
| 555 | let | |
| 556 | val full = Sign.full_name (Theory.sign_of thy); | |
| 557 | val new_meths = | |
| 558 | map (fn (name, f, comment) => (full name, ((f, comment), stamp ()))) raw_meths; | |
| 559 | ||
| 560 |     val {space, meths} = MethodsData.get thy;
 | |
| 561 | val space' = NameSpace.extend (space, map fst new_meths); | |
| 562 | val meths' = Symtab.extend (meths, new_meths) handle Symtab.DUPS dups => | |
| 563 |       error ("Duplicate declaration of method(s) " ^ commas_quote dups);
 | |
| 564 | in | |
| 565 |     thy |> MethodsData.put {space = space', meths = meths'}
 | |
| 566 | end; | |
| 567 | ||
| 9194 | 568 | val add_method = add_methods o Library.single; | 
| 569 | ||
| 5824 | 570 | (*implicit version*) | 
| 571 | fun Method name meth cmt = Context.>> (add_methods [(name, meth, cmt)]); | |
| 572 | ||
| 573 | ||
| 5884 | 574 | |
| 575 | (** method syntax **) | |
| 5824 | 576 | |
| 5884 | 577 | (* basic *) | 
| 578 | ||
| 579 | fun syntax (scan: (Proof.context * Args.T list -> 'a * (Proof.context * Args.T list))) = | |
| 580 | Args.syntax "method" scan; | |
| 5824 | 581 | |
| 8351 | 582 | fun simple_args scan f src ctxt : Proof.method = | 
| 583 | #2 (syntax (Scan.lift (scan >> (fn x => f x ctxt))) src ctxt); | |
| 584 | ||
| 7555 | 585 | fun ctxt_args (f: Proof.context -> Proof.method) src ctxt = | 
| 8282 | 586 | #2 (syntax (Scan.succeed (f ctxt)) src ctxt); | 
| 7555 | 587 | |
| 588 | fun no_args m = ctxt_args (K m); | |
| 5884 | 589 | |
| 590 | ||
| 591 | (* sections *) | |
| 5824 | 592 | |
| 7268 | 593 | type modifier = (Proof.context -> Proof.context) * Proof.context attribute; | 
| 594 | ||
| 595 | local | |
| 596 | ||
| 8381 | 597 | fun sect ss = Scan.first (map Scan.lift ss); | 
| 5884 | 598 | fun thms ss = Scan.unless (sect ss) Attrib.local_thms; | 
| 15570 | 599 | fun thmss ss = Scan.repeat (thms ss) >> List.concat; | 
| 5884 | 600 | |
| 7268 | 601 | fun apply (f, att) (ctxt, ths) = Thm.applys_attributes ((f ctxt, ths), [att]); | 
| 5824 | 602 | |
| 7268 | 603 | fun section ss = (sect ss -- thmss ss) :-- (fn (m, ths) => Scan.depend (fn ctxt => | 
| 604 | Scan.succeed (apply m (ctxt, ths)))) >> #2; | |
| 5884 | 605 | |
| 7601 | 606 | fun sectioned args ss = args -- Scan.repeat (section ss); | 
| 5884 | 607 | |
| 7268 | 608 | in | 
| 5824 | 609 | |
| 5884 | 610 | fun sectioned_args args ss f src ctxt = | 
| 8282 | 611 | let val (ctxt', (x, _)) = syntax (sectioned args ss) src ctxt | 
| 5921 | 612 | in f x ctxt' end; | 
| 5884 | 613 | |
| 7601 | 614 | fun bang_sectioned_args ss f = sectioned_args Args.bang_facts ss f; | 
| 9777 | 615 | fun bang_sectioned_args' ss scan f = | 
| 616 | sectioned_args (Args.bang_facts -- scan >> swap) ss (uncurry f); | |
| 7601 | 617 | fun only_sectioned_args ss f = sectioned_args (Scan.succeed ()) ss (fn () => f); | 
| 7268 | 618 | |
| 8093 | 619 | fun thms_ctxt_args f = sectioned_args (thmss []) [] f; | 
| 620 | fun thms_args f = thms_ctxt_args (K o f); | |
| 9706 | 621 | fun thm_args f = thms_args (fn [thm] => f thm | _ => error "Single theorem expected"); | 
| 5824 | 622 | |
| 7268 | 623 | end; | 
| 624 | ||
| 5824 | 625 | |
| 12347 | 626 | (* rules syntax *) | 
| 627 | ||
| 628 | local | |
| 629 | ||
| 630 | val introN = "intro"; | |
| 631 | val elimN = "elim"; | |
| 632 | val destN = "dest"; | |
| 633 | val ruleN = "rule"; | |
| 634 | ||
| 635 | fun modifier name kind kind' att = | |
| 15531 | 636 | Args.$$$ name |-- (kind >> K NONE || kind' |-- Args.nat --| Args.colon >> SOME) | 
| 12347 | 637 | >> (pair (I: Proof.context -> Proof.context) o att); | 
| 638 | ||
| 639 | val rules_modifiers = | |
| 12384 | 640 | [modifier destN Args.bang_colon Args.bang ContextRules.dest_bang_local, | 
| 12350 | 641 | modifier destN Args.colon (Scan.succeed ()) ContextRules.dest_local, | 
| 642 | modifier elimN Args.bang_colon Args.bang ContextRules.elim_bang_local, | |
| 643 | modifier elimN Args.colon (Scan.succeed ()) ContextRules.elim_local, | |
| 644 | modifier introN Args.bang_colon Args.bang ContextRules.intro_bang_local, | |
| 645 | modifier introN Args.colon (Scan.succeed ()) ContextRules.intro_local, | |
| 646 | Args.del -- Args.colon >> K (I, ContextRules.rule_del_local)]; | |
| 12347 | 647 | |
| 648 | in | |
| 649 | ||
| 650 | fun rules_args m = bang_sectioned_args' rules_modifiers (Scan.lift (Scan.option Args.nat)) m; | |
| 651 | ||
| 652 | fun rules_meth n prems ctxt = METHOD (fn facts => | |
| 12350 | 653 | HEADGOAL (insert_tac (prems @ facts) THEN' ObjectLogic.atomize_tac THEN' rules_tac ctxt n)); | 
| 12347 | 654 | |
| 655 | end; | |
| 656 | ||
| 657 | ||
| 9539 | 658 | (* tactic syntax *) | 
| 8238 | 659 | |
| 10744 | 660 | fun nat_thms_args f = uncurry f oo | 
| 661 | (#2 oo syntax (Scan.lift (Scan.optional (Args.parens Args.nat) 0) -- Attrib.local_thmss)); | |
| 662 | ||
| 8238 | 663 | val insts = | 
| 9539 | 664 | Scan.optional | 
| 9565 
3eb2ea15cc69
res_inst: include non-inst versions with multiple thms;
 wenzelm parents: 
9539diff
changeset | 665 | (Args.enum1 "and" (Scan.lift (Args.name -- (Args.$$$ "=" |-- Args.!!! Args.name))) --| | 
| 
3eb2ea15cc69
res_inst: include non-inst versions with multiple thms;
 wenzelm parents: 
9539diff
changeset | 666 | Scan.lift (Args.$$$ "in")) [] -- Attrib.local_thmss; | 
| 8238 | 667 | |
| 12119 | 668 | fun inst_args f src ctxt = f ctxt (#2 (syntax (Args.goal_spec HEADGOAL -- insts) src ctxt)); | 
| 8537 | 669 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 670 | val insts_var = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 671 | Scan.optional | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 672 | (Args.enum1 "and" (Scan.lift (Args.var -- (Args.$$$ "=" |-- Args.!!! Args.name))) --| | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 673 | Scan.lift (Args.$$$ "in")) [] -- Attrib.local_thmss; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 674 | |
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 675 | fun inst_args_var f src ctxt = f ctxt (#2 (syntax (Args.goal_spec HEADGOAL -- insts_var) src ctxt)); | 
| 8537 | 676 | |
| 12119 | 677 | fun goal_args' args tac src ctxt = #2 (syntax (Args.goal_spec HEADGOAL -- args >> | 
| 14215 
ebf291f3b449
Improvements to Isar/Locales:  premises generated by "includes" elements
 ballarin parents: 
14174diff
changeset | 678 | (fn (quant, s) => SIMPLE_METHOD' quant (tac s))) src ctxt); | 
| 8537 | 679 | |
| 9539 | 680 | fun goal_args args tac = goal_args' (Scan.lift args) tac; | 
| 8238 | 681 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 682 | fun goal_args_ctxt' args tac src ctxt = | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 683 | #2 (syntax (Args.goal_spec HEADGOAL -- args >> | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 684 | (fn (quant, s) => SIMPLE_METHOD' quant (tac ctxt s))) src ctxt); | 
| 8238 | 685 | |
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 686 | fun goal_args_ctxt args tac = goal_args_ctxt' (Scan.lift args) tac; | 
| 5824 | 687 | |
| 14718 | 688 | |
| 5824 | 689 | (** method text **) | 
| 690 | ||
| 691 | (* datatype text *) | |
| 692 | ||
| 693 | datatype text = | |
| 694 | Basic of (Proof.context -> Proof.method) | | |
| 695 | Source of Args.src | | |
| 696 | Then of text list | | |
| 697 | Orelse of text list | | |
| 698 | Try of text | | |
| 699 | Repeat1 of text; | |
| 700 | ||
| 701 | ||
| 702 | (* refine *) | |
| 703 | ||
| 8238 | 704 | fun gen_refine f text state = | 
| 5824 | 705 | let | 
| 706 | val thy = Proof.theory_of state; | |
| 707 | ||
| 8238 | 708 | fun eval (Basic mth) = f mth | 
| 709 | | eval (Source src) = f (method thy src) | |
| 5824 | 710 | | eval (Then txts) = Seq.EVERY (map eval txts) | 
| 711 | | eval (Orelse txts) = Seq.FIRST (map eval txts) | |
| 712 | | eval (Try txt) = Seq.TRY (eval txt) | |
| 713 | | eval (Repeat1 txt) = Seq.REPEAT1 (eval txt); | |
| 714 | in eval text state end; | |
| 715 | ||
| 8238 | 716 | val refine = gen_refine Proof.refine; | 
| 717 | val refine_end = gen_refine Proof.refine_end; | |
| 6404 | 718 | |
| 5824 | 719 | |
| 6404 | 720 | (* structured proof steps *) | 
| 5824 | 721 | |
| 7506 | 722 | val default_text = Source (Args.src (("default", []), Position.none));
 | 
| 8195 | 723 | val this_text = Basic (K this); | 
| 9706 | 724 | val done_text = Basic (K (SIMPLE_METHOD all_tac)); | 
| 7555 | 725 | |
| 8966 | 726 | fun close_text asm = Basic (fn ctxt => METHOD (K | 
| 727 | (FILTER Thm.no_prems ((if asm then ALLGOALS (assm_tac ctxt) else all_tac) THEN flexflex_tac)))); | |
| 728 | ||
| 15531 | 729 | fun finish_text asm NONE = close_text asm | 
| 730 | | finish_text asm (SOME txt) = Then [txt, close_text asm]; | |
| 6872 | 731 | |
| 5824 | 732 | fun proof opt_text state = | 
| 733 | state | |
| 734 | |> Proof.assert_backward | |
| 15570 | 735 | |> refine (getOpt (opt_text,default_text)) | 
| 8242 | 736 | |> Seq.map (Proof.goal_facts (K [])) | 
| 5824 | 737 | |> Seq.map Proof.enter_forward; | 
| 738 | ||
| 8966 | 739 | fun local_qed asm opt_text = Proof.local_qed (refine (finish_text asm opt_text)); | 
| 740 | fun local_terminal_proof (text, opt_text) pr = | |
| 15531 | 741 | Seq.THEN (proof (SOME text), local_qed true opt_text pr); | 
| 742 | val local_default_proof = local_terminal_proof (default_text, NONE); | |
| 743 | val local_immediate_proof = local_terminal_proof (this_text, NONE); | |
| 744 | fun local_done_proof pr = Seq.THEN (proof (SOME done_text), local_qed false NONE pr); | |
| 5824 | 745 | |
| 6872 | 746 | |
| 8966 | 747 | fun global_qeds asm opt_text = Proof.global_qed (refine (finish_text asm opt_text)); | 
| 5824 | 748 | |
| 8966 | 749 | fun global_qed asm opt_text state = | 
| 6872 | 750 | state | 
| 8966 | 751 | |> global_qeds asm opt_text | 
| 6872 | 752 | |> Proof.check_result "Failed to finish proof" state | 
| 753 | |> Seq.hd; | |
| 754 | ||
| 8966 | 755 | fun global_term_proof asm (text, opt_text) state = | 
| 6872 | 756 | state | 
| 15531 | 757 | |> proof (SOME text) | 
| 6872 | 758 | |> Proof.check_result "Terminal proof method failed" state | 
| 8966 | 759 | |> (Seq.flat o Seq.map (global_qeds asm opt_text)) | 
| 6872 | 760 | |> Proof.check_result "Failed to finish proof (after successful terminal method)" state | 
| 761 | |> Seq.hd; | |
| 762 | ||
| 8966 | 763 | val global_terminal_proof = global_term_proof true; | 
| 15531 | 764 | val global_default_proof = global_terminal_proof (default_text, NONE); | 
| 765 | val global_immediate_proof = global_terminal_proof (this_text, NONE); | |
| 766 | val global_done_proof = global_term_proof false (done_text, NONE); | |
| 5824 | 767 | |
| 768 | ||
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 769 | |
| 5824 | 770 | (** theory setup **) | 
| 771 | ||
| 9539 | 772 | (* misc tactic emulations *) | 
| 773 | ||
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 774 | val subgoal_meth = goal_args_ctxt (Scan.repeat1 Args.name) subgoals_tac; | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 775 | val thin_meth = goal_args_ctxt Args.name thin_tac; | 
| 9539 | 776 | val rename_meth = goal_args (Scan.repeat1 Args.name) Tactic.rename_params_tac; | 
| 9631 | 777 | val rotate_meth = goal_args (Scan.optional Args.int 1) Tactic.rotate_tac; | 
| 9539 | 778 | |
| 779 | ||
| 5824 | 780 | (* pure_methods *) | 
| 781 | ||
| 782 | val pure_methods = | |
| 783 |  [("fail", no_args fail, "force failure"),
 | |
| 784 |   ("succeed", no_args succeed, "succeed"),
 | |
| 9587 | 785 |   ("-", no_args insert_facts, "do nothing (insert current facts only)"),
 | 
| 9539 | 786 |   ("insert", thms_args insert, "insert theorems, ignoring facts (improper)"),
 | 
| 7601 | 787 |   ("unfold", thms_args unfold, "unfold definitions"),
 | 
| 12384 | 788 |   ("intro", thms_args intro, "repeatedly apply introduction rules"),
 | 
| 789 |   ("elim", thms_args elim, "repeatedly apply elimination rules"),
 | |
| 7601 | 790 |   ("fold", thms_args fold, "fold definitions"),
 | 
| 12829 | 791 |   ("atomize", (atomize o #2) oo syntax (Args.mode "full"),
 | 
| 11962 | 792 | "present local premises as object-level statements"), | 
| 12347 | 793 |   ("rules", rules_args rules_meth, "apply many rules, including proof search"),
 | 
| 12384 | 794 |   ("rule", thms_ctxt_args some_rule, "apply some intro/elim rule"),
 | 
| 10744 | 795 |   ("erule", nat_thms_args erule, "apply rule in elimination manner (improper)"),
 | 
| 796 |   ("drule", nat_thms_args drule, "apply rule in destruct manner (improper)"),
 | |
| 797 |   ("frule", nat_thms_args frule, "apply rule in forward manner (improper)"),
 | |
| 8195 | 798 |   ("this", no_args this, "apply current facts as rules"),
 | 
| 8238 | 799 |   ("assumption", ctxt_args assumption, "proof by assumption, preferring facts"),
 | 
| 14174 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 800 |   ("rule_tac", inst_args_var res_inst_meth, "apply rule (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 801 |   ("erule_tac", inst_args_var eres_inst_meth, "apply rule in elimination manner (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 802 |   ("drule_tac", inst_args_var dres_inst_meth, "apply rule in destruct manner (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 803 |   ("frule_tac", inst_args_var forw_inst_meth, "apply rule in forward manner (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 804 |   ("cut_tac", inst_args_var cut_inst_meth, "cut rule (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 805 |   ("subgoal_tac", subgoal_meth, "insert subgoal (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 806 |   ("thin_tac", thin_meth, "remove premise (dynamic instantiation)"),
 | 
| 
f3cafd2929d5
Methods rule_tac etc support static (Isar) contexts.
 ballarin parents: 
13650diff
changeset | 807 |   ("rename_tac", rename_meth, "rename parameters of goal (dynamic instantiation)"),
 | 
| 9631 | 808 |   ("rotate_tac", rotate_meth, "rotate assumptions of goal"),
 | 
| 8351 | 809 |   ("prolog", thms_args prolog, "simple prolog interpreter"),
 | 
| 810 |   ("tactic", simple_args Args.name tactic, "ML tactic as proof method")];
 | |
| 5824 | 811 | |
| 812 | ||
| 813 | (* setup *) | |
| 814 | ||
| 8153 
9bdbcb71dc56
maintain standard rules (beware: classical provers provides another version!);
 wenzelm parents: 
8093diff
changeset | 815 | val setup = | 
| 12324 
5db4b4596d1a
rule context and attributes moved to rule_context.ML;
 wenzelm parents: 
12311diff
changeset | 816 | [MethodsData.init, add_methods pure_methods, | 
| 15531 | 817 |   (#1 o PureThy.add_thms [(("", Drule.equal_intr_rule), [ContextRules.intro_query_global NONE])])];
 | 
| 5824 | 818 | |
| 819 | ||
| 820 | end; | |
| 821 | ||
| 822 | ||
| 823 | structure BasicMethod: BASIC_METHOD = Method; | |
| 824 | open BasicMethod; |