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