| author | huffman | 
| Wed, 03 Nov 2010 15:31:24 -0700 | |
| changeset 40430 | 483a4876e428 | 
| parent 40132 | 7ee65dbffa31 | 
| child 40642 | 99c6ce92669b | 
| permissions | -rw-r--r-- | 
| 5820 | 1 | (* Title: Pure/Isar/proof.ML | 
| 2 | Author: Markus Wenzel, TU Muenchen | |
| 3 | ||
| 19000 | 4 | The Isar/VM proof language interpreter: maintains a structured flow of | 
| 5 | context elements, goals, refinements, and facts. | |
| 5820 | 6 | *) | 
| 7 | ||
| 8 | signature PROOF = | |
| 9 | sig | |
| 33031 
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
 wenzelm parents: 
32856diff
changeset | 10 | type context = Proof.context | 
| 23639 | 11 | type method = Method.method | 
| 5820 | 12 | type state | 
| 17359 | 13 | val init: context -> state | 
| 14 | val level: state -> int | |
| 15 | val assert_bottom: bool -> state -> state | |
| 5820 | 16 | val context_of: state -> context | 
| 17 | val theory_of: state -> theory | |
| 13377 | 18 | val map_context: (context -> context) -> state -> state | 
| 28278 | 19 | val map_contexts: (context -> context) -> state -> state | 
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
37186diff
changeset | 20 | val propagate_ml_env: state -> state | 
| 30757 
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
 wenzelm parents: 
30557diff
changeset | 21 | val bind_terms: (indexname * term option) list -> state -> state | 
| 26251 
b8c6259d366b
put_facts: do_props, i.e. facts are indexed by proposition again;
 wenzelm parents: 
25958diff
changeset | 22 | val put_thms: bool -> string * thm list option -> state -> state | 
| 6091 | 23 | val the_facts: state -> thm list | 
| 9469 | 24 | val the_fact: state -> thm | 
| 17450 | 25 | val put_facts: thm list option -> state -> state | 
| 6891 | 26 | val assert_forward: state -> state | 
| 17359 | 27 | val assert_chain: state -> state | 
| 9469 | 28 | val assert_forward_or_chain: state -> state | 
| 5820 | 29 | val assert_backward: state -> state | 
| 8206 | 30 | val assert_no_chain: state -> state | 
| 5820 | 31 | val enter_forward: state -> state | 
| 24543 | 32 | val goal_message: (unit -> Pretty.T) -> state -> state | 
| 32738 | 33 | val verbose: bool Unsynchronized.ref | 
| 12423 | 34 | val pretty_state: int -> state -> Pretty.T list | 
| 10360 | 35 | val pretty_goals: bool -> state -> Pretty.T list | 
| 17112 | 36 | val refine: Method.text -> state -> state Seq.seq | 
| 37 | val refine_end: Method.text -> state -> state Seq.seq | |
| 18908 | 38 | val refine_insert: thm list -> state -> state | 
| 20208 | 39 | val goal_tac: thm -> int -> tactic | 
| 17359 | 40 | val refine_goals: (context -> thm -> unit) -> context -> thm list -> state -> state Seq.seq | 
| 33288 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 41 |   val raw_goal: state -> {context: context, facts: thm list, goal: thm}
 | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 42 |   val goal: state -> {context: context, facts: thm list, goal: thm}
 | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 43 |   val simple_goal: state -> {context: context, goal: thm}
 | 
| 38721 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 44 | val status_markup: state -> Markup.T | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 45 | val let_bind: (term list * term) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 46 | val let_bind_cmd: (string list * string) list -> state -> state | 
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 47 | val write: Syntax.mode -> (term * mixfix) list -> state -> state | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 48 | val write_cmd: Syntax.mode -> (string * mixfix) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 49 | val fix: (binding * typ option * mixfix) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 50 | val fix_cmd: (binding * string option * mixfix) list -> state -> state | 
| 20224 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 51 | val assm: Assumption.export -> | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 52 | (Thm.binding * (term * term list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 53 | val assm_cmd: Assumption.export -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 54 | (Attrib.binding * (string * string list) list) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 55 | val assume: (Thm.binding * (term * term list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 56 | val assume_cmd: (Attrib.binding * (string * string list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 57 | val presume: (Thm.binding * (term * term list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 58 | val presume_cmd: (Attrib.binding * (string * string list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 59 | val def: (Thm.binding * ((binding * mixfix) * (term * term list))) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 60 | val def_cmd: (Attrib.binding * ((binding * mixfix) * (string * string list))) list -> state -> state | 
| 17359 | 61 | val chain: state -> state | 
| 62 | val chain_facts: thm list -> state -> state | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 63 | val note_thmss: (Thm.binding * (thm list * attribute list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 64 | val note_thmss_cmd: (Attrib.binding * (Facts.ref * Attrib.src list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 65 | val from_thmss: ((thm list * attribute list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 66 | val from_thmss_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 67 | val with_thmss: ((thm list * attribute list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 68 | val with_thmss_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 69 | val using: ((thm list * attribute list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 70 | val using_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 71 | val unfolding: ((thm list * attribute list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 72 | val unfolding_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 73 | val invoke_case: string * string option list * attribute list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 74 | val invoke_case_cmd: string * string option list * Attrib.src list -> state -> state | 
| 17359 | 75 | val begin_block: state -> state | 
| 76 | val next_block: state -> state | |
| 20309 | 77 | val end_block: state -> state | 
| 17112 | 78 | val proof: Method.text option -> state -> state Seq.seq | 
| 79 | val defer: int option -> state -> state Seq.seq | |
| 80 | val prefer: int -> state -> state Seq.seq | |
| 81 | val apply: Method.text -> state -> state Seq.seq | |
| 82 | val apply_end: Method.text -> state -> state Seq.seq | |
| 17359 | 83 | val local_goal: (context -> ((string * string) * (string * thm list) list) -> unit) -> | 
| 18728 | 84 | (theory -> 'a -> attribute) -> | 
| 17359 | 85 | (context * 'b list -> context * (term list list * (context -> context))) -> | 
| 29383 | 86 | string -> Method.text option -> (thm list list -> state -> state) -> | 
| 29581 | 87 | ((binding * 'a list) * 'b) list -> state -> state | 
| 29383 | 88 | val local_qed: Method.text option * bool -> state -> state | 
| 21442 | 89 | val theorem: Method.text option -> (thm list list -> context -> context) -> | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 90 | (term * term list) list list -> context -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 91 | val theorem_cmd: Method.text option -> (thm list list -> context -> context) -> | 
| 21362 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 92 | (string * string list) list list -> context -> state | 
| 20363 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 93 | val global_qed: Method.text option * bool -> state -> context | 
| 29383 | 94 | val local_terminal_proof: Method.text * Method.text option -> state -> state | 
| 95 | val local_default_proof: state -> state | |
| 96 | val local_immediate_proof: state -> state | |
| 97 | val local_skip_proof: bool -> state -> state | |
| 98 | val local_done_proof: state -> state | |
| 20363 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 99 | val global_terminal_proof: Method.text * Method.text option -> state -> context | 
| 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 100 | val global_default_proof: state -> context | 
| 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 101 | val global_immediate_proof: state -> context | 
| 29383 | 102 | val global_skip_proof: bool -> state -> context | 
| 20363 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 103 | val global_done_proof: state -> context | 
| 29383 | 104 | val have: Method.text option -> (thm list list -> state -> state) -> | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 105 | (Thm.binding * (term * term list) list) list -> bool -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 106 | val have_cmd: Method.text option -> (thm list list -> state -> state) -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 107 | (Attrib.binding * (string * string list) list) list -> bool -> state -> state | 
| 29383 | 108 | val show: Method.text option -> (thm list list -> state -> state) -> | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 109 | (Thm.binding * (term * term list) list) list -> bool -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 110 | val show_cmd: Method.text option -> (thm list list -> state -> state) -> | 
| 28084 
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
 wenzelm parents: 
28083diff
changeset | 111 | (Attrib.binding * (string * string list) list) list -> bool -> state -> state | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 112 | val schematic_goal: state -> bool | 
| 28452 | 113 | val is_relevant: state -> bool | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 114 |   val local_future_proof: (state -> ('a * state) Future.future) ->
 | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 115 | state -> 'a Future.future * state | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 116 |   val global_future_proof: (state -> ('a * Proof.context) Future.future) ->
 | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 117 | state -> 'a Future.future * context | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 118 | val local_future_terminal_proof: Method.text * Method.text option -> bool -> state -> state | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 119 | val global_future_terminal_proof: Method.text * Method.text option -> bool -> state -> context | 
| 5820 | 120 | end; | 
| 121 | ||
| 13377 | 122 | structure Proof: PROOF = | 
| 5820 | 123 | struct | 
| 124 | ||
| 33031 
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
 wenzelm parents: 
32856diff
changeset | 125 | type context = Proof.context; | 
| 17112 | 126 | type method = Method.method; | 
| 16813 | 127 | |
| 5820 | 128 | |
| 129 | (** proof state **) | |
| 130 | ||
| 17359 | 131 | (* datatype state *) | 
| 5820 | 132 | |
| 17112 | 133 | datatype mode = Forward | Chain | Backward; | 
| 5820 | 134 | |
| 17359 | 135 | datatype state = | 
| 136 | State of node Stack.T | |
| 137 | and node = | |
| 7176 | 138 | Node of | 
| 139 |    {context: context,
 | |
| 140 | facts: thm list option, | |
| 141 | mode: mode, | |
| 17359 | 142 | goal: goal option} | 
| 143 | and goal = | |
| 144 | Goal of | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 145 |    {statement: (string * Position.T) * term list list * term,
 | 
| 28410 | 146 | (*goal kind and statement (starting with vars), initial proposition*) | 
| 25958 | 147 | messages: (unit -> Pretty.T) list, (*persistent messages (hints etc.)*) | 
| 148 | using: thm list, (*goal facts*) | |
| 149 | goal: thm, (*subgoals ==> statement*) | |
| 17859 | 150 | before_qed: Method.text option, | 
| 18124 | 151 | after_qed: | 
| 29383 | 152 | (thm list list -> state -> state) * | 
| 20363 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 153 | (thm list list -> context -> context)}; | 
| 17359 | 154 | |
| 24543 | 155 | fun make_goal (statement, messages, using, goal, before_qed, after_qed) = | 
| 156 |   Goal {statement = statement, messages = messages, using = using, goal = goal,
 | |
| 17859 | 157 | before_qed = before_qed, after_qed = after_qed}; | 
| 5820 | 158 | |
| 7176 | 159 | fun make_node (context, facts, mode, goal) = | 
| 160 |   Node {context = context, facts = facts, mode = mode, goal = goal};
 | |
| 161 | ||
| 17359 | 162 | fun map_node f (Node {context, facts, mode, goal}) =
 | 
| 163 | make_node (f (context, facts, mode, goal)); | |
| 5820 | 164 | |
| 21727 | 165 | val init_context = | 
| 33165 | 166 | ProofContext.set_stmt true #> | 
| 167 | ProofContext.map_naming (K ProofContext.local_naming); | |
| 21727 | 168 | |
| 21466 
6ffb8f455b84
init: enter inner statement mode, which prevents local notes from being named internally;
 wenzelm parents: 
21451diff
changeset | 169 | fun init ctxt = | 
| 21727 | 170 | State (Stack.init (make_node (init_context ctxt, NONE, Forward, NONE))); | 
| 5820 | 171 | |
| 17359 | 172 | fun current (State st) = Stack.top st |> (fn Node node => node); | 
| 21274 | 173 | fun map_current f (State st) = State (Stack.map_top (map_node f) st); | 
| 28278 | 174 | fun map_all f (State st) = State (Stack.map_all (map_node f) st); | 
| 12045 | 175 | |
| 5820 | 176 | |
| 177 | ||
| 178 | (** basic proof state operations **) | |
| 179 | ||
| 17359 | 180 | (* block structure *) | 
| 181 | ||
| 182 | fun open_block (State st) = State (Stack.push st); | |
| 183 | ||
| 18678 | 184 | fun close_block (State st) = State (Stack.pop st) | 
| 185 | handle Empty => error "Unbalanced block parentheses"; | |
| 17359 | 186 | |
| 187 | fun level (State st) = Stack.level st; | |
| 188 | ||
| 189 | fun assert_bottom b state = | |
| 190 | let val b' = (level state <= 2) in | |
| 18678 | 191 | if b andalso not b' then error "Not at bottom of proof!" | 
| 192 | else if not b andalso b' then error "Already at bottom of proof!" | |
| 17359 | 193 | else state | 
| 194 | end; | |
| 195 | ||
| 196 | ||
| 5820 | 197 | (* context *) | 
| 198 | ||
| 17359 | 199 | val context_of = #context o current; | 
| 5820 | 200 | val theory_of = ProofContext.theory_of o context_of; | 
| 201 | ||
| 17359 | 202 | fun map_context f = | 
| 203 | map_current (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); | |
| 5820 | 204 | |
| 17359 | 205 | fun map_context_result f state = | 
| 17859 | 206 | f (context_of state) ||> (fn ctxt => map_context (K ctxt) state); | 
| 5820 | 207 | |
| 28278 | 208 | fun map_contexts f = map_all (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); | 
| 209 | ||
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
37186diff
changeset | 210 | fun propagate_ml_env state = map_contexts | 
| 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
37186diff
changeset | 211 | (Context.proof_map (ML_Env.inherit (Context.Proof (context_of state)))) state; | 
| 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
37186diff
changeset | 212 | |
| 30757 
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
 wenzelm parents: 
30557diff
changeset | 213 | val bind_terms = map_context o ProofContext.bind_terms; | 
| 26251 
b8c6259d366b
put_facts: do_props, i.e. facts are indexed by proposition again;
 wenzelm parents: 
25958diff
changeset | 214 | val put_thms = map_context oo ProofContext.put_thms; | 
| 5820 | 215 | |
| 216 | ||
| 217 | (* facts *) | |
| 218 | ||
| 17359 | 219 | val get_facts = #facts o current; | 
| 220 | ||
| 221 | fun the_facts state = | |
| 222 | (case get_facts state of SOME facts => facts | |
| 18678 | 223 | | NONE => error "No current facts available"); | 
| 5820 | 224 | |
| 9469 | 225 | fun the_fact state = | 
| 17359 | 226 | (case the_facts state of [thm] => thm | 
| 18678 | 227 | | _ => error "Single theorem expected"); | 
| 7605 | 228 | |
| 17359 | 229 | fun put_facts facts = | 
| 19078 | 230 | map_current (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #> | 
| 33386 | 231 | put_thms true (Auto_Bind.thisN, facts); | 
| 5820 | 232 | |
| 17359 | 233 | fun these_factss more_facts (named_factss, state) = | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19475diff
changeset | 234 | (named_factss, state |> put_facts (SOME (maps snd named_factss @ more_facts))); | 
| 5820 | 235 | |
| 17359 | 236 | fun export_facts inner outer = | 
| 237 | (case get_facts inner of | |
| 20309 | 238 | NONE => put_facts NONE outer | 
| 17359 | 239 | | SOME thms => | 
| 240 | thms | |
| 20309 | 241 | |> ProofContext.export (context_of inner) (context_of outer) | 
| 242 | |> (fn ths => put_facts (SOME ths) outer)); | |
| 5820 | 243 | |
| 244 | ||
| 245 | (* mode *) | |
| 246 | ||
| 17359 | 247 | val get_mode = #mode o current; | 
| 5820 | 248 | fun put_mode mode = map_current (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal)); | 
| 249 | ||
| 17359 | 250 | val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove"); | 
| 5820 | 251 | |
| 252 | fun assert_mode pred state = | |
| 253 | let val mode = get_mode state in | |
| 254 | if pred mode then state | |
| 18678 | 255 |     else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode")
 | 
| 5820 | 256 | end; | 
| 257 | ||
| 19308 | 258 | val assert_forward = assert_mode (fn mode => mode = Forward); | 
| 259 | val assert_chain = assert_mode (fn mode => mode = Chain); | |
| 260 | val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain); | |
| 261 | val assert_backward = assert_mode (fn mode => mode = Backward); | |
| 262 | val assert_no_chain = assert_mode (fn mode => mode <> Chain); | |
| 5820 | 263 | |
| 17359 | 264 | val enter_forward = put_mode Forward; | 
| 265 | val enter_chain = put_mode Chain; | |
| 266 | val enter_backward = put_mode Backward; | |
| 5820 | 267 | |
| 17359 | 268 | |
| 269 | (* current goal *) | |
| 270 | ||
| 271 | fun current_goal state = | |
| 272 | (case current state of | |
| 273 |     {context, goal = SOME (Goal goal), ...} => (context, goal)
 | |
| 18678 | 274 | | _ => error "No current goal!"); | 
| 5820 | 275 | |
| 17359 | 276 | fun assert_current_goal g state = | 
| 277 | let val g' = can current_goal state in | |
| 18678 | 278 | if g andalso not g' then error "No goal in this block!" | 
| 279 | else if not g andalso g' then error "Goal present in this block!" | |
| 17359 | 280 | else state | 
| 281 | end; | |
| 6776 | 282 | |
| 17359 | 283 | fun put_goal goal = map_current (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal)); | 
| 284 | ||
| 17859 | 285 | val before_qed = #before_qed o #2 o current_goal; | 
| 286 | ||
| 17359 | 287 | |
| 288 | (* nested goal *) | |
| 5820 | 289 | |
| 17359 | 290 | fun map_goal f g (State (Node {context, facts, mode, goal = SOME goal}, nodes)) =
 | 
| 291 | let | |
| 24543 | 292 |         val Goal {statement, messages, using, goal, before_qed, after_qed} = goal;
 | 
| 293 | val goal' = make_goal (g (statement, messages, using, goal, before_qed, after_qed)); | |
| 17359 | 294 | in State (make_node (f context, facts, mode, SOME goal'), nodes) end | 
| 295 | | map_goal f g (State (nd, node :: nodes)) = | |
| 296 | let val State (node', nodes') = map_goal f g (State (node, nodes)) | |
| 297 | in map_context f (State (nd, node' :: nodes')) end | |
| 298 | | map_goal _ _ state = state; | |
| 5820 | 299 | |
| 24556 | 300 | fun set_goal goal = map_goal I (fn (statement, _, using, _, before_qed, after_qed) => | 
| 301 | (statement, [], using, goal, before_qed, after_qed)); | |
| 19188 | 302 | |
| 24543 | 303 | fun goal_message msg = map_goal I (fn (statement, messages, using, goal, before_qed, after_qed) => | 
| 304 | (statement, msg :: messages, using, goal, before_qed, after_qed)); | |
| 305 | ||
| 24556 | 306 | fun using_facts using = map_goal I (fn (statement, _, _, goal, before_qed, after_qed) => | 
| 307 | (statement, [], using, goal, before_qed, after_qed)); | |
| 17359 | 308 | |
| 309 | local | |
| 310 | fun find i state = | |
| 311 | (case try current_goal state of | |
| 312 | SOME (ctxt, goal) => (ctxt, (i, goal)) | |
| 18678 | 313 | | NONE => find (i + 1) (close_block state handle ERROR _ => error "No goal present")); | 
| 17359 | 314 | in val find_goal = find 0 end; | 
| 315 | ||
| 316 | fun get_goal state = | |
| 317 |   let val (ctxt, (_, {using, goal, ...})) = find_goal state
 | |
| 318 | in (ctxt, (using, goal)) end; | |
| 5820 | 319 | |
| 320 | ||
| 321 | ||
| 12423 | 322 | (** pretty_state **) | 
| 5820 | 323 | |
| 16539 | 324 | val verbose = ProofContext.verbose; | 
| 13698 | 325 | |
| 15531 | 326 | fun pretty_facts _ _ NONE = [] | 
| 327 | | pretty_facts s ctxt (SOME ths) = | |
| 32091 
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
 wenzelm parents: 
32089diff
changeset | 328 | [Pretty.big_list (s ^ "this:") (map (Display.pretty_thm ctxt) ths), Pretty.str ""]; | 
| 6756 | 329 | |
| 17359 | 330 | fun pretty_state nr state = | 
| 5820 | 331 | let | 
| 39051 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 332 |     val {context = ctxt, facts, mode, goal = _} = current state;
 | 
| 5820 | 333 | |
| 334 | fun levels_up 0 = "" | |
| 17359 | 335 | | levels_up 1 = "1 level up" | 
| 336 | | levels_up i = string_of_int i ^ " levels up"; | |
| 5820 | 337 | |
| 11556 | 338 | fun subgoals 0 = "" | 
| 17359 | 339 | | subgoals 1 = "1 subgoal" | 
| 340 | | subgoals n = string_of_int n ^ " subgoals"; | |
| 341 | ||
| 342 | fun description strs = | |
| 28375 | 343 | (case filter_out (fn s => s = "") strs of [] => "" | 
| 17359 | 344 |       | strs' => enclose " (" ")" (commas strs'));
 | 
| 12146 | 345 | |
| 39051 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 346 | fun prt_goal (SOME (_, (i, | 
| 29416 | 347 |       {statement = ((_, pos), _, _), messages, using, goal, before_qed = _, after_qed = _}))) =
 | 
| 17359 | 348 | pretty_facts "using " ctxt | 
| 349 | (if mode <> Backward orelse null using then NONE else SOME using) @ | |
| 21442 | 350 |           [Pretty.str ("goal" ^
 | 
| 351 | description [levels_up (i div 2), subgoals (Thm.nprems_of goal)] ^ ":")] @ | |
| 39125 
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
 wenzelm parents: 
39051diff
changeset | 352 | Goal_Display.pretty_goals ctxt goal @ | 
| 25958 | 353 | (map (fn msg => Position.setmp_thread_data pos msg ()) (rev messages)) | 
| 17359 | 354 | | prt_goal NONE = []; | 
| 6848 | 355 | |
| 17359 | 356 | val prt_ctxt = | 
| 39051 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 357 | if ! verbose orelse mode = Forward then ProofContext.pretty_context ctxt | 
| 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 358 | else if mode = Backward then ProofContext.pretty_ctxt ctxt | 
| 7575 | 359 | else []; | 
| 17359 | 360 | in | 
| 361 |     [Pretty.str ("proof (" ^ mode_name mode ^ "): step " ^ string_of_int nr ^
 | |
| 362 | (if ! verbose then ", depth " ^ string_of_int (level state div 2 - 1) else "")), | |
| 363 | Pretty.str ""] @ | |
| 364 | (if null prt_ctxt then [] else prt_ctxt @ [Pretty.str ""]) @ | |
| 365 | (if ! verbose orelse mode = Forward then | |
| 39051 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 366 | pretty_facts "" ctxt facts @ prt_goal (try find_goal state) | 
| 
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
 wenzelm parents: 
38721diff
changeset | 367 | else if mode = Chain then pretty_facts "picking " ctxt facts | 
| 17359 | 368 | else prt_goal (try find_goal state)) | 
| 369 | end; | |
| 5820 | 370 | |
| 12085 | 371 | fun pretty_goals main state = | 
| 39125 
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
 wenzelm parents: 
39051diff
changeset | 372 | let | 
| 39129 
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
 wenzelm parents: 
39125diff
changeset | 373 | val (_, (_, goal)) = get_goal state; | 
| 
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
 wenzelm parents: 
39125diff
changeset | 374 | val ctxt = context_of state | 
| 39125 
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
 wenzelm parents: 
39051diff
changeset | 375 | |> Config.put Goal_Display.show_main_goal main | 
| 
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
 wenzelm parents: 
39051diff
changeset | 376 | |> Config.put Goal_Display.goals_total false; | 
| 39129 
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
 wenzelm parents: 
39125diff
changeset | 377 | in Goal_Display.pretty_goals ctxt goal end; | 
| 10320 | 378 | |
| 5820 | 379 | |
| 380 | ||
| 381 | (** proof steps **) | |
| 382 | ||
| 17359 | 383 | (* refine via method *) | 
| 5820 | 384 | |
| 8234 | 385 | local | 
| 386 | ||
| 16146 | 387 | fun goalN i = "goal" ^ string_of_int i; | 
| 388 | fun goals st = map goalN (1 upto Thm.nprems_of st); | |
| 389 | ||
| 390 | fun no_goal_cases st = map (rpair NONE) (goals st); | |
| 391 | ||
| 392 | fun goal_cases st = | |
| 34916 
f625d8d6fcf3
Eliminated is_open option of Rule_Cases.make_nested/make_common;
 berghofe parents: 
34239diff
changeset | 393 | Rule_Cases.make_common (Thm.theory_of_thm st, Thm.prop_of st) (map (rpair []) (goals st)); | 
| 16146 | 394 | |
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 395 | fun apply_method current_context meth state = | 
| 6848 | 396 | let | 
| 24556 | 397 |     val (goal_ctxt, (_, {statement, messages = _, using, goal, before_qed, after_qed})) =
 | 
| 24543 | 398 | find_goal state; | 
| 25958 | 399 | val ctxt = if current_context then context_of state else goal_ctxt; | 
| 16146 | 400 | in | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 401 | Method.apply meth ctxt using goal |> Seq.map (fn (meth_cases, goal') => | 
| 6848 | 402 | state | 
| 16146 | 403 | |> map_goal | 
| 18475 | 404 | (ProofContext.add_cases false (no_goal_cases goal @ goal_cases goal') #> | 
| 405 | ProofContext.add_cases true meth_cases) | |
| 24556 | 406 | (K (statement, [], using, goal', before_qed, after_qed))) | 
| 16146 | 407 | end; | 
| 5820 | 408 | |
| 19188 | 409 | fun select_goals n meth state = | 
| 19224 | 410 | state | 
| 411 | |> (#2 o #2 o get_goal) | |
| 21687 | 412 | |> ALLGOALS Goal.conjunction_tac | 
| 19224 | 413 | |> Seq.maps (fn goal => | 
| 19188 | 414 | state | 
| 21687 | 415 | |> Seq.lift set_goal (Goal.extract 1 n goal |> Seq.maps (Goal.conjunction_tac 1)) | 
| 19188 | 416 | |> Seq.maps meth | 
| 417 | |> Seq.maps (fn state' => state' | |
| 418 | |> Seq.lift set_goal (Goal.retrofit 1 n (#2 (#2 (get_goal state'))) goal)) | |
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 419 | |> Seq.maps (apply_method true (K Method.succeed))); | 
| 19188 | 420 | |
| 17112 | 421 | fun apply_text cc text state = | 
| 422 | let | |
| 423 | val thy = theory_of state; | |
| 424 | ||
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 425 | fun eval (Method.Basic m) = apply_method cc m | 
| 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 426 | | eval (Method.Source src) = apply_method cc (Method.method thy src) | 
| 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 427 | | eval (Method.Source_i src) = apply_method cc (Method.method_i thy src) | 
| 17112 | 428 | | eval (Method.Then txts) = Seq.EVERY (map eval txts) | 
| 429 | | eval (Method.Orelse txts) = Seq.FIRST (map eval txts) | |
| 430 | | eval (Method.Try txt) = Seq.TRY (eval txt) | |
| 19188 | 431 | | eval (Method.Repeat1 txt) = Seq.REPEAT1 (eval txt) | 
| 432 | | eval (Method.SelectGoals (n, txt)) = select_goals n (eval txt); | |
| 17112 | 433 | in eval text state end; | 
| 434 | ||
| 8234 | 435 | in | 
| 436 | ||
| 17112 | 437 | val refine = apply_text true; | 
| 438 | val refine_end = apply_text false; | |
| 32856 
92d9555ac790
clarified Proof.refine_insert -- always "refine" to apply standard method treatment (of conjunctions);
 wenzelm parents: 
32786diff
changeset | 439 | fun refine_insert ths = Seq.hd o refine (Method.Basic (K (Method.insert ths))); | 
| 18908 | 440 | |
| 8234 | 441 | end; | 
| 442 | ||
| 5820 | 443 | |
| 17359 | 444 | (* refine via sub-proof *) | 
| 445 | ||
| 30557 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 446 | fun finish_tac 0 = K all_tac | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 447 | | finish_tac n = | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 448 | Goal.norm_hhf_tac THEN' | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 449 | SUBGOAL (fn (goal, i) => | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 450 | if can Logic.unprotect (Logic.strip_assums_concl goal) then | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 451 | Tactic.etac Drule.protectI i THEN finish_tac (n - 1) i | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 452 | else finish_tac (n - 1) (i + 1)); | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 453 | |
| 20208 | 454 | fun goal_tac rule = | 
| 30557 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 455 | Goal.norm_hhf_tac THEN' | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 456 | Tactic.rtac rule THEN' | 
| 
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
 wenzelm parents: 
30510diff
changeset | 457 | finish_tac (Thm.nprems_of rule); | 
| 11816 | 458 | |
| 19915 | 459 | fun refine_goals print_rule inner raw_rules state = | 
| 460 | let | |
| 461 | val (outer, (_, goal)) = get_goal state; | |
| 20208 | 462 | fun refine rule st = (print_rule outer rule; FINDGOAL (goal_tac rule) st); | 
| 19915 | 463 | in | 
| 464 | raw_rules | |
| 20309 | 465 | |> ProofContext.goal_export inner outer | 
| 466 | |> (fn rules => Seq.lift set_goal (EVERY (map refine rules) goal) state) | |
| 19915 | 467 | end; | 
| 17359 | 468 | |
| 6932 | 469 | |
| 17359 | 470 | (* conclude_goal *) | 
| 6932 | 471 | |
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 472 | fun conclude_goal ctxt goal propss = | 
| 5820 | 473 | let | 
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 474 | val thy = ProofContext.theory_of ctxt; | 
| 24920 | 475 | val string_of_term = Syntax.string_of_term ctxt; | 
| 32091 
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
 wenzelm parents: 
32089diff
changeset | 476 | val string_of_thm = Display.string_of_thm ctxt; | 
| 5820 | 477 | |
| 17359 | 478 | val ngoals = Thm.nprems_of goal; | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 479 | val _ = ngoals = 0 orelse error (Pretty.string_of (Pretty.chunks | 
| 39125 
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
 wenzelm parents: 
39051diff
changeset | 480 | (Goal_Display.pretty_goals ctxt goal @ | 
| 23639 | 481 | [Pretty.str (string_of_int ngoals ^ " unsolved goal(s)!")]))); | 
| 20224 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 482 | |
| 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 483 | val extra_hyps = Assumption.extra_hyps ctxt goal; | 
| 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 484 | val _ = null extra_hyps orelse | 
| 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 485 |       error ("Additional hypotheses:\n" ^ cat_lines (map string_of_term extra_hyps));
 | 
| 5820 | 486 | |
| 23418 | 487 |     fun lost_structure () = error ("Lost goal structure:\n" ^ string_of_thm goal);
 | 
| 488 | ||
| 23782 
4dd0ba632e40
Proof terms for meta-conjunctions are now normalized before
 berghofe parents: 
23639diff
changeset | 489 | val th = Goal.conclude | 
| 23806 | 490 | (if length (flat propss) > 1 then Thm.norm_proof goal else goal) | 
| 23782 
4dd0ba632e40
Proof terms for meta-conjunctions are now normalized before
 berghofe parents: 
23639diff
changeset | 491 | handle THM _ => lost_structure (); | 
| 23418 | 492 | val goal_propss = filter_out null propss; | 
| 493 | val results = | |
| 494 | Conjunction.elim_balanced (length goal_propss) th | |
| 495 | |> map2 Conjunction.elim_balanced (map length goal_propss) | |
| 496 | handle THM _ => lost_structure (); | |
| 497 | val _ = Unify.matches_list thy (flat goal_propss) (map Thm.prop_of (flat results)) orelse | |
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 498 |       error ("Proved a different theorem:\n" ^ string_of_thm th);
 | 
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 499 | val _ = Thm.check_shyps (Variable.sorts_of ctxt) th; | 
| 23418 | 500 | |
| 501 | fun recover_result ([] :: pss) thss = [] :: recover_result pss thss | |
| 502 | | recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss | |
| 503 | | recover_result [] [] = [] | |
| 504 | | recover_result _ _ = lost_structure (); | |
| 505 | in recover_result propss results end; | |
| 5820 | 506 | |
| 507 | ||
| 33288 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 508 | (* goal views -- corresponding to methods *) | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 509 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 510 | fun raw_goal state = | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 511 | let val (ctxt, (facts, goal)) = get_goal state | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 512 |   in {context = ctxt, facts = facts, goal = goal} end;
 | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 513 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 514 | val goal = raw_goal o refine_insert []; | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 515 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 516 | fun simple_goal state = | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 517 | let | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 518 | val (_, (facts, _)) = get_goal state; | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 519 | val (ctxt, (_, goal)) = get_goal (refine_insert facts state); | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 520 |   in {context = ctxt, goal = goal} end;
 | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 521 | |
| 38721 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 522 | fun status_markup state = | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 523 | (case try goal state of | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 524 |     SOME {goal, ...} => Markup.proof_state (Thm.nprems_of goal)
 | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 525 | | NONE => Markup.empty); | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 526 | |
| 33288 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 527 | |
| 5820 | 528 | |
| 529 | (*** structured proof commands ***) | |
| 530 | ||
| 17112 | 531 | (** context elements **) | 
| 5820 | 532 | |
| 36324 | 533 | (* let bindings *) | 
| 5820 | 534 | |
| 16813 | 535 | local | 
| 536 | ||
| 17359 | 537 | fun gen_bind bind args state = | 
| 5820 | 538 | state | 
| 539 | |> assert_forward | |
| 36324 | 540 | |> map_context (bind true args #> snd) | 
| 17359 | 541 | |> put_facts NONE; | 
| 5820 | 542 | |
| 16813 | 543 | in | 
| 544 | ||
| 36324 | 545 | val let_bind = gen_bind ProofContext.match_bind_i; | 
| 546 | val let_bind_cmd = gen_bind ProofContext.match_bind; | |
| 5820 | 547 | |
| 16813 | 548 | end; | 
| 549 | ||
| 5820 | 550 | |
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 551 | (* concrete syntax *) | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 552 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 553 | local | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 554 | |
| 36507 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 555 | fun gen_write prep_arg mode args = | 
| 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 556 | assert_forward | 
| 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 557 | #> map_context (fn ctxt => ctxt |> ProofContext.notation true mode (map (prep_arg ctxt) args)) | 
| 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 558 | #> put_facts NONE; | 
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 559 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 560 | in | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 561 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 562 | val write = gen_write (K I); | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 563 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 564 | val write_cmd = | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 565 | gen_write (fn ctxt => fn (c, mx) => | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 566 | (ProofContext.read_const ctxt false (Syntax.mixfixT mx) c, mx)); | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 567 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 568 | end; | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 569 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 570 | |
| 17359 | 571 | (* fix *) | 
| 9196 | 572 | |
| 12714 | 573 | local | 
| 574 | ||
| 30763 
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
 wenzelm parents: 
30761diff
changeset | 575 | fun gen_fix prep_vars args = | 
| 17359 | 576 | assert_forward | 
| 30763 
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
 wenzelm parents: 
30761diff
changeset | 577 | #> map_context (fn ctxt => snd (ProofContext.add_fixes (prep_vars ctxt args) ctxt)) | 
| 17359 | 578 | #> put_facts NONE; | 
| 5820 | 579 | |
| 16813 | 580 | in | 
| 581 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 582 | val fix = gen_fix (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 583 | val fix_cmd = gen_fix (fn ctxt => fn args => fst (ProofContext.read_vars args ctxt)); | 
| 5820 | 584 | |
| 16813 | 585 | end; | 
| 586 | ||
| 5820 | 587 | |
| 17359 | 588 | (* assume etc. *) | 
| 5820 | 589 | |
| 16813 | 590 | local | 
| 591 | ||
| 17112 | 592 | fun gen_assume asm prep_att exp args state = | 
| 5820 | 593 | state | 
| 594 | |> assert_forward | |
| 17112 | 595 | |> map_context_result (asm exp (Attrib.map_specs (prep_att (theory_of state)) args)) | 
| 17359 | 596 | |> these_factss [] |> #2; | 
| 6932 | 597 | |
| 16813 | 598 | in | 
| 599 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 600 | val assm = gen_assume ProofContext.add_assms_i (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 601 | val assm_cmd = gen_assume ProofContext.add_assms Attrib.attribute; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 602 | val assume = assm Assumption.assume_export; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 603 | val assume_cmd = assm_cmd Assumption.assume_export; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 604 | val presume = assm Assumption.presume_export; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 605 | val presume_cmd = assm_cmd Assumption.presume_export; | 
| 5820 | 606 | |
| 16813 | 607 | end; | 
| 608 | ||
| 7271 | 609 | |
| 17359 | 610 | (* def *) | 
| 11891 | 611 | |
| 16813 | 612 | local | 
| 613 | ||
| 20913 | 614 | fun gen_def prep_att prep_vars prep_binds args state = | 
| 11891 | 615 | let | 
| 616 | val _ = assert_forward state; | |
| 17112 | 617 | val thy = theory_of state; | 
| 11891 | 618 | |
| 20913 | 619 | val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list; | 
| 620 | val name_atts = map (apsnd (map (prep_att thy))) raw_name_atts; | |
| 11891 | 621 | in | 
| 20913 | 622 | state | 
| 623 | |> map_context_result (prep_vars (map (fn (x, mx) => (x, NONE, mx)) raw_vars)) | |
| 624 | |>> map (fn (x, _, mx) => (x, mx)) | |
| 625 | |-> (fn vars => | |
| 626 | map_context_result (prep_binds false (map swap raw_rhss)) | |
| 35624 | 627 | #-> (fn rhss => map_context_result (Local_Defs.add_defs (vars ~~ (name_atts ~~ rhss))))) | 
| 20913 | 628 | |-> (put_facts o SOME o map (#2 o #2)) | 
| 11891 | 629 | end; | 
| 630 | ||
| 16813 | 631 | in | 
| 632 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 633 | val def = gen_def (K I) ProofContext.cert_vars ProofContext.match_bind_i; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 634 | val def_cmd = gen_def Attrib.attribute ProofContext.read_vars ProofContext.match_bind; | 
| 11891 | 635 | |
| 16813 | 636 | end; | 
| 637 | ||
| 11891 | 638 | |
| 8374 | 639 | |
| 17112 | 640 | (** facts **) | 
| 5820 | 641 | |
| 17359 | 642 | (* chain *) | 
| 5820 | 643 | |
| 24011 | 644 | fun clean_facts ctxt = | 
| 24050 | 645 | put_facts (SOME (filter_out Thm.is_dummy (the_facts ctxt))) ctxt; | 
| 24011 | 646 | |
| 17359 | 647 | val chain = | 
| 648 | assert_forward | |
| 24011 | 649 | #> clean_facts | 
| 17359 | 650 | #> enter_chain; | 
| 5820 | 651 | |
| 17359 | 652 | fun chain_facts facts = | 
| 653 | put_facts (SOME facts) | |
| 654 | #> chain; | |
| 5820 | 655 | |
| 656 | ||
| 17359 | 657 | (* note etc. *) | 
| 17112 | 658 | |
| 28965 | 659 | fun no_binding args = map (pair (Binding.empty, [])) args; | 
| 17112 | 660 | |
| 661 | local | |
| 662 | ||
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 663 | fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state = | 
| 17112 | 664 | state | 
| 665 | |> assert_forward | |
| 30761 
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
 wenzelm parents: 
30760diff
changeset | 666 | |> map_context_result (ProofContext.note_thmss "" | 
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 667 | (Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state)) args)) | 
| 17112 | 668 | |> these_factss (more_facts state) | 
| 17359 | 669 | ||> opt_chain | 
| 670 | |> opt_result; | |
| 17112 | 671 | |
| 672 | in | |
| 673 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 674 | val note_thmss = gen_thmss (K []) I #2 (K I) (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 675 | val note_thmss_cmd = gen_thmss (K []) I #2 Attrib.attribute ProofContext.get_fact; | 
| 17112 | 676 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 677 | val from_thmss = gen_thmss (K []) chain #2 (K I) (K I) o no_binding; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 678 | val from_thmss_cmd = gen_thmss (K []) chain #2 Attrib.attribute ProofContext.get_fact o no_binding; | 
| 17359 | 679 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 680 | val with_thmss = gen_thmss the_facts chain #2 (K I) (K I) o no_binding; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 681 | val with_thmss_cmd = gen_thmss the_facts chain #2 Attrib.attribute ProofContext.get_fact o no_binding; | 
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 682 | |
| 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 683 | val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact); | 
| 17359 | 684 | |
| 17112 | 685 | end; | 
| 686 | ||
| 687 | ||
| 18548 | 688 | (* using/unfolding *) | 
| 17112 | 689 | |
| 690 | local | |
| 691 | ||
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 692 | fun gen_using f g prep_atts prep_fact args state = | 
| 17112 | 693 | state | 
| 694 | |> assert_backward | |
| 21442 | 695 | |> map_context_result | 
| 30761 
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
 wenzelm parents: 
30760diff
changeset | 696 | (ProofContext.note_thmss "" | 
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 697 | (Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state)) | 
| 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 698 | (no_binding args))) | 
| 18843 | 699 | |> (fn (named_facts, state') => | 
| 24556 | 700 | state' |> map_goal I (fn (statement, _, using, goal, before_qed, after_qed) => | 
| 18843 | 701 | let | 
| 702 | val ctxt = context_of state'; | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19475diff
changeset | 703 | val ths = maps snd named_facts; | 
| 24556 | 704 | in (statement, [], f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end)); | 
| 18548 | 705 | |
| 24050 | 706 | fun append_using _ ths using = using @ filter_out Thm.is_dummy ths; | 
| 35624 | 707 | fun unfold_using ctxt ths = map (Local_Defs.unfold ctxt ths); | 
| 708 | val unfold_goals = Local_Defs.unfold_goals; | |
| 17112 | 709 | |
| 710 | in | |
| 711 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 712 | val using = gen_using append_using (K (K I)) (K I) (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 713 | val using_cmd = gen_using append_using (K (K I)) Attrib.attribute ProofContext.get_fact; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 714 | val unfolding = gen_using unfold_using unfold_goals (K I) (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 715 | val unfolding_cmd = gen_using unfold_using unfold_goals Attrib.attribute ProofContext.get_fact; | 
| 17112 | 716 | |
| 717 | end; | |
| 718 | ||
| 719 | ||
| 720 | (* case *) | |
| 721 | ||
| 722 | local | |
| 723 | ||
| 30419 
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
 wenzelm parents: 
30279diff
changeset | 724 | fun qualified_binding a = | 
| 
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
 wenzelm parents: 
30279diff
changeset | 725 | Binding.qualify true (Long_Name.qualifier a) (Binding.name (Long_Name.base_name a)); | 
| 
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
 wenzelm parents: 
30279diff
changeset | 726 | |
| 17112 | 727 | fun gen_invoke_case prep_att (name, xs, raw_atts) state = | 
| 728 | let | |
| 729 | val atts = map (prep_att (theory_of state)) raw_atts; | |
| 19078 | 730 | val (asms, state') = state |> map_context_result (fn ctxt => | 
| 731 | ctxt |> ProofContext.apply_case (ProofContext.get_case ctxt name xs)); | |
| 30419 
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
 wenzelm parents: 
30279diff
changeset | 732 | val assumptions = asms |> map (fn (a, ts) => ((qualified_binding a, atts), map (rpair []) ts)); | 
| 17112 | 733 | in | 
| 734 | state' | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 735 | |> assume assumptions | 
| 33386 | 736 | |> bind_terms Auto_Bind.no_facts | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 737 | |> `the_facts |-> (fn thms => note_thmss [((Binding.name name, []), [(thms, [])])]) | 
| 17112 | 738 | end; | 
| 739 | ||
| 740 | in | |
| 741 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 742 | val invoke_case = gen_invoke_case (K I); | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 743 | val invoke_case_cmd = gen_invoke_case Attrib.attribute; | 
| 17112 | 744 | |
| 745 | end; | |
| 746 | ||
| 747 | ||
| 748 | ||
| 17359 | 749 | (** proof structure **) | 
| 750 | ||
| 751 | (* blocks *) | |
| 752 | ||
| 753 | val begin_block = | |
| 754 | assert_forward | |
| 755 | #> open_block | |
| 756 | #> put_goal NONE | |
| 757 | #> open_block; | |
| 758 | ||
| 759 | val next_block = | |
| 760 | assert_forward | |
| 761 | #> close_block | |
| 762 | #> open_block | |
| 763 | #> put_goal NONE | |
| 764 | #> put_facts NONE; | |
| 765 | ||
| 766 | fun end_block state = | |
| 767 | state | |
| 768 | |> assert_forward | |
| 769 | |> close_block | |
| 770 | |> assert_current_goal false | |
| 771 | |> close_block | |
| 772 | |> export_facts state; | |
| 773 | ||
| 774 | ||
| 775 | (* sub-proofs *) | |
| 776 | ||
| 777 | fun proof opt_text = | |
| 778 | assert_backward | |
| 17859 | 779 | #> refine (the_default Method.default_text opt_text) | 
| 17359 | 780 | #> Seq.map (using_facts [] #> enter_forward); | 
| 781 | ||
| 23360 | 782 | fun end_proof bot txt state = | 
| 783 | state | |
| 784 | |> assert_forward | |
| 785 | |> assert_bottom bot | |
| 786 | |> close_block | |
| 787 | |> assert_current_goal true | |
| 788 | |> using_facts [] | |
| 789 | |> `before_qed |-> (refine o the_default Method.succeed_text) | |
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 790 | |> Seq.maps (refine (Method.finish_text txt)); | 
| 17359 | 791 | |
| 29383 | 792 | fun check_result msg sq = | 
| 793 | (case Seq.pull sq of | |
| 794 | NONE => error msg | |
| 795 | | SOME (s, _) => s); | |
| 796 | ||
| 797 | fun check_finish sq = check_result "Failed to finish proof" sq; | |
| 798 | ||
| 17359 | 799 | |
| 800 | (* unstructured refinement *) | |
| 801 | ||
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 802 | fun defer i = assert_no_chain #> refine (Method.Basic (K (Method.defer i))); | 
| 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 803 | fun prefer i = assert_no_chain #> refine (Method.Basic (K (Method.prefer i))); | 
| 17359 | 804 | |
| 805 | fun apply text = assert_backward #> refine text #> Seq.map (using_facts []); | |
| 806 | fun apply_end text = assert_forward #> refine_end text; | |
| 807 | ||
| 808 | ||
| 809 | ||
| 17112 | 810 | (** goals **) | 
| 811 | ||
| 17359 | 812 | (* generic goals *) | 
| 813 | ||
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 814 | local | 
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 815 | |
| 36322 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 816 | val is_var = | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 817 | can (dest_TVar o Logic.dest_type o Logic.dest_term) orf | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 818 | can (dest_Var o Logic.dest_term); | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 819 | |
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 820 | fun implicit_vars props = | 
| 19846 | 821 | let | 
| 36354 | 822 | val (var_props, _) = take_prefix is_var props; | 
| 36322 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 823 | val explicit_vars = fold Term.add_vars var_props []; | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 824 | val vars = filter_out (member (op =) explicit_vars) (fold Term.add_vars props []); | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 825 | in map (Logic.mk_term o Var) vars end; | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 826 | |
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 827 | fun refine_terms n = | 
| 30510 
4120fc59dd85
unified type Proof.method and pervasive METHOD combinators;
 wenzelm parents: 
30419diff
changeset | 828 | refine (Method.Basic (K (RAW_METHOD | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 829 | (K (HEADGOAL (PRECISE_CONJUNCTS n | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 830 | (HEADGOAL (CONJUNCTS (ALLGOALS (rtac Drule.termI)))))))))) | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 831 | #> Seq.hd; | 
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 832 | |
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 833 | in | 
| 17359 | 834 | |
| 17859 | 835 | fun generic_goal prepp kind before_qed after_qed raw_propp state = | 
| 5820 | 836 | let | 
| 17359 | 837 | val thy = theory_of state; | 
| 23418 | 838 | val cert = Thm.cterm_of thy; | 
| 17359 | 839 | val chaining = can assert_chain state; | 
| 25958 | 840 | val pos = Position.thread_data (); | 
| 17359 | 841 | |
| 842 | val ((propss, after_ctxt), goal_state) = | |
| 5936 | 843 | state | 
| 844 | |> assert_forward_or_chain | |
| 845 | |> enter_forward | |
| 17359 | 846 | |> open_block | 
| 17859 | 847 | |> map_context_result (fn ctxt => swap (prepp (ctxt, raw_propp))); | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19475diff
changeset | 848 | val props = flat propss; | 
| 15703 | 849 | |
| 36322 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 850 | val vars = implicit_vars props; | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 851 | val propss' = vars :: propss; | 
| 23418 | 852 | val goal_propss = filter_out null propss'; | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 853 | val goal = | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 854 | cert (Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss)) | 
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 855 | |> Thm.weaken_sorts (Variable.sorts_of (context_of goal_state)); | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 856 | val statement = ((kind, pos), propss', Thm.term_of goal); | 
| 18124 | 857 | val after_qed' = after_qed |>> (fn after_local => | 
| 858 | fn results => map_context after_ctxt #> after_local results); | |
| 5820 | 859 | in | 
| 17359 | 860 | goal_state | 
| 21727 | 861 | |> map_context (init_context #> Variable.set_body true) | 
| 28410 | 862 | |> put_goal (SOME (make_goal (statement, [], [], Goal.init goal, before_qed, after_qed'))) | 
| 17359 | 863 | |> map_context (ProofContext.auto_bind_goal props) | 
| 21565 | 864 | |> chaining ? (`the_facts #-> using_facts) | 
| 17359 | 865 | |> put_facts NONE | 
| 866 | |> open_block | |
| 867 | |> put_goal NONE | |
| 5820 | 868 | |> enter_backward | 
| 23418 | 869 | |> not (null vars) ? refine_terms (length goal_propss) | 
| 32193 
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
 wenzelm parents: 
32187diff
changeset | 870 | |> null props ? (refine (Method.Basic Method.assumption) #> Seq.hd) | 
| 5820 | 871 | end; | 
| 872 | ||
| 29090 
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
 wenzelm parents: 
28981diff
changeset | 873 | fun generic_qed after_ctxt state = | 
| 12503 | 874 | let | 
| 36354 | 875 |     val (goal_ctxt, {statement = (_, stmt, _), goal, after_qed, ...}) = current_goal state;
 | 
| 8617 
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8582diff
changeset | 876 | val outer_state = state |> close_block; | 
| 
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8582diff
changeset | 877 | val outer_ctxt = context_of outer_state; | 
| 
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8582diff
changeset | 878 | |
| 18503 
841137f20307
goal/qed: proper treatment of two levels of conjunctions;
 wenzelm parents: 
18475diff
changeset | 879 | val props = | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 880 | flat (tl stmt) | 
| 19915 | 881 | |> Variable.exportT_terms goal_ctxt outer_ctxt; | 
| 17359 | 882 | val results = | 
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 883 | tl (conclude_goal goal_ctxt goal stmt) | 
| 20309 | 884 | |> burrow (ProofContext.export goal_ctxt outer_ctxt); | 
| 17359 | 885 | in | 
| 886 | outer_state | |
| 29090 
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
 wenzelm parents: 
28981diff
changeset | 887 | |> map_context (after_ctxt props) | 
| 34239 
e18b0f7b9902
after_qed: refrain from Position.setmp_thread_data, which causes duplication of results with several independent proof attempts;
 wenzelm parents: 
33389diff
changeset | 888 | |> pair (after_qed, results) | 
| 17359 | 889 | end; | 
| 890 | ||
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 891 | end; | 
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 892 | |
| 9469 | 893 | |
| 17359 | 894 | (* local goals *) | 
| 895 | ||
| 17859 | 896 | fun local_goal print_results prep_att prepp kind before_qed after_qed stmt state = | 
| 17359 | 897 | let | 
| 21362 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 898 | val thy = theory_of state; | 
| 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 899 | val ((names, attss), propp) = | 
| 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 900 | Attrib.map_specs (prep_att thy) stmt |> split_list |>> split_list; | 
| 17359 | 901 | |
| 18124 | 902 | fun after_qed' results = | 
| 18808 | 903 | local_results ((names ~~ attss) ~~ results) | 
| 17359 | 904 | #-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit)) | 
| 18124 | 905 | #> after_qed results; | 
| 5820 | 906 | in | 
| 17359 | 907 | state | 
| 21362 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 908 | |> generic_goal prepp kind before_qed (after_qed', K I) propp | 
| 19900 
21a99d88d925
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19862diff
changeset | 909 | |> tap (Variable.warn_extra_tfrees (context_of state) o context_of) | 
| 5820 | 910 | end; | 
| 911 | ||
| 29383 | 912 | fun local_qeds txt = | 
| 913 | end_proof false txt | |
| 914 | #> Seq.map (generic_qed ProofContext.auto_bind_facts #-> | |
| 29090 
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
 wenzelm parents: 
28981diff
changeset | 915 | (fn ((after_qed, _), results) => after_qed results)); | 
| 5820 | 916 | |
| 29383 | 917 | fun local_qed txt = local_qeds txt #> check_finish; | 
| 918 | ||
| 5820 | 919 | |
| 17359 | 920 | (* global goals *) | 
| 921 | ||
| 21442 | 922 | fun global_goal prepp before_qed after_qed propp ctxt = | 
| 21362 
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
 wenzelm parents: 
21274diff
changeset | 923 | init ctxt | 
| 29383 | 924 | |> generic_goal (prepp #> ProofContext.auto_fixes) "" before_qed (K I, after_qed) propp; | 
| 17359 | 925 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 926 | val theorem = global_goal ProofContext.bind_propp_schematic_i; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 927 | val theorem_cmd = global_goal ProofContext.bind_propp_schematic; | 
| 12065 | 928 | |
| 17359 | 929 | fun global_qeds txt = | 
| 930 | end_proof true txt | |
| 29090 
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
 wenzelm parents: 
28981diff
changeset | 931 | #> Seq.map (generic_qed (K I) #> (fn (((_, after_qed), results), state) => | 
| 29383 | 932 | after_qed results (context_of state))); | 
| 17112 | 933 | |
| 29383 | 934 | fun global_qed txt = global_qeds txt #> check_finish; | 
| 12959 | 935 | |
| 5820 | 936 | |
| 17359 | 937 | (* concluding steps *) | 
| 17112 | 938 | |
| 29383 | 939 | fun terminal_proof qed initial terminal = | 
| 940 | proof (SOME initial) #> Seq.maps (qed terminal) #> check_finish; | |
| 17112 | 941 | |
| 29383 | 942 | fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true); | 
| 17112 | 943 | val local_default_proof = local_terminal_proof (Method.default_text, NONE); | 
| 944 | val local_immediate_proof = local_terminal_proof (Method.this_text, NONE); | |
| 17359 | 945 | fun local_skip_proof int = local_terminal_proof (Method.sorry_text int, NONE); | 
| 29383 | 946 | val local_done_proof = terminal_proof local_qeds Method.done_text (NONE, false); | 
| 17112 | 947 | |
| 29383 | 948 | fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true); | 
| 17112 | 949 | val global_default_proof = global_terminal_proof (Method.default_text, NONE); | 
| 950 | val global_immediate_proof = global_terminal_proof (Method.this_text, NONE); | |
| 17359 | 951 | fun global_skip_proof int = global_terminal_proof (Method.sorry_text int, NONE); | 
| 29383 | 952 | val global_done_proof = terminal_proof global_qeds Method.done_text (NONE, false); | 
| 5820 | 953 | |
| 6896 | 954 | |
| 17359 | 955 | (* common goal statements *) | 
| 956 | ||
| 957 | local | |
| 958 | ||
| 17859 | 959 | fun gen_have prep_att prepp before_qed after_qed stmt int = | 
| 33389 | 960 | local_goal (Proof_Display.print_results int) prep_att prepp "have" before_qed after_qed stmt; | 
| 6896 | 961 | |
| 17859 | 962 | fun gen_show prep_att prepp before_qed after_qed stmt int state = | 
| 17359 | 963 | let | 
| 32738 | 964 | val testing = Unsynchronized.ref false; | 
| 965 | val rule = Unsynchronized.ref (NONE: thm option); | |
| 17359 | 966 | fun fail_msg ctxt = | 
| 29383 | 967 | "Local statement will fail to refine any pending goal" :: | 
| 33389 | 968 | (case ! rule of NONE => [] | SOME th => [Proof_Display.string_of_rule ctxt "Failed" th]) | 
| 17359 | 969 | |> cat_lines; | 
| 6896 | 970 | |
| 17359 | 971 | fun print_results ctxt res = | 
| 33389 | 972 | if ! testing then () else Proof_Display.print_results int ctxt res; | 
| 17359 | 973 | fun print_rule ctxt th = | 
| 974 | if ! testing then rule := SOME th | |
| 40132 
7ee65dbffa31
renamed Output.priority to Output.urgent_message to emphasize its special role more clearly;
 wenzelm parents: 
39616diff
changeset | 975 | else if int then Output.urgent_message (Proof_Display.string_of_rule ctxt "Successful" th) | 
| 17359 | 976 | else (); | 
| 977 | val test_proof = | |
| 29383 | 978 | try (local_skip_proof true) | 
| 39616 
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
 wenzelm parents: 
39232diff
changeset | 979 | |> Unsynchronized.setmp testing true | 
| 23963 
c2ee97a963db
moved exception capture/release to structure Exn;
 wenzelm parents: 
23806diff
changeset | 980 | |> Exn.capture; | 
| 6896 | 981 | |
| 18124 | 982 | fun after_qed' results = | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19475diff
changeset | 983 | refine_goals print_rule (context_of state) (flat results) | 
| 29383 | 984 | #> check_result "Failed to refine any pending goal" | 
| 985 | #> after_qed results; | |
| 17359 | 986 | in | 
| 987 | state | |
| 17859 | 988 | |> local_goal print_results prep_att prepp "show" before_qed after_qed' stmt | 
| 21565 | 989 | |> int ? (fn goal_state => | 
| 17359 | 990 | (case test_proof goal_state of | 
| 23963 
c2ee97a963db
moved exception capture/release to structure Exn;
 wenzelm parents: 
23806diff
changeset | 991 | Exn.Result (SOME _) => goal_state | 
| 
c2ee97a963db
moved exception capture/release to structure Exn;
 wenzelm parents: 
23806diff
changeset | 992 | | Exn.Result NONE => error (fail_msg (context_of goal_state)) | 
| 39232 
69c6d3e87660
more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
 wenzelm parents: 
39129diff
changeset | 993 | | Exn.Exn exn => | 
| 
69c6d3e87660
more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
 wenzelm parents: 
39129diff
changeset | 994 | if Exn.is_interrupt exn then reraise exn | 
| 
69c6d3e87660
more abstract treatment of interrupts in structure Exn -- hardly ever need to mention Interrupt literally;
 wenzelm parents: 
39129diff
changeset | 995 | else raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))]))) | 
| 17359 | 996 | end; | 
| 997 | ||
| 998 | in | |
| 999 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 1000 | val have = gen_have (K I) ProofContext.bind_propp_i; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 1001 | val have_cmd = gen_have Attrib.attribute ProofContext.bind_propp; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 1002 | val show = gen_show (K I) ProofContext.bind_propp_i; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 1003 | val show_cmd = gen_show Attrib.attribute ProofContext.bind_propp; | 
| 6896 | 1004 | |
| 5820 | 1005 | end; | 
| 17359 | 1006 | |
| 28410 | 1007 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1008 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1009 | (** future proofs **) | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1010 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1011 | (* relevant proof states *) | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1012 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1013 | fun is_schematic t = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1014 | Term.exists_subterm Term.is_Var t orelse | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1015 | Term.exists_type (Term.exists_subtype Term.is_TVar) t; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1016 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1017 | fun schematic_goal state = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1018 |   let val (_, (_, {statement = (_, _, prop), ...})) = find_goal state
 | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1019 | in is_schematic prop end; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1020 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1021 | fun is_relevant state = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1022 | (case try find_goal state of | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1023 | NONE => true | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1024 |   | SOME (_, (_, {statement = (_, _, prop), goal, ...})) =>
 | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1025 | is_schematic prop orelse not (Logic.protect prop aconv Thm.concl_of goal)); | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1026 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1027 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1028 | (* full proofs *) | 
| 28410 | 1029 | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1030 | local | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1031 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1032 | fun future_proof done get_context fork_proof state = | 
| 28410 | 1033 | let | 
| 29381 
45d77aeb1608
future_terminal_proof: no fork for interactive mode, assert_backward;
 wenzelm parents: 
29364diff
changeset | 1034 | val _ = assert_backward state; | 
| 28410 | 1035 | val (goal_ctxt, (_, goal)) = find_goal state; | 
| 32786 | 1036 |     val {statement as (kind, _, prop), messages, using, goal, before_qed, after_qed} = goal;
 | 
| 32062 
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
 wenzelm parents: 
32061diff
changeset | 1037 | val goal_txt = prop :: map Thm.term_of (Assumption.all_assms_of goal_ctxt); | 
| 28410 | 1038 | |
| 29383 | 1039 | val _ = is_relevant state andalso error "Cannot fork relevant proof"; | 
| 1040 | ||
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1041 | val prop' = Logic.protect prop; | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1042 | val statement' = (kind, [[], [prop']], prop'); | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1043 | val goal' = Thm.adjust_maxidx_thm (Thm.maxidx_of goal) | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1044 | (Drule.comp_no_flatten (goal, Thm.nprems_of goal) 1 Drule.protectI); | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1045 | |
| 33386 | 1046 | fun after_local' [[th]] = put_thms false (Auto_Bind.thisN, SOME [th]); | 
| 1047 | fun after_global' [[th]] = ProofContext.put_thms false (Auto_Bind.thisN, SOME [th]); | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1048 | val after_qed' = (after_local', after_global'); | 
| 33386 | 1049 | val this_name = ProofContext.full_name goal_ctxt (Binding.name Auto_Bind.thisN); | 
| 28410 | 1050 | |
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1051 | val result_ctxt = | 
| 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1052 | state | 
| 32062 
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
 wenzelm parents: 
32061diff
changeset | 1053 | |> map_contexts (fold Variable.declare_term goal_txt) | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1054 | |> map_goal I (K (statement', messages, using, goal', before_qed, after_qed')) | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1055 | |> fork_proof; | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1056 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1057 | val future_thm = result_ctxt |> Future.map (fn (_, x) => | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1058 | ProofContext.get_fact_single (get_context x) (Facts.named this_name)); | 
| 32062 
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
 wenzelm parents: 
32061diff
changeset | 1059 | val finished_goal = Goal.future_result goal_ctxt future_thm prop'; | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1060 | val state' = | 
| 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1061 | state | 
| 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1062 | |> map_goal I (K (statement, messages, using, finished_goal, NONE, after_qed)) | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1063 | |> done; | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1064 | in (Future.map #1 result_ctxt, state') end; | 
| 28410 | 1065 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1066 | in | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1067 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1068 | fun local_future_proof x = future_proof local_done_proof context_of x; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1069 | fun global_future_proof x = future_proof global_done_proof I x; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1070 | |
| 17359 | 1071 | end; | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1072 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1073 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1074 | (* terminal proofs *) | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1075 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1076 | local | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1077 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1078 | fun future_terminal_proof proof1 proof2 meths int state = | 
| 38218 
1408f753bd75
removed obsolete Goal.local_future_enforced: Toplevel.run_command is no longer interactive, so Goal.local_future_enabled is sufficient (cf. 349e9223c685 and e07dacec79e7);
 wenzelm parents: 
37949diff
changeset | 1079 | if int orelse is_relevant state orelse not (Goal.local_future_enabled ()) | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1080 | then proof1 meths state | 
| 37186 
349e9223c685
explicit markup for forked goals, as indicated by Goal.fork;
 wenzelm parents: 
36507diff
changeset | 1081 | else snd (proof2 (fn state' => Goal.fork (fn () => ((), proof1 meths state'))) state); | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1082 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1083 | in | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1084 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1085 | fun local_future_terminal_proof x = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1086 | future_terminal_proof local_terminal_proof local_future_proof x; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1087 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1088 | fun global_future_terminal_proof x = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1089 | future_terminal_proof global_terminal_proof global_future_proof x; | 
| 29350 | 1090 | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1091 | end; | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1092 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1093 | end; | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1094 |