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