| author | wenzelm | 
| Tue, 29 Mar 2016 23:45:28 +0200 | |
| changeset 62755 | 7fde2461f9ef | 
| parent 62663 | bea354f6ff21 | 
| child 62771 | dd2914250ca7 | 
| 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 | 
| 40642 
99c6ce92669b
added useful function map_context_result to signature
 bulwahn parents: 
40132diff
changeset | 19 | val map_context_result : (context -> 'a * context) -> state -> 'a * state | 
| 28278 | 20 | 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 | 21 | val propagate_ml_env: 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 | 
| 47068 | 25 | val set_facts: thm list -> state -> state | 
| 26 | val reset_facts: state -> state | |
| 6891 | 27 | val assert_forward: state -> state | 
| 17359 | 28 | val assert_chain: state -> state | 
| 9469 | 29 | val assert_forward_or_chain: state -> state | 
| 5820 | 30 | val assert_backward: state -> state | 
| 8206 | 31 | val assert_no_chain: state -> state | 
| 5820 | 32 | val enter_forward: state -> state | 
| 60369 
f393a3fe884c
clarified signature -- better support for Isar commands outside of Pure;
 wenzelm parents: 
60094diff
changeset | 33 | val enter_chain: state -> state | 
| 
f393a3fe884c
clarified signature -- better support for Isar commands outside of Pure;
 wenzelm parents: 
60094diff
changeset | 34 | val enter_backward: state -> state | 
| 58798 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 35 | val has_bottom_goal: state -> bool | 
| 60623 | 36 | val using_facts: thm list -> state -> state | 
| 60403 | 37 | val pretty_state: state -> Pretty.T list | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 38 | val refine: Method.text -> state -> state Seq.result Seq.seq | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 39 | val refine_end: Method.text -> state -> state Seq.result Seq.seq | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 40 | val refine_singleton: Method.text -> state -> state | 
| 18908 | 41 | val refine_insert: thm list -> state -> state | 
| 60623 | 42 | val refine_primitive: (Proof.context -> thm -> thm) -> state -> state | 
| 33288 
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 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 | 44 |   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 | 45 |   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 | 46 | val status_markup: state -> Markup.T | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 47 | val let_bind: (term list * term) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 48 | 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 | 49 | val write: Syntax.mode -> (term * mixfix) list -> state -> state | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 50 | val write_cmd: Syntax.mode -> (string * mixfix) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 51 | val fix: (binding * typ option * mixfix) list -> state -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 52 | val fix_cmd: (binding * string option * mixfix) list -> state -> state | 
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 53 | val assm: Assumption.export -> (binding * typ option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 54 | (term * term list) list list -> (Thm.binding * (term * term list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 55 | state -> state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 56 | val assm_cmd: Assumption.export -> (binding * string option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 57 | (string * string list) list list -> (Attrib.binding * (string * string list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 58 | state -> state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 59 | val assume: (binding * typ option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 60 | (term * term list) list list -> (Thm.binding * (term * term list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 61 | state -> state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 62 | val assume_cmd: (binding * string option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 63 | (string * string list) list list -> (Attrib.binding * (string * string list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 64 | state -> state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 65 | val presume: (binding * typ option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 66 | (term * term list) list list -> (Thm.binding * (term * term list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 67 | state -> state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 68 | val presume_cmd: (binding * string option * mixfix) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 69 | (string * string list) list list -> (Attrib.binding * (string * string list) list) list -> | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 70 | state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 71 | 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 | 72 | val def_cmd: (Attrib.binding * ((binding * mixfix) * (string * string list))) list -> state -> state | 
| 17359 | 73 | val chain: state -> state | 
| 74 | val chain_facts: thm list -> state -> state | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 75 | val note_thmss: (Thm.binding * (thm list * attribute list) list) list -> state -> state | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
58007diff
changeset | 76 | val note_thmss_cmd: (Attrib.binding * (Facts.ref * Token.src list) list) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 77 | val from_thmss: ((thm list * attribute list) list) list -> state -> state | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
58007diff
changeset | 78 | val from_thmss_cmd: ((Facts.ref * Token.src list) list) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 79 | val with_thmss: ((thm list * attribute list) list) list -> state -> state | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
58007diff
changeset | 80 | val with_thmss_cmd: ((Facts.ref * Token.src list) list) list -> state -> state | 
| 60371 | 81 | val supply: (Thm.binding * (thm list * attribute list) list) list -> state -> state | 
| 82 | val supply_cmd: (Attrib.binding * (Facts.ref * Token.src list) list) list -> state -> state | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 83 | val using: ((thm list * attribute list) list) list -> state -> state | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
58007diff
changeset | 84 | val using_cmd: ((Facts.ref * Token.src list) list) list -> state -> state | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 85 | val unfolding: ((thm list * attribute list) list) list -> state -> state | 
| 58011 
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
 wenzelm parents: 
58007diff
changeset | 86 | val unfolding_cmd: ((Facts.ref * Token.src list) list) list -> state -> state | 
| 60565 | 87 | val case_: Thm.binding * ((string * Position.T) * binding option list) -> state -> state | 
| 88 | val case_cmd: Attrib.binding * ((string * Position.T) * binding option list) -> state -> state | |
| 17359 | 89 | val begin_block: state -> state | 
| 90 | val next_block: state -> state | |
| 20309 | 91 | val end_block: state -> state | 
| 49042 | 92 | val begin_notepad: context -> state | 
| 93 | val end_notepad: state -> context | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 94 | val proof: Method.text_range option -> state -> state Seq.result Seq.seq | 
| 49865 | 95 | val defer: int -> state -> state | 
| 96 | val prefer: int -> state -> state | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 97 | val apply: Method.text_range -> state -> state Seq.result Seq.seq | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 98 | val apply_end: Method.text_range -> state -> state Seq.result Seq.seq | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 99 | val local_qed: Method.text_range option * bool -> state -> state | 
| 21442 | 100 | val theorem: Method.text option -> (thm list list -> context -> context) -> | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 101 | (term * term list) list list -> context -> state | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 102 | 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 | 103 | (string * string list) list list -> context -> state | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 104 | val global_qed: Method.text_range option * bool -> state -> context | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 105 | val local_terminal_proof: Method.text_range * Method.text_range option -> state -> state | 
| 29383 | 106 | val local_default_proof: state -> state | 
| 107 | val local_immediate_proof: state -> state | |
| 108 | val local_skip_proof: bool -> state -> state | |
| 109 | val local_done_proof: state -> state | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 110 | val global_terminal_proof: Method.text_range * Method.text_range option -> state -> context | 
| 20363 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 111 | val global_default_proof: state -> context | 
| 
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
 wenzelm parents: 
20341diff
changeset | 112 | val global_immediate_proof: state -> context | 
| 29383 | 113 | 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 | 114 | val global_done_proof: state -> context | 
| 60406 | 115 | val internal_goal: (context -> (string * string) * (string * thm list) list -> unit) -> | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 116 | Proof_Context.mode -> bool -> string -> Method.text option -> | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 117 | (context * thm list list -> state -> state) -> | 
| 60406 | 118 | (binding * typ option * mixfix) list -> | 
| 60414 | 119 | (Thm.binding * (term * term list) list) list -> | 
| 60461 | 120 | (Thm.binding * (term * term list) list) list -> state -> thm list * state | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 121 | val have: bool -> Method.text option -> (context * thm list list -> state -> state) -> | 
| 60406 | 122 | (binding * typ option * mixfix) list -> | 
| 60414 | 123 | (Thm.binding * (term * term list) list) list -> | 
| 60461 | 124 | (Thm.binding * (term * term list) list) list -> bool -> state -> thm list * state | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 125 | val have_cmd: bool -> Method.text option -> (context * thm list list -> state -> state) -> | 
| 60406 | 126 | (binding * string option * mixfix) list -> | 
| 60414 | 127 | (Attrib.binding * (string * string list) list) list -> | 
| 60461 | 128 | (Attrib.binding * (string * string list) list) list -> bool -> state -> thm list * state | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 129 | val show: bool -> Method.text option -> (context * thm list list -> state -> state) -> | 
| 60406 | 130 | (binding * typ option * mixfix) list -> | 
| 60414 | 131 | (Thm.binding * (term * term list) list) list -> | 
| 60461 | 132 | (Thm.binding * (term * term list) list) list -> bool -> state -> thm list * state | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 133 | val show_cmd: bool -> Method.text option -> (context * thm list list -> state -> state) -> | 
| 60406 | 134 | (binding * string option * mixfix) list -> | 
| 60414 | 135 | (Attrib.binding * (string * string list) list) list -> | 
| 60461 | 136 | (Attrib.binding * (string * string list) list) list -> bool -> state -> thm list * state | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 137 | val schematic_goal: state -> bool | 
| 51226 
1973089f1dba
proper check of Proof.is_relevant (again, cf. c3e99efacb67 and df8fc0567a3d);
 wenzelm parents: 
51222diff
changeset | 138 | val is_relevant: state -> bool | 
| 51318 | 139 |   val future_proof: (state -> ('a * context) future) -> state -> 'a future * state
 | 
| 60403 | 140 | val local_future_terminal_proof: Method.text_range * Method.text_range option -> state -> state | 
| 141 | val global_future_terminal_proof: Method.text_range * Method.text_range option -> state -> context | |
| 5820 | 142 | end; | 
| 143 | ||
| 13377 | 144 | structure Proof: PROOF = | 
| 5820 | 145 | struct | 
| 146 | ||
| 33031 
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
 wenzelm parents: 
32856diff
changeset | 147 | type context = Proof.context; | 
| 17112 | 148 | type method = Method.method; | 
| 16813 | 149 | |
| 5820 | 150 | |
| 151 | (** proof state **) | |
| 152 | ||
| 17359 | 153 | (* datatype state *) | 
| 5820 | 154 | |
| 17112 | 155 | datatype mode = Forward | Chain | Backward; | 
| 5820 | 156 | |
| 17359 | 157 | datatype state = | 
| 158 | State of node Stack.T | |
| 159 | and node = | |
| 7176 | 160 | Node of | 
| 161 |    {context: context,
 | |
| 162 | facts: thm list option, | |
| 163 | mode: mode, | |
| 17359 | 164 | goal: goal option} | 
| 165 | and goal = | |
| 166 | Goal of | |
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 167 |    {statement: (string * Position.T) * term list list * term,
 | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 168 | (*goal kind and statement (starting with vars), initial proposition*) | 
| 25958 | 169 | using: thm list, (*goal facts*) | 
| 170 | goal: thm, (*subgoals ==> statement*) | |
| 17859 | 171 | before_qed: Method.text option, | 
| 18124 | 172 | after_qed: | 
| 60550 | 173 | (context * thm list list -> state -> state) * | 
| 174 | (context * thm list list -> context -> context)}; | |
| 17359 | 175 | |
| 62663 | 176 | val _ = | 
| 177 | PolyML.addPrettyPrinter (fn _ => fn _ => fn _: state => | |
| 178 | Pretty.to_polyml (Pretty.str "<Proof.state>")); | |
| 179 | ||
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58837diff
changeset | 180 | fun make_goal (statement, using, goal, before_qed, after_qed) = | 
| 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58837diff
changeset | 181 |   Goal {statement = statement, using = using, goal = goal,
 | 
| 17859 | 182 | before_qed = before_qed, after_qed = after_qed}; | 
| 5820 | 183 | |
| 7176 | 184 | fun make_node (context, facts, mode, goal) = | 
| 185 |   Node {context = context, facts = facts, mode = mode, goal = goal};
 | |
| 186 | ||
| 17359 | 187 | fun map_node f (Node {context, facts, mode, goal}) =
 | 
| 188 | make_node (f (context, facts, mode, goal)); | |
| 5820 | 189 | |
| 21727 | 190 | val init_context = | 
| 42360 | 191 | Proof_Context.set_stmt true #> | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
46728diff
changeset | 192 | Proof_Context.map_naming (K Name_Space.local_naming); | 
| 21727 | 193 | |
| 21466 
6ffb8f455b84
init: enter inner statement mode, which prevents local notes from being named internally;
 wenzelm parents: 
21451diff
changeset | 194 | fun init ctxt = | 
| 21727 | 195 | State (Stack.init (make_node (init_context ctxt, NONE, Forward, NONE))); | 
| 5820 | 196 | |
| 58796 | 197 | fun top (State stack) = Stack.top stack |> (fn Node node => node); | 
| 198 | fun map_top f (State stack) = State (Stack.map_top (map_node f) stack); | |
| 199 | fun map_all f (State stack) = State (Stack.map_all (map_node f) stack); | |
| 12045 | 200 | |
| 5820 | 201 | |
| 202 | ||
| 203 | (** basic proof state operations **) | |
| 204 | ||
| 17359 | 205 | (* block structure *) | 
| 206 | ||
| 58796 | 207 | fun open_block (State stack) = State (Stack.push stack); | 
| 17359 | 208 | |
| 58796 | 209 | fun close_block (State stack) = State (Stack.pop stack) | 
| 47060 
e2741ec9ae36
prefer explicitly qualified exception List.Empty;
 wenzelm parents: 
47005diff
changeset | 210 | handle List.Empty => error "Unbalanced block parentheses"; | 
| 17359 | 211 | |
| 58796 | 212 | fun level (State stack) = Stack.level stack; | 
| 17359 | 213 | |
| 214 | fun assert_bottom b state = | |
| 47065 | 215 | let val b' = level state <= 2 in | 
| 216 | if b andalso not b' then error "Not at bottom of proof" | |
| 217 | else if not b andalso b' then error "Already at bottom of proof" | |
| 17359 | 218 | else state | 
| 219 | end; | |
| 220 | ||
| 221 | ||
| 5820 | 222 | (* context *) | 
| 223 | ||
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 224 | val context_of = #context o top; | 
| 42360 | 225 | val theory_of = Proof_Context.theory_of o context_of; | 
| 5820 | 226 | |
| 17359 | 227 | fun map_context f = | 
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 228 | map_top (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); | 
| 5820 | 229 | |
| 17359 | 230 | fun map_context_result f state = | 
| 17859 | 231 | f (context_of state) ||> (fn ctxt => map_context (K ctxt) state); | 
| 5820 | 232 | |
| 28278 | 233 | fun map_contexts f = map_all (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); | 
| 234 | ||
| 37949 
48a874444164
moved management of auxiliary theory source files to Thy_Load -- as theory data instead of accidental loader state;
 wenzelm parents: 
37186diff
changeset | 235 | 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 | 236 | (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 | 237 | |
| 42360 | 238 | val put_thms = map_context oo Proof_Context.put_thms; | 
| 5820 | 239 | |
| 240 | ||
| 241 | (* facts *) | |
| 242 | ||
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 243 | val get_facts = #facts o top; | 
| 17359 | 244 | |
| 245 | fun the_facts state = | |
| 60550 | 246 | (case get_facts state of | 
| 247 | SOME facts => facts | |
| 18678 | 248 | | NONE => error "No current facts available"); | 
| 5820 | 249 | |
| 9469 | 250 | fun the_fact state = | 
| 60550 | 251 | (case the_facts state of | 
| 252 | [thm] => thm | |
| 18678 | 253 | | _ => error "Single theorem expected"); | 
| 7605 | 254 | |
| 17359 | 255 | fun put_facts facts = | 
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 256 | map_top (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #> | 
| 33386 | 257 | put_thms true (Auto_Bind.thisN, facts); | 
| 5820 | 258 | |
| 47068 | 259 | val set_facts = put_facts o SOME; | 
| 260 | val reset_facts = put_facts NONE; | |
| 261 | ||
| 17359 | 262 | fun these_factss more_facts (named_factss, state) = | 
| 47068 | 263 | (named_factss, state |> set_facts (maps snd named_factss @ more_facts)); | 
| 5820 | 264 | |
| 17359 | 265 | fun export_facts inner outer = | 
| 266 | (case get_facts inner of | |
| 47068 | 267 | NONE => reset_facts outer | 
| 17359 | 268 | | SOME thms => | 
| 269 | thms | |
| 42360 | 270 | |> Proof_Context.export (context_of inner) (context_of outer) | 
| 47068 | 271 | |> (fn ths => set_facts ths outer)); | 
| 5820 | 272 | |
| 273 | ||
| 274 | (* mode *) | |
| 275 | ||
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 276 | val get_mode = #mode o top; | 
| 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 277 | fun put_mode mode = map_top (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal)); | 
| 5820 | 278 | |
| 17359 | 279 | val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove"); | 
| 5820 | 280 | |
| 281 | fun assert_mode pred state = | |
| 282 | let val mode = get_mode state in | |
| 283 | if pred mode then state | |
| 18678 | 284 |     else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode")
 | 
| 5820 | 285 | end; | 
| 286 | ||
| 19308 | 287 | val assert_forward = assert_mode (fn mode => mode = Forward); | 
| 288 | val assert_chain = assert_mode (fn mode => mode = Chain); | |
| 289 | val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain); | |
| 290 | val assert_backward = assert_mode (fn mode => mode = Backward); | |
| 291 | val assert_no_chain = assert_mode (fn mode => mode <> Chain); | |
| 5820 | 292 | |
| 17359 | 293 | val enter_forward = put_mode Forward; | 
| 294 | val enter_chain = put_mode Chain; | |
| 295 | val enter_backward = put_mode Backward; | |
| 5820 | 296 | |
| 17359 | 297 | |
| 298 | (* current goal *) | |
| 299 | ||
| 300 | fun current_goal state = | |
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 301 | (case top state of | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 302 |     {context = ctxt, goal = SOME (Goal goal), ...} => (ctxt, goal)
 | 
| 47065 | 303 | | _ => error "No current goal"); | 
| 5820 | 304 | |
| 17359 | 305 | fun assert_current_goal g state = | 
| 306 | let val g' = can current_goal state in | |
| 47065 | 307 | if g andalso not g' then error "No goal in this block" | 
| 308 | else if not g andalso g' then error "Goal present in this block" | |
| 17359 | 309 | else state | 
| 310 | end; | |
| 6776 | 311 | |
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 312 | fun put_goal goal = map_top (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal)); | 
| 17359 | 313 | |
| 47068 | 314 | val set_goal = put_goal o SOME; | 
| 315 | val reset_goal = put_goal NONE; | |
| 316 | ||
| 17859 | 317 | val before_qed = #before_qed o #2 o current_goal; | 
| 318 | ||
| 17359 | 319 | |
| 58798 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 320 | (* bottom goal *) | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 321 | |
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 322 | fun has_bottom_goal (State stack) = | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 323 | let | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 324 |     fun bottom [Node {goal = SOME _, ...}, Node {goal = NONE, ...}] = true
 | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 325 |       | bottom [Node {goal, ...}] = is_some goal
 | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 326 | | bottom [] = false | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 327 | | bottom (_ :: rest) = bottom rest; | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 328 | in bottom (op :: (Stack.dest stack)) end; | 
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 329 | |
| 
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
 wenzelm parents: 
58797diff
changeset | 330 | |
| 17359 | 331 | (* nested goal *) | 
| 5820 | 332 | |
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 333 | fun map_goal f (State stack) = | 
| 58797 | 334 | (case Stack.dest stack of | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 335 |     (Node {context = ctxt, facts, mode, goal = SOME goal}, node :: nodes) =>
 | 
| 17359 | 336 | let | 
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58837diff
changeset | 337 |         val Goal {statement, using, goal, before_qed, after_qed} = goal;
 | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 338 | val (ctxt', statement', using', goal', before_qed', after_qed') = | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 339 | f (ctxt, statement, using, goal, before_qed, after_qed); | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 340 | val goal' = make_goal (statement', using', goal', before_qed', after_qed'); | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 341 | in State (Stack.make (make_node (ctxt', facts, mode, SOME goal')) (node :: nodes)) end | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 342 | | (top_node, node :: nodes) => | 
| 47431 
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
 wenzelm parents: 
47416diff
changeset | 343 | let | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 344 | val State stack' = map_goal f (State (Stack.make node nodes)); | 
| 58797 | 345 | val (node', nodes') = Stack.dest stack'; | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 346 | in State (Stack.make top_node (node' :: nodes')) end | 
| 58797 | 347 | | _ => State stack); | 
| 5820 | 348 | |
| 60550 | 349 | fun provide_goal goal = | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 350 | map_goal (fn (ctxt, statement, using, _, before_qed, after_qed) => | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 351 | (ctxt, statement, using, goal, before_qed, after_qed)); | 
| 19188 | 352 | |
| 60550 | 353 | fun using_facts using = | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 354 | map_goal (fn (ctxt, statement, _, goal, before_qed, after_qed) => | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 355 | (ctxt, statement, using, goal, before_qed, after_qed)); | 
| 17359 | 356 | |
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 357 | fun find_goal state = | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 358 | (case try current_goal state of | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 359 | SOME ctxt_goal => ctxt_goal | 
| 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 360 | | NONE => find_goal (close_block state handle ERROR _ => error "No proof goal")); | 
| 17359 | 361 | |
| 362 | fun get_goal state = | |
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 363 |   let val (ctxt, {using, goal, ...}) = find_goal state
 | 
| 17359 | 364 | in (ctxt, (using, goal)) end; | 
| 5820 | 365 | |
| 366 | ||
| 367 | ||
| 12423 | 368 | (** pretty_state **) | 
| 5820 | 369 | |
| 59185 | 370 | local | 
| 371 | ||
| 15531 | 372 | fun pretty_facts _ _ NONE = [] | 
| 59185 | 373 | | pretty_facts ctxt s (SOME ths) = [Proof_Display.pretty_goal_facts ctxt s ths]; | 
| 374 | ||
| 375 | fun pretty_sep prts [] = prts | |
| 376 | | pretty_sep [] prts = prts | |
| 377 | | pretty_sep prts1 prts2 = prts1 @ [Pretty.str ""] @ prts2; | |
| 378 | ||
| 379 | in | |
| 6756 | 380 | |
| 60403 | 381 | fun pretty_state state = | 
| 5820 | 382 | let | 
| 49011 
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
 wenzelm parents: 
47815diff
changeset | 383 |     val {context = ctxt, facts, mode, goal = _} = top state;
 | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42496diff
changeset | 384 | val verbose = Config.get ctxt Proof_Context.verbose; | 
| 5820 | 385 | |
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 386 |     fun prt_goal (SOME (_, {statement = _, using, goal, before_qed = _, after_qed = _})) =
 | 
| 59185 | 387 | pretty_sep | 
| 388 | (pretty_facts ctxt "using" | |
| 389 | (if mode <> Backward orelse null using then NONE else SOME using)) | |
| 390 | ([Proof_Display.pretty_goal_header goal] @ Goal_Display.pretty_goals ctxt goal) | |
| 17359 | 391 | | prt_goal NONE = []; | 
| 6848 | 392 | |
| 17359 | 393 | val prt_ctxt = | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42496diff
changeset | 394 | if verbose orelse mode = Forward then Proof_Context.pretty_context ctxt | 
| 42360 | 395 | else if mode = Backward then Proof_Context.pretty_ctxt ctxt | 
| 7575 | 396 | else []; | 
| 56912 
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56898diff
changeset | 397 | |
| 
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56898diff
changeset | 398 | val position_markup = Position.markup (Position.thread_data ()) Markup.position; | 
| 17359 | 399 | in | 
| 56912 
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56898diff
changeset | 400 | [Pretty.block | 
| 60551 | 401 |       [Pretty.mark_str (position_markup, "proof"), Pretty.str (" (" ^ mode_name mode ^ ")")]] @
 | 
| 17359 | 402 | (if null prt_ctxt then [] else prt_ctxt @ [Pretty.str ""]) @ | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42496diff
changeset | 403 | (if verbose orelse mode = Forward then | 
| 59185 | 404 | pretty_sep (pretty_facts ctxt "" facts) (prt_goal (try find_goal state)) | 
| 51584 | 405 | else if mode = Chain then pretty_facts ctxt "picking" facts | 
| 17359 | 406 | else prt_goal (try find_goal state)) | 
| 407 | end; | |
| 5820 | 408 | |
| 59185 | 409 | end; | 
| 410 | ||
| 5820 | 411 | |
| 412 | ||
| 413 | (** proof steps **) | |
| 414 | ||
| 17359 | 415 | (* refine via method *) | 
| 5820 | 416 | |
| 8234 | 417 | local | 
| 418 | ||
| 16146 | 419 | fun goalN i = "goal" ^ string_of_int i; | 
| 420 | fun goals st = map goalN (1 upto Thm.nprems_of st); | |
| 421 | ||
| 422 | fun no_goal_cases st = map (rpair NONE) (goals st); | |
| 423 | ||
| 59970 | 424 | fun goal_cases ctxt st = | 
| 425 | Rule_Cases.make_common ctxt (Thm.prop_of st) (map (rpair [] o rpair []) (goals st)); | |
| 16146 | 426 | |
| 58007 
671c607fb4af
just one context for Method.evaluate (in contrast to a989bdaf8121, but in accordance to old global situation);
 wenzelm parents: 
58004diff
changeset | 427 | fun apply_method text ctxt state = | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 428 |   find_goal state |> (fn (goal_ctxt, {statement, using, goal, before_qed, after_qed}) =>
 | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 429 | Method.evaluate text ctxt using (goal_ctxt, goal) | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 430 | |> Seq.map_result (fn (goal_ctxt', goal') => | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 431 | let | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 432 | val goal_ctxt'' = goal_ctxt' | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 433 | |> Proof_Context.update_cases_legacy (no_goal_cases goal @ goal_cases ctxt goal'); | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 434 | val state' = state | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 435 | |> map_goal (K (goal_ctxt'', statement, using, goal', before_qed, after_qed)); | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 436 | in state' end)); | 
| 5820 | 437 | |
| 8234 | 438 | in | 
| 439 | ||
| 58007 
671c607fb4af
just one context for Method.evaluate (in contrast to a989bdaf8121, but in accordance to old global situation);
 wenzelm parents: 
58004diff
changeset | 440 | fun refine text state = apply_method text (context_of state) state; | 
| 
671c607fb4af
just one context for Method.evaluate (in contrast to a989bdaf8121, but in accordance to old global situation);
 wenzelm parents: 
58004diff
changeset | 441 | fun refine_end text state = apply_method text (#1 (find_goal state)) state; | 
| 58004 | 442 | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 443 | fun refine_singleton text = refine text #> Seq.the_result ""; | 
| 18908 | 444 | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 445 | fun refine_insert ths = | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 446 | refine_singleton (Method.Basic (K (Method.insert ths))); | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 447 | |
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 448 | fun refine_primitive r = | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 449 | refine_singleton (Method.Basic (fn ctxt => fn _ => Method.CONTEXT_TACTIC (PRIMITIVE (r ctxt)))); | 
| 60623 | 450 | |
| 8234 | 451 | end; | 
| 452 | ||
| 5820 | 453 | |
| 17359 | 454 | (* refine via sub-proof *) | 
| 455 | ||
| 46466 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 456 | local | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 457 | |
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 458 | fun finish_tac _ 0 = K all_tac | 
| 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 459 | | finish_tac ctxt n = | 
| 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 460 | Goal.norm_hhf_tac ctxt THEN' | 
| 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 | 461 | 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 | 462 | if can Logic.unprotect (Logic.strip_assums_concl goal) then | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59185diff
changeset | 463 | eresolve_tac ctxt [Drule.protectI] i THEN finish_tac ctxt (n - 1) i | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 464 | else finish_tac ctxt (n - 1) (i + 1)); | 
| 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 | 465 | |
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 466 | fun goal_tac ctxt rule = | 
| 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 467 | Goal.norm_hhf_tac ctxt THEN' | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59185diff
changeset | 468 | resolve_tac ctxt [rule] THEN' | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54567diff
changeset | 469 | finish_tac ctxt (Thm.nprems_of rule); | 
| 11816 | 470 | |
| 46466 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 471 | fun FINDGOAL tac st = | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 472 | let fun find i n = if i > n then Seq.fail else Seq.APPEND (tac i, find (i + 1) n) | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 473 | in find 1 (Thm.nprems_of st) st end; | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 474 | |
| 60595 | 475 | fun protect_prem i th = | 
| 476 |   Thm.bicompose NONE {flatten = false, match = false, incremented = true}
 | |
| 477 | (false, Drule.incr_indexes th Drule.protectD, 1) i th | |
| 478 | |> Seq.hd; | |
| 479 | ||
| 480 | fun protect_prems th = | |
| 481 | fold_rev protect_prem (1 upto Thm.nprems_of th) th; | |
| 482 | ||
| 46466 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 483 | in | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 484 | |
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 485 | fun refine_goals print_rule result_ctxt result state = | 
| 19915 | 486 | let | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 487 | val (goal_ctxt, (_, goal)) = get_goal state; | 
| 60550 | 488 | fun refine rule st = | 
| 489 | (print_rule goal_ctxt rule; FINDGOAL (goal_tac goal_ctxt rule) st); | |
| 19915 | 490 | in | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 491 | result | 
| 60595 | 492 | |> map (Raw_Simplifier.norm_hhf result_ctxt #> protect_prems) | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 493 | |> Proof_Context.goal_export result_ctxt goal_ctxt | 
| 47068 | 494 | |> (fn rules => Seq.lift provide_goal (EVERY (map refine rules) goal) state) | 
| 19915 | 495 | end; | 
| 17359 | 496 | |
| 46466 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 497 | end; | 
| 
61c7214b4885
tuned signature, according to actual usage of these operations;
 wenzelm parents: 
45666diff
changeset | 498 | |
| 6932 | 499 | |
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
49748diff
changeset | 500 | (* conclude goal *) | 
| 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
49748diff
changeset | 501 | |
| 28627 
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement,  check shyps of result;
 wenzelm parents: 
28458diff
changeset | 502 | fun conclude_goal ctxt goal propss = | 
| 5820 | 503 | let | 
| 42360 | 504 | val thy = Proof_Context.theory_of ctxt; | 
| 5820 | 505 | |
| 54981 | 506 | val _ = | 
| 60948 | 507 | Context.subthy_id (Thm.theory_id_of_thm goal, Context.theory_id thy) orelse | 
| 59582 | 508 | error "Bad background theory of goal state"; | 
| 49860 | 509 | val _ = Thm.no_prems goal orelse error (Proof_Display.string_of_goal ctxt goal); | 
| 20224 
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
 wenzelm parents: 
20208diff
changeset | 510 | |
| 61268 | 511 |     fun err_lost () = error ("Lost goal structure:\n" ^ Thm.string_of_thm ctxt goal);
 | 
| 5820 | 512 | |
| 54567 
cfe53047dc16
more uniform / rigid checking of Goal.prove_common vs. Proof.conclude_goal -- NB: Goal.prove_common cannot check hyps right now, e.g. due to undeclared Simplifier prems;
 wenzelm parents: 
53380diff
changeset | 513 | val th = | 
| 60723 
757cad5a3fe9
more aggressive compaction of multi-goal proof terms (see also a8babbb6d5ea, 4dd0ba632e40);
 wenzelm parents: 
60623diff
changeset | 514 | (Goal.conclude (if length (flat propss) > 1 then Thm.close_derivation goal else goal) | 
| 60550 | 515 | handle THM _ => err_lost ()) | 
| 58950 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58892diff
changeset | 516 | |> Drule.flexflex_unique (SOME ctxt) | 
| 61508 | 517 | |> Thm.check_shyps ctxt | 
| 54993 
625370769fc0
check_hyps for attribute application (still inactive, due to non-compliant tools);
 wenzelm parents: 
54984diff
changeset | 518 | |> Thm.check_hyps (Context.Proof ctxt); | 
| 23418 | 519 | |
| 520 | val goal_propss = filter_out null propss; | |
| 521 | val results = | |
| 522 | Conjunction.elim_balanced (length goal_propss) th | |
| 523 | |> map2 Conjunction.elim_balanced (map length goal_propss) | |
| 60550 | 524 | handle THM _ => err_lost (); | 
| 58950 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58892diff
changeset | 525 | val _ = | 
| 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58892diff
changeset | 526 | Unify.matches_list (Context.Proof ctxt) (flat goal_propss) (map Thm.prop_of (flat results)) | 
| 61268 | 527 |         orelse error ("Proved a different theorem:\n" ^ Thm.string_of_thm ctxt th);
 | 
| 23418 | 528 | |
| 529 | fun recover_result ([] :: pss) thss = [] :: recover_result pss thss | |
| 530 | | recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss | |
| 531 | | recover_result [] [] = [] | |
| 60550 | 532 | | recover_result _ _ = err_lost (); | 
| 23418 | 533 | in recover_result propss results end; | 
| 5820 | 534 | |
| 49859 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 535 | val finished_goal_error = "Failed to finish proof"; | 
| 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 536 | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 537 | fun finished_goal pos state = | 
| 49859 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 538 | let val (ctxt, (_, goal)) = get_goal state in | 
| 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 539 | if Thm.no_prems goal then Seq.Result state | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 540 | else | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 541 | Seq.Error (fn () => | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 542 | finished_goal_error ^ Position.here pos ^ ":\n" ^ | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 543 | Proof_Display.string_of_goal ctxt goal) | 
| 49859 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 544 | end; | 
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
49748diff
changeset | 545 | |
| 5820 | 546 | |
| 33288 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 547 | (* 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 | 548 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 549 | 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 | 550 | 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 | 551 |   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 | 552 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 553 | 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 | 554 | |
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 555 | 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 | 556 | let | 
| 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 557 | 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 | 558 | 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 | 559 |   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 | 560 | |
| 38721 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 561 | fun status_markup state = | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 562 | (case try goal state of | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
49912diff
changeset | 563 |     SOME {goal, ...} => Markup.proof_state (Thm.nprems_of goal)
 | 
| 38721 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 564 | | NONE => Markup.empty); | 
| 
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
 wenzelm parents: 
38333diff
changeset | 565 | |
| 49866 | 566 | fun method_error kind pos state = | 
| 567 | Seq.single (Proof_Display.method_error kind pos (raw_goal state)); | |
| 49861 | 568 | |
| 33288 
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
 wenzelm parents: 
33165diff
changeset | 569 | |
| 5820 | 570 | |
| 571 | (*** structured proof commands ***) | |
| 572 | ||
| 17112 | 573 | (** context elements **) | 
| 5820 | 574 | |
| 36324 | 575 | (* let bindings *) | 
| 5820 | 576 | |
| 16813 | 577 | local | 
| 578 | ||
| 17359 | 579 | fun gen_bind bind args state = | 
| 5820 | 580 | state | 
| 581 | |> assert_forward | |
| 36324 | 582 | |> map_context (bind true args #> snd) | 
| 47068 | 583 | |> reset_facts; | 
| 5820 | 584 | |
| 16813 | 585 | in | 
| 586 | ||
| 60377 | 587 | val let_bind = gen_bind Proof_Context.match_bind; | 
| 588 | val let_bind_cmd = gen_bind Proof_Context.match_bind_cmd; | |
| 5820 | 589 | |
| 16813 | 590 | end; | 
| 591 | ||
| 5820 | 592 | |
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 593 | (* concrete syntax *) | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 594 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 595 | local | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 596 | |
| 36507 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 597 | fun gen_write prep_arg mode args = | 
| 
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
 wenzelm parents: 
36505diff
changeset | 598 | assert_forward | 
| 42360 | 599 | #> map_context (fn ctxt => ctxt |> Proof_Context.notation true mode (map (prep_arg ctxt) args)) | 
| 47068 | 600 | #> reset_facts; | 
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 601 | |
| 55955 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 602 | fun read_arg ctxt (c, mx) = | 
| 56002 | 603 |   (case Proof_Context.read_const {proper = false, strict = false} ctxt c of
 | 
| 55955 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 604 | Free (x, _) => | 
| 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 605 | let val T = Proof_Context.infer_type ctxt (x, Mixfix.mixfixT mx) | 
| 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 606 | in (Free (x, T), mx) end | 
| 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 607 | | t => (t, mx)); | 
| 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 608 | |
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 609 | in | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 610 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 611 | val write = gen_write (K I); | 
| 55955 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 612 | val write_cmd = gen_write read_arg; | 
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 613 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 614 | end; | 
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 615 | |
| 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36354diff
changeset | 616 | |
| 17359 | 617 | (* fix *) | 
| 9196 | 618 | |
| 12714 | 619 | local | 
| 620 | ||
| 60469 | 621 | fun gen_fix add_fixes raw_fixes = | 
| 17359 | 622 | assert_forward | 
| 60469 | 623 | #> map_context (snd o add_fixes raw_fixes) | 
| 47068 | 624 | #> reset_facts; | 
| 5820 | 625 | |
| 16813 | 626 | in | 
| 627 | ||
| 60469 | 628 | val fix = gen_fix Proof_Context.add_fixes; | 
| 629 | val fix_cmd = gen_fix Proof_Context.add_fixes_cmd; | |
| 5820 | 630 | |
| 16813 | 631 | end; | 
| 632 | ||
| 5820 | 633 | |
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 634 | (* structured clause *) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 635 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 636 | fun export_binds ctxt' ctxt binds = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 637 | let | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 638 | val rhss = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 639 | map (the_list o snd) binds | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 640 | |> burrow (Variable.export_terms ctxt' ctxt) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 641 | |> map (try the_single); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 642 | in map fst binds ~~ rhss end; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 643 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 644 | fun prep_clause prep_var prep_propp raw_fixes raw_assumes raw_shows ctxt = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 645 | let | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 646 | (*fixed variables*) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 647 | val ((xs', vars), fix_ctxt) = ctxt | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 648 | |> fold_map prep_var raw_fixes | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 649 | |-> (fn vars => Proof_Context.add_fixes vars ##>> pair vars); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 650 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 651 | (*propositions with term bindings*) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 652 | val (all_propss, binds) = prep_propp fix_ctxt (raw_assumes @ raw_shows); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 653 | val (assumes_propss, shows_propss) = chop (length raw_assumes) all_propss; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 654 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 655 | (*params*) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 656 | val (ps, params_ctxt) = fix_ctxt | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 657 | |> (fold o fold) Variable.declare_term all_propss | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 658 | |> fold Variable.bind_term binds | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 659 | |> fold_map Proof_Context.inferred_param xs'; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 660 | val xs = map (Variable.check_name o #1) vars; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 661 | val params = xs ~~ map Free ps; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 662 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 663 | val _ = Variable.warn_extra_tfrees fix_ctxt params_ctxt; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 664 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 665 | (*result term bindings*) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 666 | val shows_props = flat shows_propss; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 667 | val binds' = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 668 | (case try List.last shows_props of | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 669 | NONE => [] | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 670 | | SOME prop => map (apsnd (SOME o Auto_Bind.abs_params prop)) binds); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 671 | val result_binds = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 672 | (Auto_Bind.facts params_ctxt shows_props @ binds') | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 673 | |> (map o apsnd o Option.map) (fold_rev Term.dependent_lambda_name params) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 674 | |> export_binds params_ctxt ctxt; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 675 | in ((params, assumes_propss, shows_propss, result_binds), params_ctxt) end; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 676 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 677 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 678 | (* assume *) | 
| 5820 | 679 | |
| 16813 | 680 | local | 
| 681 | ||
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 682 | fun gen_assume prep_var prep_propp prep_att export raw_fixes raw_prems raw_concls state = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 683 | let | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 684 | val ctxt = context_of state; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 685 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 686 | val bindings = map (apsnd (map (prep_att ctxt)) o fst) raw_concls; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 687 | val (params, prems_propss, concl_propss, result_binds) = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 688 | #1 (prep_clause prep_var prep_propp raw_fixes raw_prems (map snd raw_concls) ctxt); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 689 | |
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 690 | fun close prop = | 
| 61655 
f217bbe4e93e
avoid vacuous quantification, as usual for shared variable scope;
 wenzelm parents: 
61654diff
changeset | 691 | fold_rev Logic.dependent_all_name params | 
| 
f217bbe4e93e
avoid vacuous quantification, as usual for shared variable scope;
 wenzelm parents: 
61654diff
changeset | 692 | (Logic.list_implies (flat prems_propss, prop)); | 
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 693 | val propss = (map o map) close concl_propss; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 694 | in | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 695 | state | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 696 | |> assert_forward | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 697 | |> map_context_result (fn ctxt => | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 698 | ctxt | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 699 | |> (fold o fold) Variable.declare_term propss | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 700 | |> fold Variable.maybe_bind_term result_binds | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 701 | |> fold_burrow (Assumption.add_assms export o map (Thm.cterm_of ctxt)) propss | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 702 | |-> (fn premss => | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 703 | Proof_Context.note_thmss "" (bindings ~~ (map o map) (fn th => ([th], [])) premss))) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 704 | |> these_factss [] |> #2 | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 705 | end; | 
| 6932 | 706 | |
| 16813 | 707 | in | 
| 708 | ||
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 709 | val assm = gen_assume Proof_Context.cert_var Proof_Context.cert_propp (K I); | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 710 | val assm_cmd = gen_assume Proof_Context.read_var Proof_Context.read_propp Attrib.attribute_cmd; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 711 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 712 | val assume = assm Assumption.assume_export; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 713 | val assume_cmd = assm_cmd Assumption.assume_export; | 
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 714 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 715 | val presume = assm Assumption.presume_export; | 
| 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 716 | val presume_cmd = assm_cmd Assumption.presume_export; | 
| 5820 | 717 | |
| 16813 | 718 | end; | 
| 719 | ||
| 7271 | 720 | |
| 17359 | 721 | (* def *) | 
| 11891 | 722 | |
| 16813 | 723 | local | 
| 724 | ||
| 60379 | 725 | fun gen_def prep_att prep_var prep_binds args state = | 
| 11891 | 726 | let | 
| 727 | val _ = assert_forward state; | |
| 20913 | 728 | val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list; | 
| 47815 | 729 | val name_atts = map (apsnd (map (prep_att (context_of state)))) raw_name_atts; | 
| 11891 | 730 | in | 
| 20913 | 731 | state | 
| 60379 | 732 | |> map_context_result (fold_map (fn (x, mx) => prep_var (x, NONE, mx)) raw_vars) | 
| 20913 | 733 | |>> map (fn (x, _, mx) => (x, mx)) | 
| 734 | |-> (fn vars => | |
| 735 | map_context_result (prep_binds false (map swap raw_rhss)) | |
| 49748 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49063diff
changeset | 736 | #-> (fn rhss => | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49063diff
changeset | 737 | let | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49063diff
changeset | 738 | val defs = (vars ~~ (name_atts ~~ rhss)) |> map (fn ((x, mx), ((a, atts), rhs)) => | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49063diff
changeset | 739 | ((x, mx), ((Thm.def_binding_optional x a, atts), rhs))); | 
| 
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
 wenzelm parents: 
49063diff
changeset | 740 | in map_context_result (Local_Defs.add_defs defs) end)) | 
| 47068 | 741 | |-> (set_facts o map (#2 o #2)) | 
| 11891 | 742 | end; | 
| 743 | ||
| 16813 | 744 | in | 
| 745 | ||
| 60379 | 746 | val def = gen_def (K I) Proof_Context.cert_var Proof_Context.match_bind; | 
| 747 | val def_cmd = gen_def Attrib.attribute_cmd Proof_Context.read_var Proof_Context.match_bind_cmd; | |
| 11891 | 748 | |
| 16813 | 749 | end; | 
| 750 | ||
| 11891 | 751 | |
| 8374 | 752 | |
| 17112 | 753 | (** facts **) | 
| 5820 | 754 | |
| 17359 | 755 | (* chain *) | 
| 5820 | 756 | |
| 24011 | 757 | fun clean_facts ctxt = | 
| 47068 | 758 | set_facts (filter_out Thm.is_dummy (the_facts ctxt)) ctxt; | 
| 24011 | 759 | |
| 17359 | 760 | val chain = | 
| 761 | assert_forward | |
| 24011 | 762 | #> clean_facts | 
| 17359 | 763 | #> enter_chain; | 
| 5820 | 764 | |
| 17359 | 765 | fun chain_facts facts = | 
| 47068 | 766 | set_facts facts | 
| 17359 | 767 | #> chain; | 
| 5820 | 768 | |
| 769 | ||
| 17359 | 770 | (* note etc. *) | 
| 17112 | 771 | |
| 28965 | 772 | fun no_binding args = map (pair (Binding.empty, [])) args; | 
| 17112 | 773 | |
| 774 | local | |
| 775 | ||
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 776 | fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state = | 
| 17112 | 777 | state | 
| 778 | |> assert_forward | |
| 47815 | 779 | |> map_context_result (fn ctxt => ctxt |> Proof_Context.note_thmss "" | 
| 780 | (Attrib.map_facts_refs (map (prep_atts ctxt)) (prep_fact ctxt) args)) | |
| 17112 | 781 | |> these_factss (more_facts state) | 
| 17359 | 782 | ||> opt_chain | 
| 783 | |> opt_result; | |
| 17112 | 784 | |
| 785 | in | |
| 786 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 787 | val note_thmss = gen_thmss (K []) I #2 (K I) (K I); | 
| 47815 | 788 | val note_thmss_cmd = gen_thmss (K []) I #2 Attrib.attribute_cmd Proof_Context.get_fact; | 
| 17112 | 789 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 790 | val from_thmss = gen_thmss (K []) chain #2 (K I) (K I) o no_binding; | 
| 47815 | 791 | val from_thmss_cmd = | 
| 792 | gen_thmss (K []) chain #2 Attrib.attribute_cmd Proof_Context.get_fact o no_binding; | |
| 17359 | 793 | |
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 794 | val with_thmss = gen_thmss the_facts chain #2 (K I) (K I) o no_binding; | 
| 47815 | 795 | val with_thmss_cmd = | 
| 796 | gen_thmss the_facts chain #2 Attrib.attribute_cmd Proof_Context.get_fact o no_binding; | |
| 30760 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 797 | |
| 
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
 wenzelm parents: 
30757diff
changeset | 798 | val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact); | 
| 17359 | 799 | |
| 17112 | 800 | end; | 
| 801 | ||
| 802 | ||
| 60371 | 803 | (* facts during goal refinement *) | 
| 804 | ||
| 805 | local | |
| 806 | ||
| 807 | fun gen_supply prep_att prep_fact args state = | |
| 808 | state | |
| 809 | |> assert_backward | |
| 810 | |> map_context (fn ctxt => ctxt |> Proof_Context.note_thmss "" | |
| 811 | (Attrib.map_facts_refs (map (prep_att ctxt)) (prep_fact ctxt) args) |> snd); | |
| 812 | ||
| 813 | in | |
| 814 | ||
| 815 | val supply = gen_supply (K I) (K I); | |
| 816 | val supply_cmd = gen_supply Attrib.attribute_cmd Proof_Context.get_fact; | |
| 817 | ||
| 818 | end; | |
| 819 | ||
| 820 | ||
| 18548 | 821 | (* using/unfolding *) | 
| 17112 | 822 | |
| 823 | local | |
| 824 | ||
| 45390 
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
 wenzelm parents: 
45327diff
changeset | 825 | fun gen_using f g prep_att prep_fact args state = | 
| 17112 | 826 | state | 
| 827 | |> assert_backward | |
| 21442 | 828 | |> map_context_result | 
| 47815 | 829 | (fn ctxt => ctxt |> Proof_Context.note_thmss "" | 
| 830 | (Attrib.map_facts_refs (map (prep_att ctxt)) (prep_fact ctxt) (no_binding args))) | |
| 18843 | 831 | |> (fn (named_facts, state') => | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 832 | state' |> map_goal (fn (goal_ctxt, statement, using, goal, before_qed, after_qed) => | 
| 18843 | 833 | let | 
| 834 | val ctxt = context_of state'; | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19475diff
changeset | 835 | val ths = maps snd named_facts; | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 836 | in (goal_ctxt, statement, f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end)); | 
| 18548 | 837 | |
| 24050 | 838 | fun append_using _ ths using = using @ filter_out Thm.is_dummy ths; | 
| 35624 | 839 | fun unfold_using ctxt ths = map (Local_Defs.unfold ctxt ths); | 
| 840 | val unfold_goals = Local_Defs.unfold_goals; | |
| 17112 | 841 | |
| 842 | in | |
| 843 | ||
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 844 | val using = gen_using append_using (K (K I)) (K I) (K I); | 
| 47815 | 845 | val using_cmd = gen_using append_using (K (K I)) Attrib.attribute_cmd Proof_Context.get_fact; | 
| 36323 
655e2d74de3a
modernized naming conventions of main Isar proof elements;
 wenzelm parents: 
36322diff
changeset | 846 | val unfolding = gen_using unfold_using unfold_goals (K I) (K I); | 
| 47815 | 847 | val unfolding_cmd = gen_using unfold_using unfold_goals Attrib.attribute_cmd Proof_Context.get_fact; | 
| 17112 | 848 | |
| 849 | end; | |
| 850 | ||
| 851 | ||
| 852 | (* case *) | |
| 853 | ||
| 854 | local | |
| 855 | ||
| 60565 | 856 | fun gen_case internal prep_att ((raw_binding, raw_atts), ((name, pos), xs)) state = | 
| 17112 | 857 | let | 
| 60565 | 858 | val ctxt = context_of state; | 
| 859 | ||
| 860 | val binding = if Binding.is_empty raw_binding then Binding.make (name, pos) else raw_binding; | |
| 861 | val atts = map (prep_att ctxt) raw_atts; | |
| 862 | ||
| 19078 | 863 | val (asms, state') = state |> map_context_result (fn ctxt => | 
| 57486 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
56933diff
changeset | 864 | ctxt |> Proof_Context.apply_case (Proof_Context.check_case ctxt internal (name, pos) xs)); | 
| 53380 
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
 wenzelm parents: 
53378diff
changeset | 865 | val assumptions = | 
| 60565 | 866 | asms |> map (fn (a, ts) => ((Binding.qualified true a binding, []), map (rpair []) ts)); | 
| 17112 | 867 | in | 
| 868 | state' | |
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 869 | |> assume [] [] assumptions | 
| 60401 | 870 | |> map_context (fold Variable.unbind_term Auto_Bind.no_facts) | 
| 60565 | 871 | |> `the_facts |-> (fn thms => note_thmss [((binding, atts), [(thms, [])])]) | 
| 17112 | 872 | end; | 
| 873 | ||
| 874 | in | |
| 875 | ||
| 60565 | 876 | val case_ = gen_case true (K I); | 
| 877 | val case_cmd = gen_case false Attrib.attribute_cmd; | |
| 17112 | 878 | |
| 879 | end; | |
| 880 | ||
| 881 | ||
| 882 | ||
| 17359 | 883 | (** proof structure **) | 
| 884 | ||
| 885 | (* blocks *) | |
| 886 | ||
| 887 | val begin_block = | |
| 888 | assert_forward | |
| 889 | #> open_block | |
| 47068 | 890 | #> reset_goal | 
| 17359 | 891 | #> open_block; | 
| 892 | ||
| 893 | val next_block = | |
| 894 | assert_forward | |
| 895 | #> close_block | |
| 896 | #> open_block | |
| 47068 | 897 | #> reset_goal | 
| 898 | #> reset_facts; | |
| 17359 | 899 | |
| 900 | fun end_block state = | |
| 901 | state | |
| 902 | |> assert_forward | |
| 40960 | 903 | |> assert_bottom false | 
| 17359 | 904 | |> close_block | 
| 905 | |> assert_current_goal false | |
| 906 | |> close_block | |
| 907 | |> export_facts state; | |
| 908 | ||
| 909 | ||
| 40960 | 910 | (* global notepad *) | 
| 911 | ||
| 912 | val begin_notepad = | |
| 913 | init | |
| 914 | #> open_block | |
| 915 | #> map_context (Variable.set_body true) | |
| 916 | #> open_block; | |
| 917 | ||
| 918 | val end_notepad = | |
| 919 | assert_forward | |
| 920 | #> assert_bottom true | |
| 921 | #> close_block | |
| 922 | #> assert_current_goal false | |
| 923 | #> close_block | |
| 924 | #> context_of; | |
| 925 | ||
| 926 | ||
| 17359 | 927 | (* sub-proofs *) | 
| 928 | ||
| 929 | fun proof opt_text = | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 930 | Seq.APPEND | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 931 | (assert_backward | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 932 | #> refine (the_default Method.standard_text (Method.text opt_text)) | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 933 | #> Seq.map_result | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 934 | (using_facts [] | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 935 | #> enter_forward | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 936 | #> open_block | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 937 | #> reset_goal), | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 938 | method_error "initial" (Method.position opt_text)); | 
| 49863 
b5fb6e7f8d81
more informative errors for 'proof' and 'apply' steps;
 wenzelm parents: 
49861diff
changeset | 939 | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 940 | fun end_proof bot (prev_pos, (opt_text, immed)) = | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 941 | let | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 942 | val (finish_text, terminal_pos, finished_pos) = | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 943 | (case opt_text of | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 944 | NONE => (Method.finish_text (NONE, immed), Position.none, prev_pos) | 
| 55709 
4e5a83a46ded
clarified Token.range_of in accordance to Symbol_Pos.range;
 wenzelm parents: 
54993diff
changeset | 945 | | SOME (text, (pos, end_pos)) => (Method.finish_text (SOME text, immed), pos, end_pos)); | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 946 | in | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 947 | Seq.APPEND (fn state => | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 948 | state | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 949 | |> assert_forward | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 950 | |> assert_bottom bot | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 951 | |> close_block | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 952 | |> assert_current_goal true | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 953 | |> using_facts [] | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 954 | |> `before_qed |-> (refine o the_default Method.succeed_text) | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 955 | |> Seq.maps_results (refine finish_text), | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 956 | method_error "terminal" terminal_pos) | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 957 | #> Seq.maps_results (Seq.single o finished_goal finished_pos) | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 958 | end; | 
| 17359 | 959 | |
| 29383 | 960 | fun check_result msg sq = | 
| 961 | (case Seq.pull sq of | |
| 962 | NONE => error msg | |
| 963 | | SOME (s, _) => s); | |
| 964 | ||
| 17359 | 965 | |
| 966 | (* unstructured refinement *) | |
| 967 | ||
| 49865 | 968 | fun defer i = | 
| 969 | assert_no_chain #> | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 970 | refine_singleton (Method.Basic (fn _ => METHOD (fn _ => ASSERT_SUBGOAL defer_tac i))); | 
| 49865 | 971 | |
| 972 | fun prefer i = | |
| 973 | assert_no_chain #> | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 974 | refine_singleton (Method.Basic (fn _ => METHOD (fn _ => ASSERT_SUBGOAL prefer_tac i))); | 
| 17359 | 975 | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 976 | fun apply (text, (pos, _)) = | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 977 | Seq.APPEND (assert_backward #> refine text #> Seq.map_result (using_facts []), | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 978 | method_error "" pos); | 
| 49866 | 979 | |
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 980 | fun apply_end (text, (pos, _)) = | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 981 | Seq.APPEND (assert_forward #> refine_end text, method_error "" pos); | 
| 49863 
b5fb6e7f8d81
more informative errors for 'proof' and 'apply' steps;
 wenzelm parents: 
49861diff
changeset | 982 | |
| 17359 | 983 | |
| 984 | ||
| 17112 | 985 | (** goals **) | 
| 986 | ||
| 17359 | 987 | (* generic goals *) | 
| 988 | ||
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 989 | local | 
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 990 | |
| 36322 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 991 | val is_var = | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 992 | 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 | 993 | can (dest_Var o Logic.dest_term); | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 994 | |
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 995 | fun implicit_vars props = | 
| 19846 | 996 | let | 
| 36354 | 997 | val (var_props, _) = take_prefix is_var props; | 
| 36322 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 998 | val explicit_vars = fold Term.add_vars var_props []; | 
| 
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
 wenzelm parents: 
35624diff
changeset | 999 | 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 | 1000 | in map (Logic.mk_term o Var) vars end; | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1001 | |
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1002 | fun refine_terms n = | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 1003 | refine_singleton (Method.Basic (fn ctxt => Method.CONTEXT_TACTIC o | 
| 58002 | 1004 | K (HEADGOAL (PRECISE_CONJUNCTS n | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 1005 | (HEADGOAL (CONJUNCTS (ALLGOALS (resolve_tac ctxt [Drule.termI])))))))); | 
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1006 | |
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1007 | in | 
| 17359 | 1008 | |
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1009 | fun generic_goal kind before_qed after_qed goal_ctxt goal_propss result_binds state = | 
| 5820 | 1010 | let | 
| 17359 | 1011 | val chaining = can assert_chain state; | 
| 25958 | 1012 | val pos = Position.thread_data (); | 
| 17359 | 1013 | |
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1014 | val goal_props = flat goal_propss; | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1015 | val vars = implicit_vars goal_props; | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1016 | val propss' = vars :: goal_propss; | 
| 23418 | 1017 | val goal_propss = filter_out null propss'; | 
| 60551 | 1018 | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1019 | val goal = | 
| 59616 | 1020 | Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss) | 
| 60406 | 1021 | |> Thm.cterm_of goal_ctxt | 
| 61508 | 1022 | |> Thm.weaken_sorts' goal_ctxt; | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1023 | val statement = ((kind, pos), propss', Thm.term_of goal); | 
| 60402 | 1024 | |
| 60383 | 1025 | val after_qed' = after_qed |>> (fn after_local => fn results => | 
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1026 | map_context (fold Variable.maybe_bind_term result_binds) #> after_local results); | 
| 5820 | 1027 | in | 
| 60551 | 1028 | state | 
| 1029 | |> assert_forward_or_chain | |
| 1030 | |> enter_forward | |
| 1031 | |> open_block | |
| 1032 | |> enter_backward | |
| 1033 | |> map_context | |
| 1034 | (K goal_ctxt | |
| 1035 | #> init_context | |
| 1036 | #> Variable.set_body true | |
| 1037 | #> Proof_Context.auto_bind_goal goal_props) | |
| 58892 
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
 wenzelm parents: 
58837diff
changeset | 1038 | |> set_goal (make_goal (statement, [], Goal.init goal, before_qed, after_qed')) | 
| 21565 | 1039 | |> chaining ? (`the_facts #-> using_facts) | 
| 47068 | 1040 | |> reset_facts | 
| 23418 | 1041 | |> not (null vars) ? refine_terms (length goal_propss) | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 1042 | |> null goal_props ? refine_singleton (Method.Basic Method.assumption) | 
| 5820 | 1043 | end; | 
| 1044 | ||
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1045 | fun generic_qed state = | 
| 60409 
240ad53041c9
prevent export of future result -- avoid interference with goal fixes;
 wenzelm parents: 
60408diff
changeset | 1046 | let | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1047 |     val (goal_ctxt, {statement = (_, propss, _), goal, after_qed, ...}) =
 | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1048 | current_goal state; | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1049 | val results = tl (conclude_goal goal_ctxt goal propss); | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1050 | in state |> close_block |> pair (after_qed, (goal_ctxt, results)) end; | 
| 17359 | 1051 | |
| 19774 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1052 | end; | 
| 
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
 wenzelm parents: 
19585diff
changeset | 1053 | |
| 9469 | 1054 | |
| 17359 | 1055 | (* local goals *) | 
| 1056 | ||
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1057 | fun local_goal print_results prep_att prep_propp prep_var strict_asm | 
| 60414 | 1058 | kind before_qed after_qed raw_fixes raw_assumes raw_shows state = | 
| 17359 | 1059 | let | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1060 | val ctxt = context_of state; | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1061 | |
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1062 | val add_assumes = | 
| 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1063 | Assumption.add_assms | 
| 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1064 | (if strict_asm then Assumption.assume_export else Assumption.presume_export); | 
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1065 | |
| 61659 | 1066 | (*params*) | 
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1067 | val ((params, assumes_propss, shows_propss, result_binds), params_ctxt) = ctxt | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1068 | |> prep_clause prep_var prep_propp raw_fixes (map snd raw_assumes) (map snd raw_shows); | 
| 60406 | 1069 | |
| 61659 | 1070 | (*prems*) | 
| 1071 | val (assumes_bindings, shows_bindings) = | |
| 1072 | apply2 (map (apsnd (map (prep_att ctxt)) o fst)) (raw_assumes, raw_shows); | |
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1073 | val (that_fact, goal_ctxt) = params_ctxt | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1074 | |> fold_burrow add_assumes ((map o map) (Thm.cterm_of params_ctxt) assumes_propss) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1075 | |> (fn (premss, ctxt') => | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1076 | let | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1077 | val prems = Assumption.local_prems_of ctxt' ctxt; | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1078 | val ctxt'' = | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1079 | ctxt' | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1080 | |> not (null assumes_propss) ? | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1081 | (snd o Proof_Context.note_thmss "" | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1082 | [((Binding.name Auto_Bind.thatN, []), [(prems, [])])]) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1083 | |> (snd o Proof_Context.note_thmss "" | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1084 | (assumes_bindings ~~ map (map (fn th => ([th], []))) premss)) | 
| 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1085 | in (prems, ctxt'') end); | 
| 60402 | 1086 | |
| 61659 | 1087 | (*result*) | 
| 1088 | fun after_qed' (result_ctxt, results) state' = | |
| 1089 | let | |
| 1090 | val ctxt' = context_of state'; | |
| 1091 | val export0 = | |
| 1092 | Assumption.export false result_ctxt ctxt' #> | |
| 1093 | fold_rev (fn (x, v) => Thm.forall_intr_name (x, Thm.cterm_of params_ctxt v)) params #> | |
| 1094 | Raw_Simplifier.norm_hhf_protect ctxt'; | |
| 1095 | val export = map export0 #> Variable.export result_ctxt ctxt'; | |
| 1096 | in | |
| 1097 | state' | |
| 1098 | |> local_results (shows_bindings ~~ burrow export results) | |
| 1099 | |-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit)) | |
| 1100 | |> after_qed (result_ctxt, results) | |
| 1101 | end; | |
| 60461 | 1102 | in | 
| 1103 | state | |
| 61654 
4a28eec739e9
support for structure statements in 'assume', 'presume';
 wenzelm parents: 
61508diff
changeset | 1104 | |> generic_goal kind before_qed (after_qed', K I) goal_ctxt shows_propss result_binds | 
| 60461 | 1105 | |> pair that_fact | 
| 1106 | end; | |
| 5820 | 1107 | |
| 49866 | 1108 | fun local_qeds arg = | 
| 1109 | end_proof false arg | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1110 | #> Seq.map_result (generic_qed #-> (fn ((after_qed, _), results) => after_qed results)); | 
| 5820 | 1111 | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1112 | fun local_qed arg = | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1113 | local_qeds (Position.none, arg) #> Seq.the_result finished_goal_error; | 
| 29383 | 1114 | |
| 5820 | 1115 | |
| 17359 | 1116 | (* global goals *) | 
| 1117 | ||
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1118 | fun global_goal prep_propp before_qed after_qed propp ctxt = | 
| 60402 | 1119 | let | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1120 | val (propss, binds) = | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1121 | prep_propp (Proof_Context.set_mode Proof_Context.mode_schematic ctxt) propp; | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1122 | val goal_ctxt = ctxt | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1123 | |> (fold o fold) Variable.auto_fixes propss | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1124 | |> fold Variable.bind_term binds; | 
| 61109 
1c98bfc5d743
proper restore_naming after global qed, which is important to make Name_Space.transform_naming work properly, e.g. for "private typedef";
 wenzelm parents: 
60948diff
changeset | 1125 | fun after_qed' (result_ctxt, results) ctxt' = ctxt' | 
| 
1c98bfc5d743
proper restore_naming after global qed, which is important to make Name_Space.transform_naming work properly, e.g. for "private typedef";
 wenzelm parents: 
60948diff
changeset | 1126 | |> Proof_Context.restore_naming ctxt | 
| 
1c98bfc5d743
proper restore_naming after global qed, which is important to make Name_Space.transform_naming work properly, e.g. for "private typedef";
 wenzelm parents: 
60948diff
changeset | 1127 | |> after_qed (burrow (Proof_Context.export result_ctxt ctxt') results); | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1128 | in | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1129 | ctxt | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1130 | |> init | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1131 | |> generic_goal "" before_qed (K I, after_qed') goal_ctxt propss [] | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1132 | end; | 
| 45327 | 1133 | |
| 60388 | 1134 | val theorem = global_goal Proof_Context.cert_propp; | 
| 1135 | val theorem_cmd = global_goal Proof_Context.read_propp; | |
| 12065 | 1136 | |
| 49866 | 1137 | fun global_qeds arg = | 
| 1138 | end_proof true arg | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1139 | #> Seq.map_result (generic_qed #> (fn (((_, after_qed), results), state) => | 
| 49859 
52da6a736c32
more informative error messages of initial/terminal proof methods;
 wenzelm parents: 
49848diff
changeset | 1140 | after_qed results (context_of state))); | 
| 17112 | 1141 | |
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1142 | fun global_qed arg = | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1143 | global_qeds (Position.none, arg) #> Seq.the_result finished_goal_error; | 
| 12959 | 1144 | |
| 5820 | 1145 | |
| 49907 | 1146 | (* terminal proof steps *) | 
| 17112 | 1147 | |
| 49890 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1148 | local | 
| 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1149 | |
| 49846 
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
 wenzelm parents: 
49748diff
changeset | 1150 | fun terminal_proof qeds initial terminal = | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61659diff
changeset | 1151 | proof (SOME initial) #> Seq.maps_results (qeds (#2 (#2 initial), terminal)) | 
| 49863 
b5fb6e7f8d81
more informative errors for 'proof' and 'apply' steps;
 wenzelm parents: 
49861diff
changeset | 1152 | #> Seq.the_result ""; | 
| 49848 
f222a054342e
more informative error of initial/terminal proof steps;
 wenzelm parents: 
49847diff
changeset | 1153 | |
| 49890 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1154 | in | 
| 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1155 | |
| 29383 | 1156 | fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true); | 
| 60618 
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
 wenzelm parents: 
60611diff
changeset | 1157 | val local_default_proof = local_terminal_proof ((Method.standard_text, Position.no_range), NONE); | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1158 | val local_immediate_proof = local_terminal_proof ((Method.this_text, Position.no_range), NONE); | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1159 | val local_done_proof = terminal_proof local_qeds (Method.done_text, Position.no_range) (NONE, false); | 
| 17112 | 1160 | |
| 29383 | 1161 | fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true); | 
| 60618 
4c79543cc376
renamed "default" to "standard", to make semantically clear what it is;
 wenzelm parents: 
60611diff
changeset | 1162 | val global_default_proof = global_terminal_proof ((Method.standard_text, Position.no_range), NONE); | 
| 49889 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1163 | val global_immediate_proof = global_terminal_proof ((Method.this_text, Position.no_range), NONE); | 
| 
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
 wenzelm parents: 
49867diff
changeset | 1164 | val global_done_proof = terminal_proof global_qeds (Method.done_text, Position.no_range) (NONE, false); | 
| 5820 | 1165 | |
| 49890 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1166 | end; | 
| 
89eff795f757
skipped proofs appear as "bad" without counting as error;
 wenzelm parents: 
49889diff
changeset | 1167 | |
| 6896 | 1168 | |
| 49907 | 1169 | (* skip proofs *) | 
| 1170 | ||
| 1171 | fun local_skip_proof int state = | |
| 1172 | local_terminal_proof ((Method.sorry_text int, Position.no_range), NONE) state before | |
| 51551 | 1173 | Skip_Proof.report (context_of state); | 
| 49907 | 1174 | |
| 1175 | fun global_skip_proof int state = | |
| 1176 | global_terminal_proof ((Method.sorry_text int, Position.no_range), NONE) state before | |
| 51551 | 1177 | Skip_Proof.report (context_of state); | 
| 49907 | 1178 | |
| 1179 | ||
| 17359 | 1180 | (* common goal statements *) | 
| 1181 | ||
| 60406 | 1182 | fun internal_goal print_results mode = | 
| 1183 | local_goal print_results (K I) (Proof_Context.cert_propp o Proof_Context.set_mode mode) | |
| 1184 | Proof_Context.cert_var; | |
| 1185 | ||
| 17359 | 1186 | local | 
| 1187 | ||
| 60406 | 1188 | fun gen_have prep_att prep_propp prep_var | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1189 | strict_asm before_qed after_qed fixes assumes shows int = | 
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56912diff
changeset | 1190 | local_goal (Proof_Display.print_results int (Position.thread_data ())) | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1191 | prep_att prep_propp prep_var strict_asm "have" before_qed after_qed fixes assumes shows; | 
| 6896 | 1192 | |
| 60406 | 1193 | fun gen_show prep_att prep_propp prep_var | 
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1194 | strict_asm before_qed after_qed fixes assumes shows int state = | 
| 17359 | 1195 | let | 
| 32738 | 1196 | val testing = Unsynchronized.ref false; | 
| 1197 | val rule = Unsynchronized.ref (NONE: thm option); | |
| 17359 | 1198 | fun fail_msg ctxt = | 
| 50315 
cf9002ac1018
recovered error to finish proof (e.g. bad obtain export) from 223f18cfbb32;
 wenzelm parents: 
50201diff
changeset | 1199 | "Local statement fails to refine any pending goal" :: | 
| 33389 | 1200 | (case ! rule of NONE => [] | SOME th => [Proof_Display.string_of_rule ctxt "Failed" th]) | 
| 17359 | 1201 | |> cat_lines; | 
| 6896 | 1202 | |
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56912diff
changeset | 1203 | val pos = Position.thread_data (); | 
| 17359 | 1204 | fun print_results ctxt res = | 
| 46728 
85f8e3932712
display proof results as "state", to suppress odd squiggles in the Prover IDE (see also 9240be8c8c69);
 wenzelm parents: 
46466diff
changeset | 1205 | if ! testing then () | 
| 56932 
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
 wenzelm parents: 
56912diff
changeset | 1206 | else Proof_Display.print_results int pos ctxt res; | 
| 17359 | 1207 | fun print_rule ctxt th = | 
| 1208 | if ! testing then rule := SOME th | |
| 41181 
9240be8c8c69
show: display goal refinement rule as "state", to avoid odd Output.urgent_message and make its association with the goal more explicit;
 wenzelm parents: 
40960diff
changeset | 1209 | else if int then | 
| 56933 | 1210 | Proof_Display.string_of_rule ctxt "Successful" th | 
| 1211 | |> Markup.markup Markup.text_fold | |
| 59184 
830bb7ddb3ab
explicit message channels for "state", "information";
 wenzelm parents: 
59150diff
changeset | 1212 | |> Output.state | 
| 17359 | 1213 | else (); | 
| 1214 | val test_proof = | |
| 50315 
cf9002ac1018
recovered error to finish proof (e.g. bad obtain export) from 223f18cfbb32;
 wenzelm parents: 
50201diff
changeset | 1215 | local_skip_proof true | 
| 39616 
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
 wenzelm parents: 
39232diff
changeset | 1216 | |> Unsynchronized.setmp testing true | 
| 42042 | 1217 | |> Exn.interruptible_capture; | 
| 6896 | 1218 | |
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1219 | fun after_qed' (result_ctxt, results) state' = state' | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1220 | |> refine_goals print_rule result_ctxt (flat results) | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1221 | |> check_result "Failed to refine any pending goal" | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1222 | |> after_qed (result_ctxt, results); | 
| 17359 | 1223 | in | 
| 1224 | state | |
| 60555 
51a6997b1384
support 'when' statement, which corresponds to 'presume';
 wenzelm parents: 
60551diff
changeset | 1225 | |> local_goal print_results prep_att prep_propp prep_var strict_asm | 
| 60414 | 1226 | "show" before_qed after_qed' fixes assumes shows | 
| 60461 | 1227 | ||> int ? (fn goal_state => | 
| 49907 | 1228 | (case test_proof (map_context (Context_Position.set_visible false) goal_state) of | 
| 50315 
cf9002ac1018
recovered error to finish proof (e.g. bad obtain export) from 223f18cfbb32;
 wenzelm parents: 
50201diff
changeset | 1229 | Exn.Res _ => goal_state | 
| 42042 | 1230 | | Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))]))) | 
| 17359 | 1231 | end; | 
| 1232 | ||
| 1233 | in | |
| 1234 | ||
| 60406 | 1235 | val have = gen_have (K I) Proof_Context.cert_propp Proof_Context.cert_var; | 
| 1236 | val have_cmd = gen_have Attrib.attribute_cmd Proof_Context.read_propp Proof_Context.read_var; | |
| 1237 | val show = gen_show (K I) Proof_Context.cert_propp Proof_Context.cert_var; | |
| 1238 | val show_cmd = gen_show Attrib.attribute_cmd Proof_Context.read_propp Proof_Context.read_var; | |
| 6896 | 1239 | |
| 5820 | 1240 | end; | 
| 17359 | 1241 | |
| 28410 | 1242 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1243 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1244 | (** future proofs **) | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1245 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1246 | (* relevant proof states *) | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1247 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1248 | fun schematic_goal state = | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 1249 |   let val (_, {statement = (_, _, prop), ...}) = find_goal state
 | 
| 51553 
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
 wenzelm parents: 
51551diff
changeset | 1250 | in Goal.is_schematic prop end; | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1251 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1252 | fun is_relevant state = | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1253 | (case try find_goal state of | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1254 | NONE => true | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 1255 |   | SOME (_, {statement = (_, _, prop), goal, ...}) =>
 | 
| 51553 
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
 wenzelm parents: 
51551diff
changeset | 1256 | Goal.is_schematic prop orelse not (Logic.protect prop aconv Thm.concl_of goal)); | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1257 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1258 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1259 | (* full proofs *) | 
| 28410 | 1260 | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1261 | local | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1262 | |
| 49912 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1263 | structure Result = Proof_Data | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1264 | ( | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1265 | type T = thm option; | 
| 59150 | 1266 | fun init _ = NONE; | 
| 49912 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1267 | ); | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1268 | |
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1269 | fun the_result ctxt = | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1270 | (case Result.get ctxt of | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1271 | NONE => error "No result of forked proof" | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1272 | | SOME th => th); | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1273 | |
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1274 | val set_result = Result.put o SOME; | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1275 | val reset_result = Result.put NONE; | 
| 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1276 | |
| 51318 | 1277 | in | 
| 1278 | ||
| 1279 | fun future_proof fork_proof state = | |
| 28410 | 1280 | let | 
| 29381 
45d77aeb1608
future_terminal_proof: no fork for interactive mode, assert_backward;
 wenzelm parents: 
29364diff
changeset | 1281 | val _ = assert_backward state; | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 1282 | val (goal_ctxt, goal_info) = find_goal state; | 
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1283 |     val {statement as (kind, _, prop), using, goal, before_qed, after_qed} = goal_info;
 | 
| 28410 | 1284 | |
| 29383 | 1285 | val _ = is_relevant state andalso error "Cannot fork relevant proof"; | 
| 1286 | ||
| 60415 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1287 | val after_qed' = | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1288 | (fn (_, [[th]]) => map_context (set_result th), | 
| 
9d37b2330ee3
clarified local after_qed: result is not exported yet;
 wenzelm parents: 
60414diff
changeset | 1289 | fn (_, [[th]]) => set_result th); | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1290 | val result_ctxt = | 
| 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1291 | state | 
| 49912 
c6307ee2665d
more robust future_proof result with specific error message (e.g. relevant for incomplete proof of non-registered theorem);
 wenzelm parents: 
49909diff
changeset | 1292 | |> map_context reset_result | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 1293 | |> map_goal (K (goal_ctxt, (kind, [[], [prop]], prop), using, goal, before_qed, after_qed')) | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1294 | |> fork_proof; | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1295 | |
| 51318 | 1296 | val future_thm = Future.map (the_result o snd) result_ctxt; | 
| 60411 | 1297 | val finished_goal = Goal.protect 0 (Goal.future_result goal_ctxt future_thm prop); | 
| 28973 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1298 | val state' = | 
| 
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
 wenzelm parents: 
28627diff
changeset | 1299 | state | 
| 60611 
27255d1fbe1a
clarified map_node: operate precisely on goal context and goal info (see also 2b8342b0d98c);
 wenzelm parents: 
60595diff
changeset | 1300 | |> map_goal (K (goal_ctxt, statement, using, finished_goal, NONE, after_qed)); | 
| 51318 | 1301 | in (Future.map fst result_ctxt, state') end; | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1302 | |
| 17359 | 1303 | end; | 
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1304 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1305 | |
| 51662 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1306 | (* terminal proofs *) (* FIXME avoid toplevel imitation -- include in PIDE/document *) | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1307 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1308 | local | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1309 | |
| 60403 | 1310 | fun future_terminal_proof proof1 proof2 done state = | 
| 53189 
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
 wenzelm parents: 
52732diff
changeset | 1311 | if Goal.future_enabled 3 andalso not (is_relevant state) then | 
| 51318 | 1312 | state |> future_proof (fn state' => | 
| 51662 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1313 | let | 
| 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1314 | val pos = Position.thread_data (); | 
| 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1315 | val props = Markup.command_timing :: (Markup.nameN, "by") :: Position.properties_of pos; | 
| 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1316 | in | 
| 53192 | 1317 |         Execution.fork {name = "Proof.future_terminal_proof", pos = pos, pri = ~1}
 | 
| 51662 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1318 | (fn () => ((), Timing.protocol props proof2 state')) | 
| 
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
 wenzelm parents: 
51606diff
changeset | 1319 | end) |> snd |> done | 
| 51318 | 1320 | else proof1 state; | 
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1321 | |
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1322 | in | 
| 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1323 | |
| 51318 | 1324 | fun local_future_terminal_proof meths = | 
| 51605 
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
 wenzelm parents: 
51584diff
changeset | 1325 | future_terminal_proof | 
| 51318 | 1326 | (local_terminal_proof meths) | 
| 1327 | (local_terminal_proof meths #> context_of) local_done_proof; | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1328 | |
| 51318 | 1329 | fun global_future_terminal_proof meths = | 
| 51605 
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
 wenzelm parents: 
51584diff
changeset | 1330 | future_terminal_proof | 
| 51318 | 1331 | (global_terminal_proof meths) | 
| 1332 | (global_terminal_proof meths) global_done_proof; | |
| 29350 | 1333 | |
| 29346 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1334 | end; | 
| 
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
 wenzelm parents: 
29090diff
changeset | 1335 | |
| 29385 
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
 wenzelm parents: 
29383diff
changeset | 1336 | end; |