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