author | wenzelm |
Sat, 13 Jun 2015 13:09:05 +0200 | |
changeset 60449 | 229bad93377e |
parent 60447 | fa9bff5cd679 |
child 60461 | 22995ec9fefd |
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 -> |
60406 | 112 |
(Thm.binding * (term * term list) list) list -> state -> 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 -> |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
116 |
(Thm.binding * (term * term list) list) list -> bool -> state -> 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 -> |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
120 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> 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 -> |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
124 |
(Thm.binding * (term * term list) list) list -> bool -> state -> 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 -> |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
128 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> state |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
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: |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
165 |
((context * thm list list) -> state -> state) * |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
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 = |
|
237 |
(case get_facts state of SOME facts => facts |
|
18678 | 238 |
| NONE => error "No current facts available"); |
5820 | 239 |
|
9469 | 240 |
fun the_fact state = |
17359 | 241 |
(case the_facts state of [thm] => thm |
18678 | 242 |
| _ => error "Single theorem expected"); |
7605 | 243 |
|
17359 | 244 |
fun put_facts facts = |
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
245 |
map_top (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #> |
33386 | 246 |
put_thms true (Auto_Bind.thisN, facts); |
5820 | 247 |
|
47068 | 248 |
val set_facts = put_facts o SOME; |
249 |
val reset_facts = put_facts NONE; |
|
250 |
||
17359 | 251 |
fun these_factss more_facts (named_factss, state) = |
47068 | 252 |
(named_factss, state |> set_facts (maps snd named_factss @ more_facts)); |
5820 | 253 |
|
17359 | 254 |
fun export_facts inner outer = |
255 |
(case get_facts inner of |
|
47068 | 256 |
NONE => reset_facts outer |
17359 | 257 |
| SOME thms => |
258 |
thms |
|
42360 | 259 |
|> Proof_Context.export (context_of inner) (context_of outer) |
47068 | 260 |
|> (fn ths => set_facts ths outer)); |
5820 | 261 |
|
262 |
||
263 |
(* mode *) |
|
264 |
||
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
265 |
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
|
266 |
fun put_mode mode = map_top (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal)); |
5820 | 267 |
|
17359 | 268 |
val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove"); |
5820 | 269 |
|
270 |
fun assert_mode pred state = |
|
271 |
let val mode = get_mode state in |
|
272 |
if pred mode then state |
|
18678 | 273 |
else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode") |
5820 | 274 |
end; |
275 |
||
19308 | 276 |
val assert_forward = assert_mode (fn mode => mode = Forward); |
277 |
val assert_chain = assert_mode (fn mode => mode = Chain); |
|
278 |
val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain); |
|
279 |
val assert_backward = assert_mode (fn mode => mode = Backward); |
|
280 |
val assert_no_chain = assert_mode (fn mode => mode <> Chain); |
|
5820 | 281 |
|
17359 | 282 |
val enter_forward = put_mode Forward; |
283 |
val enter_chain = put_mode Chain; |
|
284 |
val enter_backward = put_mode Backward; |
|
5820 | 285 |
|
17359 | 286 |
|
287 |
(* current goal *) |
|
288 |
||
289 |
fun current_goal state = |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
290 |
(case top state of |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
291 |
{context = ctxt, goal = SOME (Goal goal), ...} => (ctxt, goal) |
47065 | 292 |
| _ => error "No current goal"); |
5820 | 293 |
|
17359 | 294 |
fun assert_current_goal g state = |
295 |
let val g' = can current_goal state in |
|
47065 | 296 |
if g andalso not g' then error "No goal in this block" |
297 |
else if not g andalso g' then error "Goal present in this block" |
|
17359 | 298 |
else state |
299 |
end; |
|
6776 | 300 |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
301 |
fun put_goal goal = map_top (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal)); |
17359 | 302 |
|
47068 | 303 |
val set_goal = put_goal o SOME; |
304 |
val reset_goal = put_goal NONE; |
|
305 |
||
17859 | 306 |
val before_qed = #before_qed o #2 o current_goal; |
307 |
||
17359 | 308 |
|
58798
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
309 |
(* bottom goal *) |
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
310 |
|
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
311 |
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
|
312 |
let |
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
313 |
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
|
314 |
| 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
|
315 |
| bottom [] = false |
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
316 |
| bottom (_ :: rest) = bottom rest; |
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
317 |
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
|
318 |
|
49ed5eea15d4
'oops' requires proper goal statement -- exclude 'notepad' to avoid disrupting begin/end structure;
wenzelm
parents:
58797
diff
changeset
|
319 |
|
17359 | 320 |
(* nested goal *) |
5820 | 321 |
|
58797 | 322 |
fun map_goal f g h (State stack) = |
323 |
(case Stack.dest stack of |
|
324 |
(Node {context, facts, mode, goal = SOME goal}, node :: nodes) => |
|
17359 | 325 |
let |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
326 |
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
|
327 |
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
|
328 |
val node' = map_node_context h node; |
58797 | 329 |
val stack' = Stack.make (make_node (f context, facts, mode, SOME goal')) (node' :: nodes); |
330 |
in State stack' end |
|
331 |
| (nd, node :: nodes) => |
|
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
332 |
let |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
333 |
val nd' = map_node_context f nd; |
58797 | 334 |
val State stack' = map_goal f g h (State (Stack.make node nodes)); |
335 |
val (node', nodes') = Stack.dest stack'; |
|
336 |
in State (Stack.make nd' (node' :: nodes')) end |
|
337 |
| _ => State stack); |
|
5820 | 338 |
|
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
339 |
fun provide_goal goal = map_goal I (fn (statement, using, _, before_qed, after_qed) => |
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
340 |
(statement, using, goal, before_qed, after_qed)) I; |
19188 | 341 |
|
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
342 |
fun using_facts using = map_goal I (fn (statement, _, goal, before_qed, after_qed) => |
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
343 |
(statement, using, goal, before_qed, after_qed)) I; |
17359 | 344 |
|
345 |
local |
|
346 |
fun find i state = |
|
347 |
(case try current_goal state of |
|
348 |
SOME (ctxt, goal) => (ctxt, (i, goal)) |
|
60094 | 349 |
| NONE => find (i + 1) (close_block state handle ERROR _ => error "No proof goal")); |
17359 | 350 |
in val find_goal = find 0 end; |
351 |
||
352 |
fun get_goal state = |
|
353 |
let val (ctxt, (_, {using, goal, ...})) = find_goal state |
|
354 |
in (ctxt, (using, goal)) end; |
|
5820 | 355 |
|
356 |
||
357 |
||
12423 | 358 |
(** pretty_state **) |
5820 | 359 |
|
59185 | 360 |
local |
361 |
||
15531 | 362 |
fun pretty_facts _ _ NONE = [] |
59185 | 363 |
| pretty_facts ctxt s (SOME ths) = [Proof_Display.pretty_goal_facts ctxt s ths]; |
364 |
||
365 |
fun pretty_sep prts [] = prts |
|
366 |
| pretty_sep [] prts = prts |
|
367 |
| pretty_sep prts1 prts2 = prts1 @ [Pretty.str ""] @ prts2; |
|
368 |
||
369 |
in |
|
6756 | 370 |
|
60403 | 371 |
fun pretty_state state = |
5820 | 372 |
let |
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
373 |
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
|
374 |
val verbose = Config.get ctxt Proof_Context.verbose; |
5820 | 375 |
|
60447 | 376 |
fun prt_goal (SOME (_, (_, {statement = _, using, goal, before_qed = _, after_qed = _}))) = |
59185 | 377 |
pretty_sep |
378 |
(pretty_facts ctxt "using" |
|
379 |
(if mode <> Backward orelse null using then NONE else SOME using)) |
|
380 |
([Proof_Display.pretty_goal_header goal] @ Goal_Display.pretty_goals ctxt goal) |
|
17359 | 381 |
| prt_goal NONE = []; |
6848 | 382 |
|
17359 | 383 |
val prt_ctxt = |
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42496
diff
changeset
|
384 |
if verbose orelse mode = Forward then Proof_Context.pretty_context ctxt |
42360 | 385 |
else if mode = Backward then Proof_Context.pretty_ctxt ctxt |
7575 | 386 |
else []; |
56912
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56898
diff
changeset
|
387 |
|
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56898
diff
changeset
|
388 |
val position_markup = Position.markup (Position.thread_data ()) Markup.position; |
17359 | 389 |
in |
56912
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56898
diff
changeset
|
390 |
[Pretty.block |
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56898
diff
changeset
|
391 |
[Pretty.mark_str (position_markup, "proof"), |
293cd4dcfebc
some position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56898
diff
changeset
|
392 |
Pretty.str (" (" ^ mode_name mode ^ "): depth " ^ string_of_int (level state div 2 - 1))], |
17359 | 393 |
Pretty.str ""] @ |
394 |
(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
|
395 |
(if verbose orelse mode = Forward then |
59185 | 396 |
pretty_sep (pretty_facts ctxt "" facts) (prt_goal (try find_goal state)) |
51584 | 397 |
else if mode = Chain then pretty_facts ctxt "picking" facts |
17359 | 398 |
else prt_goal (try find_goal state)) |
399 |
end; |
|
5820 | 400 |
|
59185 | 401 |
end; |
402 |
||
5820 | 403 |
|
404 |
||
405 |
(** proof steps **) |
|
406 |
||
17359 | 407 |
(* refine via method *) |
5820 | 408 |
|
8234 | 409 |
local |
410 |
||
16146 | 411 |
fun goalN i = "goal" ^ string_of_int i; |
412 |
fun goals st = map goalN (1 upto Thm.nprems_of st); |
|
413 |
||
414 |
fun no_goal_cases st = map (rpair NONE) (goals st); |
|
415 |
||
59970 | 416 |
fun goal_cases ctxt st = |
417 |
Rule_Cases.make_common ctxt (Thm.prop_of st) (map (rpair [] o rpair []) (goals st)); |
|
16146 | 418 |
|
58007
671c607fb4af
just one context for Method.evaluate (in contrast to a989bdaf8121, but in accordance to old global situation);
wenzelm
parents:
58004
diff
changeset
|
419 |
fun apply_method text ctxt state = |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
420 |
#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
|
421 |
Method.evaluate text ctxt using goal |
58004 | 422 |
|> Seq.map (fn (meth_cases, goal') => |
6848 | 423 |
state |
16146 | 424 |
|> map_goal |
59970 | 425 |
(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
|
426 |
Proof_Context.update_cases true meth_cases) |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
427 |
(K (statement, using, goal', before_qed, after_qed)) I)); |
5820 | 428 |
|
8234 | 429 |
in |
430 |
||
58007
671c607fb4af
just one context for Method.evaluate (in contrast to a989bdaf8121, but in accordance to old global situation);
wenzelm
parents:
58004
diff
changeset
|
431 |
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
|
432 |
fun refine_end text state = apply_method text (#1 (find_goal state)) state; |
58004 | 433 |
|
434 |
fun refine_insert ths = |
|
435 |
Seq.hd o refine (Method.Basic (K (Method.insert ths))); |
|
18908 | 436 |
|
8234 | 437 |
end; |
438 |
||
5820 | 439 |
|
17359 | 440 |
(* refine via sub-proof *) |
441 |
||
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
442 |
local |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
443 |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54567
diff
changeset
|
444 |
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
|
445 |
| 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
|
446 |
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
|
447 |
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
|
448 |
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
|
449 |
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
|
450 |
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
|
451 |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54567
diff
changeset
|
452 |
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
|
453 |
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
|
454 |
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
|
455 |
finish_tac ctxt (Thm.nprems_of rule); |
11816 | 456 |
|
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
457 |
fun FINDGOAL tac st = |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
458 |
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
|
459 |
in find 1 (Thm.nprems_of st) st end; |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
460 |
|
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
461 |
in |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
462 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
463 |
fun refine_goals print_rule result_ctxt result state = |
19915 | 464 |
let |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
465 |
val (goal_ctxt, (_, goal)) = get_goal state; |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
466 |
fun refine rule st = (print_rule goal_ctxt rule; FINDGOAL (goal_tac goal_ctxt rule) st); |
19915 | 467 |
in |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
468 |
result |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
469 |
|> Proof_Context.goal_export result_ctxt goal_ctxt |
47068 | 470 |
|> (fn rules => Seq.lift provide_goal (EVERY (map refine rules) goal) state) |
19915 | 471 |
end; |
17359 | 472 |
|
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
473 |
end; |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
474 |
|
6932 | 475 |
|
49846
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
wenzelm
parents:
49748
diff
changeset
|
476 |
(* conclude goal *) |
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
wenzelm
parents:
49748
diff
changeset
|
477 |
|
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
478 |
fun conclude_goal ctxt goal propss = |
5820 | 479 |
let |
42360 | 480 |
val thy = Proof_Context.theory_of ctxt; |
5820 | 481 |
|
54981 | 482 |
val _ = |
59582 | 483 |
Theory.subthy (Thm.theory_of_thm goal, thy) orelse |
484 |
error "Bad background theory of goal state"; |
|
49860 | 485 |
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
|
486 |
|
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
|
487 |
fun lost_structure () = error ("Lost goal structure:\n" ^ Display.string_of_thm ctxt goal); |
5820 | 488 |
|
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
|
489 |
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
|
490 |
(Goal.conclude (if length (flat propss) > 1 then Thm.norm_proof goal else goal) |
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
|
491 |
handle THM _ => lost_structure ()) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
58892
diff
changeset
|
492 |
|> 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
|
493 |
|> 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
|
494 |
|> Thm.check_hyps (Context.Proof ctxt); |
23418 | 495 |
|
496 |
val goal_propss = filter_out null propss; |
|
497 |
val results = |
|
498 |
Conjunction.elim_balanced (length goal_propss) th |
|
499 |
|> map2 Conjunction.elim_balanced (map length goal_propss) |
|
500 |
handle THM _ => lost_structure (); |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
58892
diff
changeset
|
501 |
val _ = |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
58892
diff
changeset
|
502 |
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
|
503 |
orelse error ("Proved a different theorem:\n" ^ Display.string_of_thm ctxt th); |
23418 | 504 |
|
505 |
fun recover_result ([] :: pss) thss = [] :: recover_result pss thss |
|
506 |
| recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss |
|
507 |
| recover_result [] [] = [] |
|
508 |
| recover_result _ _ = lost_structure (); |
|
509 |
in recover_result propss results end; |
|
5820 | 510 |
|
49859
52da6a736c32
more informative error messages of initial/terminal proof methods;
wenzelm
parents:
49848
diff
changeset
|
511 |
val finished_goal_error = "Failed to finish proof"; |
52da6a736c32
more informative error messages of initial/terminal proof methods;
wenzelm
parents:
49848
diff
changeset
|
512 |
|
49889
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
513 |
fun finished_goal pos state = |
49859
52da6a736c32
more informative error messages of initial/terminal proof methods;
wenzelm
parents:
49848
diff
changeset
|
514 |
let val (ctxt, (_, goal)) = get_goal state in |
52da6a736c32
more informative error messages of initial/terminal proof methods;
wenzelm
parents:
49848
diff
changeset
|
515 |
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
|
516 |
else |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
517 |
Seq.Error (fn () => |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
518 |
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
|
519 |
Proof_Display.string_of_goal ctxt goal) |
49859
52da6a736c32
more informative error messages of initial/terminal proof methods;
wenzelm
parents:
49848
diff
changeset
|
520 |
end; |
49846
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
wenzelm
parents:
49748
diff
changeset
|
521 |
|
5820 | 522 |
|
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
|
523 |
(* 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
|
524 |
|
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
wenzelm
parents:
33165
diff
changeset
|
525 |
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
|
526 |
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
|
527 |
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
|
528 |
|
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 |
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
|
530 |
|
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 |
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
|
532 |
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
|
533 |
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
|
534 |
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
|
535 |
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
|
536 |
|
38721
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
537 |
fun status_markup state = |
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
538 |
(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
|
539 |
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
|
540 |
| NONE => Markup.empty); |
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
541 |
|
49866 | 542 |
fun method_error kind pos state = |
543 |
Seq.single (Proof_Display.method_error kind pos (raw_goal state)); |
|
49861 | 544 |
|
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
|
545 |
|
5820 | 546 |
|
547 |
(*** structured proof commands ***) |
|
548 |
||
17112 | 549 |
(** context elements **) |
5820 | 550 |
|
36324 | 551 |
(* let bindings *) |
5820 | 552 |
|
16813 | 553 |
local |
554 |
||
17359 | 555 |
fun gen_bind bind args state = |
5820 | 556 |
state |
557 |
|> assert_forward |
|
36324 | 558 |
|> map_context (bind true args #> snd) |
47068 | 559 |
|> reset_facts; |
5820 | 560 |
|
16813 | 561 |
in |
562 |
||
60377 | 563 |
val let_bind = gen_bind Proof_Context.match_bind; |
564 |
val let_bind_cmd = gen_bind Proof_Context.match_bind_cmd; |
|
5820 | 565 |
|
16813 | 566 |
end; |
567 |
||
5820 | 568 |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
569 |
(* concrete syntax *) |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
570 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
571 |
local |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
572 |
|
36507
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
wenzelm
parents:
36505
diff
changeset
|
573 |
fun gen_write prep_arg mode args = |
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
wenzelm
parents:
36505
diff
changeset
|
574 |
assert_forward |
42360 | 575 |
#> map_context (fn ctxt => ctxt |> Proof_Context.notation true mode (map (prep_arg ctxt) args)) |
47068 | 576 |
#> reset_facts; |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
577 |
|
55955
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
wenzelm
parents:
55954
diff
changeset
|
578 |
fun read_arg ctxt (c, mx) = |
56002 | 579 |
(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
|
580 |
Free (x, _) => |
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
wenzelm
parents:
55954
diff
changeset
|
581 |
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
|
582 |
in (Free (x, T), mx) end |
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
wenzelm
parents:
55954
diff
changeset
|
583 |
| t => (t, mx)); |
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
wenzelm
parents:
55954
diff
changeset
|
584 |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
585 |
in |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
586 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
587 |
val write = gen_write (K I); |
55955
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
wenzelm
parents:
55954
diff
changeset
|
588 |
val write_cmd = gen_write read_arg; |
36505
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 |
end; |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
591 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
592 |
|
17359 | 593 |
(* fix *) |
9196 | 594 |
|
12714 | 595 |
local |
596 |
||
60379 | 597 |
fun gen_fix prep_var args = |
17359 | 598 |
assert_forward |
60379 | 599 |
#> map_context (fn ctxt => snd (Proof_Context.add_fixes (fst (fold_map prep_var args ctxt)) ctxt)) |
47068 | 600 |
#> reset_facts; |
5820 | 601 |
|
16813 | 602 |
in |
603 |
||
60379 | 604 |
val fix = gen_fix Proof_Context.cert_var; |
605 |
val fix_cmd = gen_fix Proof_Context.read_var; |
|
5820 | 606 |
|
16813 | 607 |
end; |
608 |
||
5820 | 609 |
|
17359 | 610 |
(* assume etc. *) |
5820 | 611 |
|
16813 | 612 |
local |
613 |
||
17112 | 614 |
fun gen_assume asm prep_att exp args state = |
5820 | 615 |
state |
616 |
|> assert_forward |
|
47815 | 617 |
|> map_context_result (asm exp (Attrib.map_specs (map (prep_att (context_of state))) args)) |
17359 | 618 |
|> these_factss [] |> #2; |
6932 | 619 |
|
16813 | 620 |
in |
621 |
||
60377 | 622 |
val assm = gen_assume Proof_Context.add_assms (K I); |
623 |
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
|
624 |
val assume = assm Assumption.assume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
625 |
val assume_cmd = assm_cmd Assumption.assume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
626 |
val presume = assm Assumption.presume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
627 |
val presume_cmd = assm_cmd Assumption.presume_export; |
5820 | 628 |
|
16813 | 629 |
end; |
630 |
||
7271 | 631 |
|
17359 | 632 |
(* def *) |
11891 | 633 |
|
16813 | 634 |
local |
635 |
||
60379 | 636 |
fun gen_def prep_att prep_var prep_binds args state = |
11891 | 637 |
let |
638 |
val _ = assert_forward state; |
|
20913 | 639 |
val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list; |
47815 | 640 |
val name_atts = map (apsnd (map (prep_att (context_of state)))) raw_name_atts; |
11891 | 641 |
in |
20913 | 642 |
state |
60379 | 643 |
|> map_context_result (fold_map (fn (x, mx) => prep_var (x, NONE, mx)) raw_vars) |
20913 | 644 |
|>> map (fn (x, _, mx) => (x, mx)) |
645 |
|-> (fn vars => |
|
646 |
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
|
647 |
#-> (fn rhss => |
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
wenzelm
parents:
49063
diff
changeset
|
648 |
let |
a346daa8a1f4
clarified Local_Defs.add_def(s): refrain from hard-wiring Thm.def_binding_optional;
wenzelm
parents:
49063
diff
changeset
|
649 |
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
|
650 |
((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
|
651 |
in map_context_result (Local_Defs.add_defs defs) end)) |
47068 | 652 |
|-> (set_facts o map (#2 o #2)) |
11891 | 653 |
end; |
654 |
||
16813 | 655 |
in |
656 |
||
60379 | 657 |
val def = gen_def (K I) Proof_Context.cert_var Proof_Context.match_bind; |
658 |
val def_cmd = gen_def Attrib.attribute_cmd Proof_Context.read_var Proof_Context.match_bind_cmd; |
|
11891 | 659 |
|
16813 | 660 |
end; |
661 |
||
11891 | 662 |
|
8374 | 663 |
|
17112 | 664 |
(** facts **) |
5820 | 665 |
|
17359 | 666 |
(* chain *) |
5820 | 667 |
|
24011 | 668 |
fun clean_facts ctxt = |
47068 | 669 |
set_facts (filter_out Thm.is_dummy (the_facts ctxt)) ctxt; |
24011 | 670 |
|
17359 | 671 |
val chain = |
672 |
assert_forward |
|
24011 | 673 |
#> clean_facts |
17359 | 674 |
#> enter_chain; |
5820 | 675 |
|
17359 | 676 |
fun chain_facts facts = |
47068 | 677 |
set_facts facts |
17359 | 678 |
#> chain; |
5820 | 679 |
|
680 |
||
17359 | 681 |
(* note etc. *) |
17112 | 682 |
|
28965 | 683 |
fun no_binding args = map (pair (Binding.empty, [])) args; |
17112 | 684 |
|
685 |
local |
|
686 |
||
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
687 |
fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state = |
17112 | 688 |
state |
689 |
|> assert_forward |
|
47815 | 690 |
|> map_context_result (fn ctxt => ctxt |> Proof_Context.note_thmss "" |
691 |
(Attrib.map_facts_refs (map (prep_atts ctxt)) (prep_fact ctxt) args)) |
|
17112 | 692 |
|> these_factss (more_facts state) |
17359 | 693 |
||> opt_chain |
694 |
|> opt_result; |
|
17112 | 695 |
|
696 |
in |
|
697 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
698 |
val note_thmss = gen_thmss (K []) I #2 (K I) (K I); |
47815 | 699 |
val note_thmss_cmd = gen_thmss (K []) I #2 Attrib.attribute_cmd Proof_Context.get_fact; |
17112 | 700 |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
701 |
val from_thmss = gen_thmss (K []) chain #2 (K I) (K I) o no_binding; |
47815 | 702 |
val from_thmss_cmd = |
703 |
gen_thmss (K []) chain #2 Attrib.attribute_cmd Proof_Context.get_fact o no_binding; |
|
17359 | 704 |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
705 |
val with_thmss = gen_thmss the_facts chain #2 (K I) (K I) o no_binding; |
47815 | 706 |
val with_thmss_cmd = |
707 |
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
|
708 |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
709 |
val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact); |
17359 | 710 |
|
17112 | 711 |
end; |
712 |
||
713 |
||
60371 | 714 |
(* facts during goal refinement *) |
715 |
||
716 |
local |
|
717 |
||
718 |
fun gen_supply prep_att prep_fact args state = |
|
719 |
state |
|
720 |
|> assert_backward |
|
721 |
|> map_context (fn ctxt => ctxt |> Proof_Context.note_thmss "" |
|
722 |
(Attrib.map_facts_refs (map (prep_att ctxt)) (prep_fact ctxt) args) |> snd); |
|
723 |
||
724 |
in |
|
725 |
||
726 |
val supply = gen_supply (K I) (K I); |
|
727 |
val supply_cmd = gen_supply Attrib.attribute_cmd Proof_Context.get_fact; |
|
728 |
||
729 |
end; |
|
730 |
||
731 |
||
18548 | 732 |
(* using/unfolding *) |
17112 | 733 |
|
734 |
local |
|
735 |
||
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45327
diff
changeset
|
736 |
fun gen_using f g prep_att prep_fact args state = |
17112 | 737 |
state |
738 |
|> assert_backward |
|
21442 | 739 |
|> map_context_result |
47815 | 740 |
(fn ctxt => ctxt |> Proof_Context.note_thmss "" |
741 |
(Attrib.map_facts_refs (map (prep_att ctxt)) (prep_fact ctxt) (no_binding args))) |
|
18843 | 742 |
|> (fn (named_facts, state') => |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
743 |
state' |> map_goal I (fn (statement, using, goal, before_qed, after_qed) => |
18843 | 744 |
let |
745 |
val ctxt = context_of state'; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
746 |
val ths = maps snd named_facts; |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
747 |
in (statement, f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end) I); |
18548 | 748 |
|
24050 | 749 |
fun append_using _ ths using = using @ filter_out Thm.is_dummy ths; |
35624 | 750 |
fun unfold_using ctxt ths = map (Local_Defs.unfold ctxt ths); |
751 |
val unfold_goals = Local_Defs.unfold_goals; |
|
17112 | 752 |
|
753 |
in |
|
754 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
755 |
val using = gen_using append_using (K (K I)) (K I) (K I); |
47815 | 756 |
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
|
757 |
val unfolding = gen_using unfold_using unfold_goals (K I) (K I); |
47815 | 758 |
val unfolding_cmd = gen_using unfold_using unfold_goals Attrib.attribute_cmd Proof_Context.get_fact; |
17112 | 759 |
|
760 |
end; |
|
761 |
||
762 |
||
763 |
(* case *) |
|
764 |
||
765 |
local |
|
766 |
||
57486
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
wenzelm
parents:
56933
diff
changeset
|
767 |
fun gen_invoke_case internal prep_att ((name, pos), xs, raw_atts) state = |
17112 | 768 |
let |
47815 | 769 |
val atts = map (prep_att (context_of state)) raw_atts; |
19078 | 770 |
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
|
771 |
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
|
772 |
val assumptions = |
08f3491c50bf
cases: formal binding of 'assumes', with position provided via invoke_case;
wenzelm
parents:
53378
diff
changeset
|
773 |
asms |> map (fn (b, ts) => ((Binding.set_pos pos b, atts), map (rpair []) ts)); |
17112 | 774 |
in |
775 |
state' |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
776 |
|> assume assumptions |
60401 | 777 |
|> map_context (fold Variable.unbind_term Auto_Bind.no_facts) |
53378
07990ba8c0ea
cases: more position information and PIDE markup;
wenzelm
parents:
53192
diff
changeset
|
778 |
|> `the_facts |-> (fn thms => note_thmss [((Binding.make (name, pos), []), [(thms, [])])]) |
17112 | 779 |
end; |
780 |
||
781 |
in |
|
782 |
||
57486
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
wenzelm
parents:
56933
diff
changeset
|
783 |
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
|
784 |
val invoke_case_cmd = gen_invoke_case false Attrib.attribute_cmd; |
17112 | 785 |
|
786 |
end; |
|
787 |
||
788 |
||
789 |
||
17359 | 790 |
(** proof structure **) |
791 |
||
792 |
(* blocks *) |
|
793 |
||
794 |
val begin_block = |
|
795 |
assert_forward |
|
796 |
#> open_block |
|
47068 | 797 |
#> reset_goal |
17359 | 798 |
#> open_block; |
799 |
||
800 |
val next_block = |
|
801 |
assert_forward |
|
802 |
#> close_block |
|
803 |
#> open_block |
|
47068 | 804 |
#> reset_goal |
805 |
#> reset_facts; |
|
17359 | 806 |
|
807 |
fun end_block state = |
|
808 |
state |
|
809 |
|> assert_forward |
|
40960 | 810 |
|> assert_bottom false |
17359 | 811 |
|> close_block |
812 |
|> assert_current_goal false |
|
813 |
|> close_block |
|
814 |
|> export_facts state; |
|
815 |
||
816 |
||
40960 | 817 |
(* global notepad *) |
818 |
||
819 |
val begin_notepad = |
|
820 |
init |
|
821 |
#> open_block |
|
822 |
#> map_context (Variable.set_body true) |
|
823 |
#> open_block; |
|
824 |
||
825 |
val end_notepad = |
|
826 |
assert_forward |
|
827 |
#> assert_bottom true |
|
828 |
#> close_block |
|
829 |
#> assert_current_goal false |
|
830 |
#> close_block |
|
831 |
#> context_of; |
|
832 |
||
833 |
||
17359 | 834 |
(* sub-proofs *) |
835 |
||
836 |
fun proof opt_text = |
|
837 |
assert_backward |
|
17859 | 838 |
#> refine (the_default Method.default_text opt_text) |
17359 | 839 |
#> Seq.map (using_facts [] #> enter_forward); |
840 |
||
49866 | 841 |
fun proof_results arg = |
842 |
Seq.APPEND (proof (Method.text arg) #> Seq.make_results, |
|
843 |
method_error "initial" (Method.position arg)); |
|
49863
b5fb6e7f8d81
more informative errors for 'proof' and 'apply' steps;
wenzelm
parents:
49861
diff
changeset
|
844 |
|
49889
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
845 |
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
|
846 |
let |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
847 |
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
|
848 |
(case opt_text of |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
849 |
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
|
850 |
| 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
|
851 |
in |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
852 |
Seq.APPEND (fn state => |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
853 |
state |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
854 |
|> assert_forward |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
855 |
|> assert_bottom bot |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
856 |
|> close_block |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
857 |
|> assert_current_goal true |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
858 |
|> using_facts [] |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
859 |
|> `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
|
860 |
|> Seq.maps (refine finish_text) |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
861 |
|> 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
|
862 |
#> 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
|
863 |
end; |
17359 | 864 |
|
29383 | 865 |
fun check_result msg sq = |
866 |
(case Seq.pull sq of |
|
867 |
NONE => error msg |
|
868 |
| SOME (s, _) => s); |
|
869 |
||
17359 | 870 |
|
871 |
(* unstructured refinement *) |
|
872 |
||
49865 | 873 |
fun defer i = |
874 |
assert_no_chain #> |
|
875 |
refine (Method.Basic (fn _ => METHOD (fn _ => ASSERT_SUBGOAL defer_tac i))) #> Seq.hd; |
|
876 |
||
877 |
fun prefer i = |
|
878 |
assert_no_chain #> |
|
879 |
refine (Method.Basic (fn _ => METHOD (fn _ => ASSERT_SUBGOAL prefer_tac i))) #> Seq.hd; |
|
17359 | 880 |
|
881 |
fun apply text = assert_backward #> refine text #> Seq.map (using_facts []); |
|
49866 | 882 |
|
17359 | 883 |
fun apply_end text = assert_forward #> refine_end text; |
884 |
||
55709
4e5a83a46ded
clarified Token.range_of in accordance to Symbol_Pos.range;
wenzelm
parents:
54993
diff
changeset
|
885 |
fun apply_results (text, (pos, _)) = |
4e5a83a46ded
clarified Token.range_of in accordance to Symbol_Pos.range;
wenzelm
parents:
54993
diff
changeset
|
886 |
Seq.APPEND (apply text #> Seq.make_results, method_error "" pos); |
49866 | 887 |
|
55709
4e5a83a46ded
clarified Token.range_of in accordance to Symbol_Pos.range;
wenzelm
parents:
54993
diff
changeset
|
888 |
fun apply_end_results (text, (pos, _)) = |
4e5a83a46ded
clarified Token.range_of in accordance to Symbol_Pos.range;
wenzelm
parents:
54993
diff
changeset
|
889 |
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
|
890 |
|
17359 | 891 |
|
892 |
||
17112 | 893 |
(** goals **) |
894 |
||
17359 | 895 |
(* generic goals *) |
896 |
||
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
897 |
local |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
898 |
|
36322
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
899 |
val is_var = |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
900 |
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
|
901 |
can (dest_Var o Logic.dest_term); |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
902 |
|
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
903 |
fun implicit_vars props = |
19846 | 904 |
let |
36354 | 905 |
val (var_props, _) = take_prefix is_var props; |
36322
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
906 |
val explicit_vars = fold Term.add_vars var_props []; |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
907 |
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
|
908 |
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
|
909 |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
910 |
fun refine_terms n = |
59953 | 911 |
refine (Method.Basic (fn ctxt => EMPTY_CASES o |
58002 | 912 |
K (HEADGOAL (PRECISE_CONJUNCTS n |
59498
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents:
59185
diff
changeset
|
913 |
(HEADGOAL (CONJUNCTS (ALLGOALS (resolve_tac ctxt [Drule.termI])))))))) |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
914 |
#> Seq.hd; |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
915 |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
916 |
in |
17359 | 917 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
918 |
fun generic_goal kind before_qed after_qed goal_ctxt goal_propss result_binds state = |
5820 | 919 |
let |
17359 | 920 |
val chaining = can assert_chain state; |
25958 | 921 |
val pos = Position.thread_data (); |
17359 | 922 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
923 |
val goal_state = |
5936 | 924 |
state |
925 |
|> assert_forward_or_chain |
|
926 |
|> enter_forward |
|
17359 | 927 |
|> open_block |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
928 |
|> map_context (K goal_ctxt); |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
929 |
val goal_props = flat goal_propss; |
15703 | 930 |
|
60415
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'; |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
934 |
val goal = |
59616 | 935 |
Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss) |
60406 | 936 |
|> Thm.cterm_of goal_ctxt |
60383 | 937 |
|> Thm.weaken_sorts (Variable.sorts_of goal_ctxt); |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
938 |
val statement = ((kind, pos), propss', Thm.term_of goal); |
60402 | 939 |
|
60383 | 940 |
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
|
941 |
map_context (fold Variable.maybe_bind_term result_binds) #> after_local results); |
5820 | 942 |
in |
17359 | 943 |
goal_state |
21727 | 944 |
|> map_context (init_context #> Variable.set_body true) |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
945 |
|> set_goal (make_goal (statement, [], Goal.init goal, before_qed, after_qed')) |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
946 |
|> map_context (Proof_Context.auto_bind_goal goal_props) |
21565 | 947 |
|> chaining ? (`the_facts #-> using_facts) |
47068 | 948 |
|> reset_facts |
17359 | 949 |
|> open_block |
47068 | 950 |
|> reset_goal |
5820 | 951 |
|> enter_backward |
23418 | 952 |
|> not (null vars) ? refine_terms (length goal_propss) |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
953 |
|> null goal_props ? (refine (Method.Basic Method.assumption) #> Seq.hd) |
5820 | 954 |
end; |
955 |
||
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
956 |
fun generic_qed state = |
60409
240ad53041c9
prevent export of future result -- avoid interference with goal fixes;
wenzelm
parents:
60408
diff
changeset
|
957 |
let |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
958 |
val (goal_ctxt, {statement = (_, propss, _), goal, after_qed, ...}) = |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
959 |
current_goal state; |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
960 |
val results = tl (conclude_goal goal_ctxt goal propss); |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
961 |
in state |> close_block |> pair (after_qed, (goal_ctxt, results)) end; |
17359 | 962 |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
963 |
end; |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
964 |
|
9469 | 965 |
|
17359 | 966 |
(* local goals *) |
967 |
||
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
968 |
local |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
969 |
|
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
970 |
fun export_binds ctxt' ctxt binds = |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
971 |
let |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
972 |
val rhss = |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
973 |
map (the_list o snd) binds |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
974 |
|> burrow (Variable.export_terms ctxt' ctxt) |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
975 |
|> map (try the_single); |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
976 |
in map fst binds ~~ rhss end; |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
977 |
|
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
978 |
in |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
979 |
|
60406 | 980 |
fun local_goal print_results prep_att prep_propp prep_var |
60414 | 981 |
kind before_qed after_qed raw_fixes raw_assumes raw_shows state = |
17359 | 982 |
let |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
983 |
val ctxt = context_of state; |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
984 |
|
60414 | 985 |
val (assumes_bindings, shows_bindings) = |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
986 |
apply2 (map (apsnd (map (prep_att ctxt)) o fst)) (raw_assumes, raw_shows); |
60414 | 987 |
val (assumes_propp, shows_propp) = apply2 (map snd) (raw_assumes, raw_shows); |
17359 | 988 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
989 |
val (goal_ctxt, goal_propss, result_binds) = |
60402 | 990 |
let |
60414 | 991 |
(*fixed variables*) |
60406 | 992 |
val ((xs', vars), fix_ctxt) = ctxt |
60414 | 993 |
|> fold_map prep_var raw_fixes |
60406 | 994 |
|-> (fn vars => Proof_Context.add_fixes vars ##>> pair vars); |
995 |
||
60414 | 996 |
(*propositions with term bindings*) |
997 |
val (all_propss, binds) = prep_propp fix_ctxt (assumes_propp @ shows_propp); |
|
998 |
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
|
999 |
|
60414 | 1000 |
(*params*) |
60417
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1001 |
val (ps, params_ctxt) = fix_ctxt |
60414 | 1002 |
|> (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
|
1003 |
|> fold Variable.bind_term binds |
60406 | 1004 |
|> fold_map Proof_Context.inferred_param xs'; |
1005 |
val xs = map (Variable.check_name o #1) vars; |
|
60407 | 1006 |
val params = xs ~~ map Free ps; |
60406 | 1007 |
|
60417
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1008 |
(*prems*) |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1009 |
val goal_ctxt = params_ctxt |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1010 |
|> 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
|
1011 |
((map o map) (Thm.cterm_of params_ctxt) assumes_propss) |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1012 |
|> (fn (premss, ctxt') => ctxt' |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1013 |
|> not (null assumes_propss) ? |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1014 |
(snd o Proof_Context.note_thmss "" |
60449 | 1015 |
[((Binding.name Auto_Bind.thatN, []), |
60417
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1016 |
[(Assumption.local_prems_of ctxt' ctxt, [])])]) |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1017 |
|> (snd o Proof_Context.note_thmss "" |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1018 |
(assumes_bindings ~~ map (map (fn th => ([th], []))) premss))); |
014d77e5c1ab
prefer direct Assumption.add_assms -- avoid term bindings of Proof_Context.add_assms;
wenzelm
parents:
60415
diff
changeset
|
1019 |
|
60414 | 1020 |
val _ = Variable.warn_extra_tfrees fix_ctxt goal_ctxt; |
1021 |
||
1022 |
(*result term bindings*) |
|
1023 |
val shows_props = flat shows_propss; |
|
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1024 |
val binds' = |
60414 | 1025 |
(case try List.last shows_props of |
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1026 |
NONE => [] |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1027 |
| 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
|
1028 |
val result_binds = |
60414 | 1029 |
(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
|
1030 |
|> (map o apsnd o Option.map) (fold_rev Term.dependent_lambda_name params) |
60414 | 1031 |
|> export_binds goal_ctxt ctxt; |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1032 |
in (goal_ctxt, shows_propss, result_binds) end; |
60402 | 1033 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1034 |
fun after_qed' (result_ctxt, results) state' = state' |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1035 |
|> 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
|
1036 |
|-> (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
|
1037 |
|> after_qed (result_ctxt, results); |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1038 |
in generic_goal kind before_qed (after_qed', K I) goal_ctxt goal_propss result_binds state end; |
5820 | 1039 |
|
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1040 |
end; |
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1041 |
|
49866 | 1042 |
fun local_qeds arg = |
1043 |
end_proof false arg |
|
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1044 |
#> Seq.map_result (generic_qed #-> (fn ((after_qed, _), results) => after_qed results)); |
5820 | 1045 |
|
49889
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
1046 |
fun local_qed arg = |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
1047 |
local_qeds (Position.none, arg) #> Seq.the_result finished_goal_error; |
29383 | 1048 |
|
5820 | 1049 |
|
17359 | 1050 |
(* global goals *) |
1051 |
||
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1052 |
fun global_goal prep_propp before_qed after_qed propp ctxt = |
60402 | 1053 |
let |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1054 |
val (propss, binds) = |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1055 |
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
|
1056 |
val goal_ctxt = ctxt |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1057 |
|> (fold o fold) Variable.auto_fixes propss |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1058 |
|> fold Variable.bind_term binds; |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1059 |
fun after_qed' (result_ctxt, results) ctxt' = |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1060 |
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
|
1061 |
in |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1062 |
ctxt |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1063 |
|> init |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1064 |
|> 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
|
1065 |
end; |
45327 | 1066 |
|
60388 | 1067 |
val theorem = global_goal Proof_Context.cert_propp; |
1068 |
val theorem_cmd = global_goal Proof_Context.read_propp; |
|
12065 | 1069 |
|
49866 | 1070 |
fun global_qeds arg = |
1071 |
end_proof true arg |
|
60408
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
wenzelm
parents:
60407
diff
changeset
|
1072 |
#> 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
|
1073 |
after_qed results (context_of state))); |
17112 | 1074 |
|
49889
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
1075 |
fun global_qed arg = |
00ea087e83d8
more method position information, notably finished_pos after end of previous text;
wenzelm
parents:
49867
diff
changeset
|
1076 |
global_qeds (Position.none, arg) #> Seq.the_result finished_goal_error; |
12959 | 1077 |
|
5820 | 1078 |
|
49907 | 1079 |
(* terminal proof steps *) |
17112 | 1080 |
|
49890
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1081 |
local |
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1082 |
|
49846
8fae089f5a0c
refined Proof.the_finished_goal with more informative error;
wenzelm
parents:
49748
diff
changeset
|
1083 |
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
|
1084 |
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
|
1085 |
#> Seq.the_result ""; |
49848
f222a054342e
more informative error of initial/terminal proof steps;
wenzelm
parents:
49847
diff
changeset
|
1086 |
|
49890
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1087 |
in |
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1088 |
|
29383 | 1089 |
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
|
1090 |
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
|
1091 |
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
|
1092 |
val local_done_proof = terminal_proof local_qeds (Method.done_text, Position.no_range) (NONE, false); |
17112 | 1093 |
|
29383 | 1094 |
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
|
1095 |
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
|
1096 |
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
|
1097 |
val global_done_proof = terminal_proof global_qeds (Method.done_text, Position.no_range) (NONE, false); |
5820 | 1098 |
|
49890
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1099 |
end; |
89eff795f757
skipped proofs appear as "bad" without counting as error;
wenzelm
parents:
49889
diff
changeset
|
1100 |
|
6896 | 1101 |
|
49907 | 1102 |
(* skip proofs *) |
1103 |
||
1104 |
fun local_skip_proof int state = |
|
1105 |
local_terminal_proof ((Method.sorry_text int, Position.no_range), NONE) state before |
|
51551 | 1106 |
Skip_Proof.report (context_of state); |
49907 | 1107 |
|
1108 |
fun global_skip_proof int state = |
|
1109 |
global_terminal_proof ((Method.sorry_text int, Position.no_range), NONE) state before |
|
51551 | 1110 |
Skip_Proof.report (context_of state); |
49907 | 1111 |
|
1112 |
||
17359 | 1113 |
(* common goal statements *) |
1114 |
||
60406 | 1115 |
fun internal_goal print_results mode = |
1116 |
local_goal print_results (K I) (Proof_Context.cert_propp o Proof_Context.set_mode mode) |
|
1117 |
Proof_Context.cert_var; |
|
1118 |
||
17359 | 1119 |
local |
1120 |
||
60406 | 1121 |
fun gen_have prep_att prep_propp prep_var |
60414 | 1122 |
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
|
1123 |
local_goal (Proof_Display.print_results int (Position.thread_data ())) |
60414 | 1124 |
prep_att prep_propp prep_var "have" before_qed after_qed fixes assumes shows; |
6896 | 1125 |
|
60406 | 1126 |
fun gen_show prep_att prep_propp prep_var |
60414 | 1127 |
before_qed after_qed fixes assumes shows int state = |
17359 | 1128 |
let |
32738 | 1129 |
val testing = Unsynchronized.ref false; |
1130 |
val rule = Unsynchronized.ref (NONE: thm option); |
|
17359 | 1131 |
fun fail_msg ctxt = |
50315
cf9002ac1018
recovered error to finish proof (e.g. bad obtain export) from 223f18cfbb32;
wenzelm
parents:
50201
diff
changeset
|
1132 |
"Local statement fails to refine any pending goal" :: |
33389 | 1133 |
(case ! rule of NONE => [] | SOME th => [Proof_Display.string_of_rule ctxt "Failed" th]) |
17359 | 1134 |
|> cat_lines; |
6896 | 1135 |
|
56932
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56912
diff
changeset
|
1136 |
val pos = Position.thread_data (); |
17359 | 1137 |
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
|
1138 |
if ! testing then () |
56932
11a4001b06c6
more position markup to help locating the query context, e.g. from "Info" dockable;
wenzelm
parents:
56912
diff
changeset
|
1139 |
else Proof_Display.print_results int pos ctxt res; |
17359 | 1140 |
fun print_rule ctxt th = |
1141 |
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
|
1142 |
else if int then |
56933 | 1143 |
Proof_Display.string_of_rule ctxt "Successful" th |
1144 |
|> Markup.markup Markup.text_fold |
|
59184
830bb7ddb3ab
explicit message channels for "state", "information";
wenzelm
parents:
59150
diff
changeset
|
1145 |
|> Output.state |
17359 | 1146 |
else (); |
1147 |
val test_proof = |
|
50315
cf9002ac1018
recovered error to finish proof (e.g. bad obtain export) from 223f18cfbb32;
wenzelm
parents:
50201
diff
changeset
|
1148 |
local_skip_proof true |
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39232
diff
changeset
|
1149 |
|> Unsynchronized.setmp testing true |
42042 | 1150 |
|> Exn.interruptible_capture; |
6896 | 1151 |
|
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1152 |
fun after_qed' (result_ctxt, results) state' = state' |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1153 |
|> refine_goals print_rule result_ctxt (flat results) |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1154 |
|> check_result "Failed to refine any pending goal" |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1155 |
|> after_qed (result_ctxt, results); |
17359 | 1156 |
in |
1157 |
state |
|
60406 | 1158 |
|> local_goal print_results prep_att prep_propp prep_var |
60414 | 1159 |
"show" before_qed after_qed' fixes assumes shows |
21565 | 1160 |
|> int ? (fn goal_state => |
49907 | 1161 |
(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
|
1162 |
Exn.Res _ => goal_state |
42042 | 1163 |
| Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))]))) |
17359 | 1164 |
end; |
1165 |
||
1166 |
in |
|
1167 |
||
60406 | 1168 |
val have = gen_have (K I) Proof_Context.cert_propp Proof_Context.cert_var; |
1169 |
val have_cmd = gen_have Attrib.attribute_cmd Proof_Context.read_propp Proof_Context.read_var; |
|
1170 |
val show = gen_show (K I) Proof_Context.cert_propp Proof_Context.cert_var; |
|
1171 |
val show_cmd = gen_show Attrib.attribute_cmd Proof_Context.read_propp Proof_Context.read_var; |
|
6896 | 1172 |
|
5820 | 1173 |
end; |
17359 | 1174 |
|
28410 | 1175 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1176 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1177 |
(** future proofs **) |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1178 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1179 |
(* relevant proof states *) |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1180 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1181 |
fun schematic_goal state = |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1182 |
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
|
1183 |
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
|
1184 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1185 |
fun is_relevant state = |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1186 |
(case try find_goal state of |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1187 |
NONE => true |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1188 |
| 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
|
1189 |
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
|
1190 |
|
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 |
(* full proofs *) |
28410 | 1193 |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1194 |
local |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1195 |
|
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
|
1196 |
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
|
1197 |
( |
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
|
1198 |
type T = thm option; |
59150 | 1199 |
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
|
1200 |
); |
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
|
1201 |
|
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
|
1202 |
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
|
1203 |
(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
|
1204 |
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
|
1205 |
| 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
|
1206 |
|
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
|
1207 |
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
|
1208 |
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
|
1209 |
|
51318 | 1210 |
in |
1211 |
||
1212 |
fun future_proof fork_proof state = |
|
28410 | 1213 |
let |
29381
45d77aeb1608
future_terminal_proof: no fork for interactive mode, assert_backward;
wenzelm
parents:
29364
diff
changeset
|
1214 |
val _ = assert_backward state; |
60409
240ad53041c9
prevent export of future result -- avoid interference with goal fixes;
wenzelm
parents:
60408
diff
changeset
|
1215 |
val (goal_ctxt, (_, goal_info)) = find_goal state; |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1216 |
val {statement as (kind, _, prop), using, goal, before_qed, after_qed} = goal_info; |
28410 | 1217 |
|
29383 | 1218 |
val _ = is_relevant state andalso error "Cannot fork relevant proof"; |
1219 |
||
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1220 |
val after_qed' = |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1221 |
(fn (_, [[th]]) => map_context (set_result th), |
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1222 |
fn (_, [[th]]) => set_result th); |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1223 |
val result_ctxt = |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1224 |
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
|
1225 |
|> map_context reset_result |
60415
9d37b2330ee3
clarified local after_qed: result is not exported yet;
wenzelm
parents:
60414
diff
changeset
|
1226 |
|> 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
|
1227 |
|> fork_proof; |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1228 |
|
51318 | 1229 |
val future_thm = Future.map (the_result o snd) result_ctxt; |
60411 | 1230 |
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
|
1231 |
val state' = |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1232 |
state |
58892
20aa19ecf2cc
eliminated obsolete Proof.goal_message -- print outcome more directly;
wenzelm
parents:
58837
diff
changeset
|
1233 |
|> map_goal I (K (statement, using, finished_goal, NONE, after_qed)) I; |
51318 | 1234 |
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
|
1235 |
|
17359 | 1236 |
end; |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1237 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1238 |
|
51662
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51606
diff
changeset
|
1239 |
(* 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
|
1240 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1241 |
local |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1242 |
|
60403 | 1243 |
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
|
1244 |
if Goal.future_enabled 3 andalso not (is_relevant state) then |
51318 | 1245 |
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
|
1246 |
let |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51606
diff
changeset
|
1247 |
val pos = Position.thread_data (); |
3391a493f39a
just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents:
51606
diff
changeset
|
1248 |
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
|
1249 |
in |
53192 | 1250 |
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
|
1251 |
(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
|
1252 |
end) |> snd |> done |
51318 | 1253 |
else proof1 state; |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1254 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1255 |
in |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1256 |
|
51318 | 1257 |
fun local_future_terminal_proof meths = |
51605
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
wenzelm
parents:
51584
diff
changeset
|
1258 |
future_terminal_proof |
51318 | 1259 |
(local_terminal_proof meths) |
1260 |
(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
|
1261 |
|
51318 | 1262 |
fun global_future_terminal_proof meths = |
51605
eca8acb42e4a
more explicit Goal.fork_params -- avoid implicit arguments via thread data;
wenzelm
parents:
51584
diff
changeset
|
1263 |
future_terminal_proof |
51318 | 1264 |
(global_terminal_proof meths) |
1265 |
(global_terminal_proof meths) global_done_proof; |
|
29350 | 1266 |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1267 |
end; |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1268 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1269 |
end; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1270 |