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