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