author | wenzelm |
Sat, 01 Sep 2012 19:43:18 +0200 | |
changeset 49062 | 7e31dfd99ce7 |
parent 49042 | 01041f7bf9b4 |
child 49063 | f93443defa6c |
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 |
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30557
diff
changeset
|
22 |
val bind_terms: (indexname * term option) list -> state -> state |
26251
b8c6259d366b
put_facts: do_props, i.e. facts are indexed by proposition again;
wenzelm
parents:
25958
diff
changeset
|
23 |
val put_thms: bool -> string * thm list option -> state -> state |
6091 | 24 |
val the_facts: state -> thm list |
9469 | 25 |
val the_fact: state -> thm |
47068 | 26 |
val set_facts: thm list -> state -> state |
27 |
val reset_facts: state -> state |
|
6891 | 28 |
val assert_forward: state -> state |
17359 | 29 |
val assert_chain: state -> state |
9469 | 30 |
val assert_forward_or_chain: state -> state |
5820 | 31 |
val assert_backward: state -> state |
8206 | 32 |
val assert_no_chain: state -> state |
5820 | 33 |
val enter_forward: state -> state |
24543 | 34 |
val goal_message: (unit -> Pretty.T) -> state -> state |
12423 | 35 |
val pretty_state: int -> state -> Pretty.T list |
10360 | 36 |
val pretty_goals: bool -> state -> Pretty.T list |
17112 | 37 |
val refine: Method.text -> state -> state Seq.seq |
38 |
val refine_end: Method.text -> state -> state Seq.seq |
|
18908 | 39 |
val refine_insert: thm list -> state -> state |
17359 | 40 |
val refine_goals: (context -> thm -> unit) -> context -> thm list -> state -> state Seq.seq |
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
|
41 |
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
|
42 |
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
|
43 |
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
|
44 |
val status_markup: state -> Markup.T |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
45 |
val let_bind: (term list * term) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
val fix: (binding * typ option * mixfix) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
50 |
val fix_cmd: (binding * string option * mixfix) list -> state -> state |
20224
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
51 |
val assm: Assumption.export -> |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
52 |
(Thm.binding * (term * term list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
53 |
val assm_cmd: Assumption.export -> |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
54 |
(Attrib.binding * (string * string list) list) list -> state -> state |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
55 |
val assume: (Thm.binding * (term * term list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
56 |
val assume_cmd: (Attrib.binding * (string * string list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
57 |
val presume: (Thm.binding * (term * term list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
58 |
val presume_cmd: (Attrib.binding * (string * string list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
59 |
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
|
60 |
val def_cmd: (Attrib.binding * ((binding * mixfix) * (string * string list))) list -> state -> state |
17359 | 61 |
val chain: state -> state |
62 |
val chain_facts: thm list -> state -> state |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
63 |
val note_thmss: (Thm.binding * (thm list * attribute list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
64 |
val note_thmss_cmd: (Attrib.binding * (Facts.ref * Attrib.src list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
65 |
val from_thmss: ((thm list * attribute list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
66 |
val from_thmss_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
67 |
val with_thmss: ((thm list * attribute list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
68 |
val with_thmss_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
69 |
val using: ((thm list * attribute list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
70 |
val using_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
71 |
val unfolding: ((thm list * attribute list) list) list -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
72 |
val unfolding_cmd: ((Facts.ref * Attrib.src list) list) list -> state -> state |
42496 | 73 |
val invoke_case: string * binding option list * attribute list -> state -> state |
74 |
val invoke_case_cmd: string * binding option list * Attrib.src list -> state -> state |
|
17359 | 75 |
val begin_block: state -> state |
76 |
val next_block: state -> state |
|
20309 | 77 |
val end_block: state -> state |
49042 | 78 |
val begin_notepad: context -> state |
79 |
val end_notepad: state -> context |
|
17112 | 80 |
val proof: Method.text option -> state -> state Seq.seq |
81 |
val defer: int option -> state -> state Seq.seq |
|
82 |
val prefer: int -> state -> state Seq.seq |
|
83 |
val apply: Method.text -> state -> state Seq.seq |
|
84 |
val apply_end: Method.text -> state -> state Seq.seq |
|
17359 | 85 |
val local_goal: (context -> ((string * string) * (string * thm list) list) -> unit) -> |
49042 | 86 |
(context -> 'a -> attribute) -> |
45327 | 87 |
('b list -> context -> (term list list * (context -> context)) * context) -> |
29383 | 88 |
string -> Method.text option -> (thm list list -> state -> state) -> |
29581 | 89 |
((binding * 'a list) * 'b) list -> state -> state |
29383 | 90 |
val local_qed: Method.text option * bool -> state -> state |
21442 | 91 |
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
|
92 |
(term * term list) list list -> context -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
93 |
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
|
94 |
(string * string list) list list -> context -> state |
20363
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
95 |
val global_qed: Method.text option * bool -> state -> context |
29383 | 96 |
val local_terminal_proof: Method.text * Method.text option -> state -> state |
97 |
val local_default_proof: state -> state |
|
98 |
val local_immediate_proof: state -> state |
|
99 |
val local_skip_proof: bool -> state -> state |
|
100 |
val local_done_proof: state -> state |
|
20363
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
101 |
val global_terminal_proof: Method.text * Method.text option -> state -> context |
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
102 |
val global_default_proof: state -> context |
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
103 |
val global_immediate_proof: state -> context |
29383 | 104 |
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
|
105 |
val global_done_proof: state -> context |
29383 | 106 |
val have: Method.text option -> (thm list list -> state -> state) -> |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
107 |
(Thm.binding * (term * term list) list) list -> bool -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
108 |
val have_cmd: Method.text option -> (thm list list -> state -> state) -> |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
109 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> state |
29383 | 110 |
val show: Method.text option -> (thm list list -> state -> state) -> |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
111 |
(Thm.binding * (term * term list) list) list -> bool -> state -> state |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
112 |
val show_cmd: Method.text option -> (thm list list -> state -> state) -> |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
113 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> state |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
114 |
val schematic_goal: state -> bool |
47416 | 115 |
val local_future_proof: (state -> ('a * state) future) -> state -> 'a future * state |
49042 | 116 |
val global_future_proof: (state -> ('a * context) future) -> state -> 'a future * context |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
117 |
val local_future_terminal_proof: Method.text * Method.text option -> bool -> state -> state |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
118 |
val global_future_terminal_proof: Method.text * Method.text option -> bool -> state -> context |
5820 | 119 |
end; |
120 |
||
13377 | 121 |
structure Proof: PROOF = |
5820 | 122 |
struct |
123 |
||
33031
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
wenzelm
parents:
32856
diff
changeset
|
124 |
type context = Proof.context; |
17112 | 125 |
type method = Method.method; |
16813 | 126 |
|
5820 | 127 |
|
128 |
(** proof state **) |
|
129 |
||
17359 | 130 |
(* datatype state *) |
5820 | 131 |
|
17112 | 132 |
datatype mode = Forward | Chain | Backward; |
5820 | 133 |
|
17359 | 134 |
datatype state = |
135 |
State of node Stack.T |
|
136 |
and node = |
|
7176 | 137 |
Node of |
138 |
{context: context, |
|
139 |
facts: thm list option, |
|
140 |
mode: mode, |
|
17359 | 141 |
goal: goal option} |
142 |
and goal = |
|
143 |
Goal of |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
144 |
{statement: (string * Position.T) * term list list * term, |
28410 | 145 |
(*goal kind and statement (starting with vars), initial proposition*) |
25958 | 146 |
messages: (unit -> Pretty.T) list, (*persistent messages (hints etc.)*) |
147 |
using: thm list, (*goal facts*) |
|
148 |
goal: thm, (*subgoals ==> statement*) |
|
17859 | 149 |
before_qed: Method.text option, |
18124 | 150 |
after_qed: |
29383 | 151 |
(thm list list -> state -> state) * |
20363
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
152 |
(thm list list -> context -> context)}; |
17359 | 153 |
|
24543 | 154 |
fun make_goal (statement, messages, using, goal, before_qed, after_qed) = |
155 |
Goal {statement = statement, messages = messages, using = using, goal = goal, |
|
17859 | 156 |
before_qed = before_qed, after_qed = after_qed}; |
5820 | 157 |
|
7176 | 158 |
fun make_node (context, facts, mode, goal) = |
159 |
Node {context = context, facts = facts, mode = mode, goal = goal}; |
|
160 |
||
17359 | 161 |
fun map_node f (Node {context, facts, mode, goal}) = |
162 |
make_node (f (context, facts, mode, goal)); |
|
5820 | 163 |
|
21727 | 164 |
val init_context = |
42360 | 165 |
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
|
166 |
Proof_Context.map_naming (K Name_Space.local_naming); |
21727 | 167 |
|
21466
6ffb8f455b84
init: enter inner statement mode, which prevents local notes from being named internally;
wenzelm
parents:
21451
diff
changeset
|
168 |
fun init ctxt = |
21727 | 169 |
State (Stack.init (make_node (init_context ctxt, NONE, Forward, NONE))); |
5820 | 170 |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
171 |
fun top (State st) = Stack.top st |> (fn Node node => node); |
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
172 |
fun bottom (State st) = Stack.bottom st |> (fn Node node => node); |
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
173 |
|
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
174 |
fun map_top f (State st) = State (Stack.map_top (map_node f) st); |
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
175 |
fun map_bottom f (State st) = State (Stack.map_bottom (map_node f) st); |
28278 | 176 |
fun map_all f (State st) = State (Stack.map_all (map_node f) st); |
12045 | 177 |
|
5820 | 178 |
|
179 |
||
180 |
(** basic proof state operations **) |
|
181 |
||
17359 | 182 |
(* block structure *) |
183 |
||
184 |
fun open_block (State st) = State (Stack.push st); |
|
185 |
||
18678 | 186 |
fun close_block (State st) = State (Stack.pop st) |
47060
e2741ec9ae36
prefer explicitly qualified exception List.Empty;
wenzelm
parents:
47005
diff
changeset
|
187 |
handle List.Empty => error "Unbalanced block parentheses"; |
17359 | 188 |
|
189 |
fun level (State st) = Stack.level st; |
|
190 |
||
191 |
fun assert_bottom b state = |
|
47065 | 192 |
let val b' = level state <= 2 in |
193 |
if b andalso not b' then error "Not at bottom of proof" |
|
194 |
else if not b andalso b' then error "Already at bottom of proof" |
|
17359 | 195 |
else state |
196 |
end; |
|
197 |
||
198 |
||
5820 | 199 |
(* context *) |
200 |
||
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
201 |
val context_of = #context o top; |
42360 | 202 |
val theory_of = Proof_Context.theory_of o context_of; |
5820 | 203 |
|
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
204 |
fun map_node_context f = |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
205 |
map_node (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
206 |
|
17359 | 207 |
fun map_context f = |
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
208 |
map_top (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
5820 | 209 |
|
17359 | 210 |
fun map_context_result f state = |
17859 | 211 |
f (context_of state) ||> (fn ctxt => map_context (K ctxt) state); |
5820 | 212 |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
213 |
fun map_context_bottom f = |
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
214 |
map_bottom (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
215 |
|
28278 | 216 |
fun map_contexts f = map_all (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
217 |
||
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
|
218 |
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
|
219 |
(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
|
220 |
|
42360 | 221 |
val bind_terms = map_context o Proof_Context.bind_terms; |
222 |
val put_thms = map_context oo Proof_Context.put_thms; |
|
5820 | 223 |
|
224 |
||
225 |
(* facts *) |
|
226 |
||
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
227 |
val get_facts = #facts o top; |
17359 | 228 |
|
229 |
fun the_facts state = |
|
230 |
(case get_facts state of SOME facts => facts |
|
18678 | 231 |
| NONE => error "No current facts available"); |
5820 | 232 |
|
9469 | 233 |
fun the_fact state = |
17359 | 234 |
(case the_facts state of [thm] => thm |
18678 | 235 |
| _ => error "Single theorem expected"); |
7605 | 236 |
|
17359 | 237 |
fun put_facts facts = |
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
238 |
map_top (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #> |
33386 | 239 |
put_thms true (Auto_Bind.thisN, facts); |
5820 | 240 |
|
47068 | 241 |
val set_facts = put_facts o SOME; |
242 |
val reset_facts = put_facts NONE; |
|
243 |
||
17359 | 244 |
fun these_factss more_facts (named_factss, state) = |
47068 | 245 |
(named_factss, state |> set_facts (maps snd named_factss @ more_facts)); |
5820 | 246 |
|
17359 | 247 |
fun export_facts inner outer = |
248 |
(case get_facts inner of |
|
47068 | 249 |
NONE => reset_facts outer |
17359 | 250 |
| SOME thms => |
251 |
thms |
|
42360 | 252 |
|> Proof_Context.export (context_of inner) (context_of outer) |
47068 | 253 |
|> (fn ths => set_facts ths outer)); |
5820 | 254 |
|
255 |
||
256 |
(* mode *) |
|
257 |
||
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
258 |
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
|
259 |
fun put_mode mode = map_top (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal)); |
5820 | 260 |
|
17359 | 261 |
val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove"); |
5820 | 262 |
|
263 |
fun assert_mode pred state = |
|
264 |
let val mode = get_mode state in |
|
265 |
if pred mode then state |
|
18678 | 266 |
else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode") |
5820 | 267 |
end; |
268 |
||
19308 | 269 |
val assert_forward = assert_mode (fn mode => mode = Forward); |
270 |
val assert_chain = assert_mode (fn mode => mode = Chain); |
|
271 |
val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain); |
|
272 |
val assert_backward = assert_mode (fn mode => mode = Backward); |
|
273 |
val assert_no_chain = assert_mode (fn mode => mode <> Chain); |
|
5820 | 274 |
|
17359 | 275 |
val enter_forward = put_mode Forward; |
276 |
val enter_chain = put_mode Chain; |
|
277 |
val enter_backward = put_mode Backward; |
|
5820 | 278 |
|
17359 | 279 |
|
280 |
(* current goal *) |
|
281 |
||
282 |
fun current_goal state = |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
283 |
(case top state of |
17359 | 284 |
{context, goal = SOME (Goal goal), ...} => (context, goal) |
47065 | 285 |
| _ => error "No current goal"); |
5820 | 286 |
|
17359 | 287 |
fun assert_current_goal g state = |
288 |
let val g' = can current_goal state in |
|
47065 | 289 |
if g andalso not g' then error "No goal in this block" |
290 |
else if not g andalso g' then error "Goal present in this block" |
|
17359 | 291 |
else state |
292 |
end; |
|
6776 | 293 |
|
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
294 |
fun put_goal goal = map_top (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal)); |
17359 | 295 |
|
47068 | 296 |
val set_goal = put_goal o SOME; |
297 |
val reset_goal = put_goal NONE; |
|
298 |
||
17859 | 299 |
val before_qed = #before_qed o #2 o current_goal; |
300 |
||
17359 | 301 |
|
302 |
(* nested goal *) |
|
5820 | 303 |
|
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
304 |
fun map_goal f g h (State (Node {context, facts, mode, goal = SOME goal}, node :: nodes)) = |
17359 | 305 |
let |
24543 | 306 |
val Goal {statement, messages, using, goal, before_qed, after_qed} = goal; |
307 |
val goal' = make_goal (g (statement, messages, using, goal, before_qed, after_qed)); |
|
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
308 |
val node' = map_node_context h node; |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
309 |
in State (make_node (f context, facts, mode, SOME goal'), node' :: nodes) end |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
310 |
| map_goal f g h (State (nd, node :: nodes)) = |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
311 |
let |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
312 |
val nd' = map_node_context f nd; |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
313 |
val State (node', nodes') = map_goal f g h (State (node, nodes)); |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
314 |
in State (nd', node' :: nodes') end |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
315 |
| map_goal _ _ _ state = state; |
5820 | 316 |
|
47068 | 317 |
fun provide_goal goal = map_goal I (fn (statement, _, using, _, before_qed, after_qed) => |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
318 |
(statement, [], using, goal, before_qed, after_qed)) I; |
19188 | 319 |
|
24543 | 320 |
fun goal_message msg = map_goal I (fn (statement, messages, using, goal, before_qed, after_qed) => |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
321 |
(statement, msg :: messages, using, goal, before_qed, after_qed)) I; |
24543 | 322 |
|
24556 | 323 |
fun using_facts using = map_goal I (fn (statement, _, _, goal, before_qed, after_qed) => |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
324 |
(statement, [], using, goal, before_qed, after_qed)) I; |
17359 | 325 |
|
326 |
local |
|
327 |
fun find i state = |
|
328 |
(case try current_goal state of |
|
329 |
SOME (ctxt, goal) => (ctxt, (i, goal)) |
|
18678 | 330 |
| NONE => find (i + 1) (close_block state handle ERROR _ => error "No goal present")); |
17359 | 331 |
in val find_goal = find 0 end; |
332 |
||
333 |
fun get_goal state = |
|
334 |
let val (ctxt, (_, {using, goal, ...})) = find_goal state |
|
335 |
in (ctxt, (using, goal)) end; |
|
5820 | 336 |
|
337 |
||
338 |
||
12423 | 339 |
(** pretty_state **) |
5820 | 340 |
|
15531 | 341 |
fun pretty_facts _ _ NONE = [] |
342 |
| pretty_facts s ctxt (SOME ths) = |
|
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32089
diff
changeset
|
343 |
[Pretty.big_list (s ^ "this:") (map (Display.pretty_thm ctxt) ths), Pretty.str ""]; |
6756 | 344 |
|
17359 | 345 |
fun pretty_state nr state = |
5820 | 346 |
let |
49011
9c68e43502ce
some support for registering forked proofs within Proof.state, using its bottom context;
wenzelm
parents:
47815
diff
changeset
|
347 |
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
|
348 |
val verbose = Config.get ctxt Proof_Context.verbose; |
5820 | 349 |
|
350 |
fun levels_up 0 = "" |
|
17359 | 351 |
| levels_up 1 = "1 level up" |
352 |
| levels_up i = string_of_int i ^ " levels up"; |
|
5820 | 353 |
|
11556 | 354 |
fun subgoals 0 = "" |
17359 | 355 |
| subgoals 1 = "1 subgoal" |
356 |
| subgoals n = string_of_int n ^ " subgoals"; |
|
357 |
||
358 |
fun description strs = |
|
28375 | 359 |
(case filter_out (fn s => s = "") strs of [] => "" |
17359 | 360 |
| strs' => enclose " (" ")" (commas strs')); |
12146 | 361 |
|
39051
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
wenzelm
parents:
38721
diff
changeset
|
362 |
fun prt_goal (SOME (_, (i, |
29416 | 363 |
{statement = ((_, pos), _, _), messages, using, goal, before_qed = _, after_qed = _}))) = |
17359 | 364 |
pretty_facts "using " ctxt |
365 |
(if mode <> Backward orelse null using then NONE else SOME using) @ |
|
21442 | 366 |
[Pretty.str ("goal" ^ |
367 |
description [levels_up (i div 2), subgoals (Thm.nprems_of goal)] ^ ":")] @ |
|
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
39051
diff
changeset
|
368 |
Goal_Display.pretty_goals ctxt goal @ |
25958 | 369 |
(map (fn msg => Position.setmp_thread_data pos msg ()) (rev messages)) |
17359 | 370 |
| prt_goal NONE = []; |
6848 | 371 |
|
17359 | 372 |
val prt_ctxt = |
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42496
diff
changeset
|
373 |
if verbose orelse mode = Forward then Proof_Context.pretty_context ctxt |
42360 | 374 |
else if mode = Backward then Proof_Context.pretty_ctxt ctxt |
7575 | 375 |
else []; |
17359 | 376 |
in |
377 |
[Pretty.str ("proof (" ^ mode_name mode ^ "): step " ^ string_of_int nr ^ |
|
42717
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
wenzelm
parents:
42496
diff
changeset
|
378 |
(if verbose then ", depth " ^ string_of_int (level state div 2 - 1) else "")), |
17359 | 379 |
Pretty.str ""] @ |
380 |
(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
|
381 |
(if verbose orelse mode = Forward then |
39051
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
wenzelm
parents:
38721
diff
changeset
|
382 |
pretty_facts "" ctxt facts @ prt_goal (try find_goal state) |
45facd8f358e
Proof.pretty_state: print everything in the foreground context to give users a chance to configure options, e.g. via "using [[show_consts]]";
wenzelm
parents:
38721
diff
changeset
|
383 |
else if mode = Chain then pretty_facts "picking " ctxt facts |
17359 | 384 |
else prt_goal (try find_goal state)) |
385 |
end; |
|
5820 | 386 |
|
12085 | 387 |
fun pretty_goals main state = |
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
39051
diff
changeset
|
388 |
let |
39129
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
wenzelm
parents:
39125
diff
changeset
|
389 |
val (_, (_, goal)) = get_goal state; |
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
wenzelm
parents:
39125
diff
changeset
|
390 |
val ctxt = context_of state |
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
39051
diff
changeset
|
391 |
|> Config.put Goal_Display.show_main_goal main |
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
39051
diff
changeset
|
392 |
|> Config.put Goal_Display.goals_total false; |
39129
976af4e27cde
recovered options for goal antiquotations from f45d332a90e3: actually pass context to Proof.pretty_goals (see also 45facd8f358e);
wenzelm
parents:
39125
diff
changeset
|
393 |
in Goal_Display.pretty_goals ctxt goal end; |
10320 | 394 |
|
5820 | 395 |
|
396 |
||
397 |
(** proof steps **) |
|
398 |
||
17359 | 399 |
(* refine via method *) |
5820 | 400 |
|
8234 | 401 |
local |
402 |
||
16146 | 403 |
fun goalN i = "goal" ^ string_of_int i; |
404 |
fun goals st = map goalN (1 upto Thm.nprems_of st); |
|
405 |
||
406 |
fun no_goal_cases st = map (rpair NONE) (goals st); |
|
407 |
||
408 |
fun goal_cases st = |
|
47815 | 409 |
Rule_Cases.make_common |
410 |
(Thm.theory_of_thm st, Thm.prop_of st) (map (rpair [] o rpair []) (goals st)); |
|
16146 | 411 |
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
412 |
fun apply_method current_context meth state = |
6848 | 413 |
let |
24556 | 414 |
val (goal_ctxt, (_, {statement, messages = _, using, goal, before_qed, after_qed})) = |
24543 | 415 |
find_goal state; |
25958 | 416 |
val ctxt = if current_context then context_of state else goal_ctxt; |
16146 | 417 |
in |
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
418 |
Method.apply meth ctxt using goal |> Seq.map (fn (meth_cases, goal') => |
6848 | 419 |
state |
16146 | 420 |
|> map_goal |
42360 | 421 |
(Proof_Context.add_cases false (no_goal_cases goal @ goal_cases goal') #> |
422 |
Proof_Context.add_cases true meth_cases) |
|
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
423 |
(K (statement, [], using, goal', before_qed, after_qed)) I) |
16146 | 424 |
end; |
5820 | 425 |
|
19188 | 426 |
fun select_goals n meth state = |
19224 | 427 |
state |
428 |
|> (#2 o #2 o get_goal) |
|
21687 | 429 |
|> ALLGOALS Goal.conjunction_tac |
19224 | 430 |
|> Seq.maps (fn goal => |
19188 | 431 |
state |
47068 | 432 |
|> Seq.lift provide_goal (Goal.extract 1 n goal |> Seq.maps (Goal.conjunction_tac 1)) |
19188 | 433 |
|> Seq.maps meth |
434 |
|> Seq.maps (fn state' => state' |
|
47068 | 435 |
|> Seq.lift provide_goal (Goal.retrofit 1 n (#2 (#2 (get_goal state'))) goal)) |
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
436 |
|> Seq.maps (apply_method true (K Method.succeed))); |
19188 | 437 |
|
17112 | 438 |
fun apply_text cc text state = |
439 |
let |
|
440 |
val thy = theory_of state; |
|
441 |
||
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
442 |
fun eval (Method.Basic m) = apply_method cc m |
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
443 |
| eval (Method.Source src) = apply_method cc (Method.method thy src) |
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
444 |
| eval (Method.Source_i src) = apply_method cc (Method.method_i thy src) |
17112 | 445 |
| eval (Method.Then txts) = Seq.EVERY (map eval txts) |
446 |
| eval (Method.Orelse txts) = Seq.FIRST (map eval txts) |
|
447 |
| eval (Method.Try txt) = Seq.TRY (eval txt) |
|
19188 | 448 |
| eval (Method.Repeat1 txt) = Seq.REPEAT1 (eval txt) |
449 |
| eval (Method.SelectGoals (n, txt)) = select_goals n (eval txt); |
|
17112 | 450 |
in eval text state end; |
451 |
||
8234 | 452 |
in |
453 |
||
17112 | 454 |
val refine = apply_text true; |
455 |
val refine_end = apply_text false; |
|
32856
92d9555ac790
clarified Proof.refine_insert -- always "refine" to apply standard method treatment (of conjunctions);
wenzelm
parents:
32786
diff
changeset
|
456 |
fun refine_insert ths = Seq.hd o refine (Method.Basic (K (Method.insert ths))); |
18908 | 457 |
|
8234 | 458 |
end; |
459 |
||
5820 | 460 |
|
17359 | 461 |
(* refine via sub-proof *) |
462 |
||
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
463 |
local |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
464 |
|
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
|
465 |
fun finish_tac 0 = K all_tac |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
466 |
| finish_tac n = |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
467 |
Goal.norm_hhf_tac THEN' |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
468 |
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
|
469 |
if can Logic.unprotect (Logic.strip_assums_concl goal) then |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
470 |
Tactic.etac Drule.protectI i THEN finish_tac (n - 1) i |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
471 |
else finish_tac (n - 1) (i + 1)); |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
472 |
|
20208 | 473 |
fun goal_tac rule = |
30557
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
474 |
Goal.norm_hhf_tac THEN' |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
475 |
Tactic.rtac rule THEN' |
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
476 |
finish_tac (Thm.nprems_of rule); |
11816 | 477 |
|
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
478 |
fun FINDGOAL tac st = |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
479 |
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
|
480 |
in find 1 (Thm.nprems_of st) st end; |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
481 |
|
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
482 |
in |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
483 |
|
19915 | 484 |
fun refine_goals print_rule inner raw_rules state = |
485 |
let |
|
486 |
val (outer, (_, goal)) = get_goal state; |
|
20208 | 487 |
fun refine rule st = (print_rule outer rule; FINDGOAL (goal_tac rule) st); |
19915 | 488 |
in |
489 |
raw_rules |
|
42360 | 490 |
|> Proof_Context.goal_export inner outer |
47068 | 491 |
|> (fn rules => Seq.lift provide_goal (EVERY (map refine rules) goal) state) |
19915 | 492 |
end; |
17359 | 493 |
|
46466
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
494 |
end; |
61c7214b4885
tuned signature, according to actual usage of these operations;
wenzelm
parents:
45666
diff
changeset
|
495 |
|
6932 | 496 |
|
17359 | 497 |
(* conclude_goal *) |
6932 | 498 |
|
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
499 |
fun conclude_goal ctxt goal propss = |
5820 | 500 |
let |
42360 | 501 |
val thy = Proof_Context.theory_of ctxt; |
24920 | 502 |
val string_of_term = Syntax.string_of_term ctxt; |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32089
diff
changeset
|
503 |
val string_of_thm = Display.string_of_thm ctxt; |
5820 | 504 |
|
17359 | 505 |
val ngoals = Thm.nprems_of goal; |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
506 |
val _ = ngoals = 0 orelse error (Pretty.string_of (Pretty.chunks |
39125
f45d332a90e3
pretty_goals: turned some global references and function arguments into configuration options (goals_limit = 10, goals_total = true, show_main_goal = false) depending on the context;
wenzelm
parents:
39051
diff
changeset
|
507 |
(Goal_Display.pretty_goals ctxt goal @ |
47065 | 508 |
[Pretty.str (string_of_int ngoals ^ " unsolved goal(s)")]))); |
20224
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
509 |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
510 |
val extra_hyps = Assumption.extra_hyps ctxt goal; |
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
511 |
val _ = null extra_hyps orelse |
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
512 |
error ("Additional hypotheses:\n" ^ cat_lines (map string_of_term extra_hyps)); |
5820 | 513 |
|
23418 | 514 |
fun lost_structure () = error ("Lost goal structure:\n" ^ string_of_thm goal); |
515 |
||
23782
4dd0ba632e40
Proof terms for meta-conjunctions are now normalized before
berghofe
parents:
23639
diff
changeset
|
516 |
val th = Goal.conclude |
23806 | 517 |
(if length (flat propss) > 1 then Thm.norm_proof goal else goal) |
23782
4dd0ba632e40
Proof terms for meta-conjunctions are now normalized before
berghofe
parents:
23639
diff
changeset
|
518 |
handle THM _ => lost_structure (); |
23418 | 519 |
val goal_propss = filter_out null propss; |
520 |
val results = |
|
521 |
Conjunction.elim_balanced (length goal_propss) th |
|
522 |
|> map2 Conjunction.elim_balanced (map length goal_propss) |
|
523 |
handle THM _ => lost_structure (); |
|
524 |
val _ = Unify.matches_list thy (flat goal_propss) (map Thm.prop_of (flat results)) orelse |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
525 |
error ("Proved a different theorem:\n" ^ string_of_thm th); |
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
526 |
val _ = Thm.check_shyps (Variable.sorts_of ctxt) th; |
23418 | 527 |
|
528 |
fun recover_result ([] :: pss) thss = [] :: recover_result pss thss |
|
529 |
| recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss |
|
530 |
| recover_result [] [] = [] |
|
531 |
| recover_result _ _ = lost_structure (); |
|
532 |
in recover_result propss results end; |
|
5820 | 533 |
|
534 |
||
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
|
535 |
(* 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
|
536 |
|
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
wenzelm
parents:
33165
diff
changeset
|
537 |
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
|
538 |
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
|
539 |
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
|
540 |
|
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
wenzelm
parents:
33165
diff
changeset
|
541 |
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
|
542 |
|
bd3f30da7bc1
replaced slightly odd get_goal/flat_goal by explicit goal views that correspond to the usual method categories;
wenzelm
parents:
33165
diff
changeset
|
543 |
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
|
544 |
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
|
545 |
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
|
546 |
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
|
547 |
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
|
548 |
|
38721
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
549 |
fun status_markup state = |
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
550 |
(case try goal state of |
45666 | 551 |
SOME {goal, ...} => Isabelle_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
|
552 |
| NONE => Markup.empty); |
ca8b14fa0d0d
added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents:
38333
diff
changeset
|
553 |
|
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
|
554 |
|
5820 | 555 |
|
556 |
(*** structured proof commands ***) |
|
557 |
||
17112 | 558 |
(** context elements **) |
5820 | 559 |
|
36324 | 560 |
(* let bindings *) |
5820 | 561 |
|
16813 | 562 |
local |
563 |
||
17359 | 564 |
fun gen_bind bind args state = |
5820 | 565 |
state |
566 |
|> assert_forward |
|
36324 | 567 |
|> map_context (bind true args #> snd) |
47068 | 568 |
|> reset_facts; |
5820 | 569 |
|
16813 | 570 |
in |
571 |
||
42360 | 572 |
val let_bind = gen_bind Proof_Context.match_bind_i; |
573 |
val let_bind_cmd = gen_bind Proof_Context.match_bind; |
|
5820 | 574 |
|
16813 | 575 |
end; |
576 |
||
5820 | 577 |
|
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
578 |
(* concrete syntax *) |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
579 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
580 |
local |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
581 |
|
36507
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
wenzelm
parents:
36505
diff
changeset
|
582 |
fun gen_write prep_arg mode args = |
c966a1aab860
'write': actually observe the proof structure (like 'let' or 'fix');
wenzelm
parents:
36505
diff
changeset
|
583 |
assert_forward |
42360 | 584 |
#> map_context (fn ctxt => ctxt |> Proof_Context.notation true mode (map (prep_arg ctxt) args)) |
47068 | 585 |
#> reset_facts; |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
586 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
587 |
in |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
588 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
589 |
val write = gen_write (K I); |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
590 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
591 |
val write_cmd = |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
592 |
gen_write (fn ctxt => fn (c, mx) => |
42360 | 593 |
(Proof_Context.read_const ctxt false (Mixfix.mixfixT mx) c, mx)); |
36505
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
594 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
595 |
end; |
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
596 |
|
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents:
36354
diff
changeset
|
597 |
|
17359 | 598 |
(* fix *) |
9196 | 599 |
|
12714 | 600 |
local |
601 |
||
30763
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
602 |
fun gen_fix prep_vars args = |
17359 | 603 |
assert_forward |
45597 | 604 |
#> map_context (fn ctxt => snd (Proof_Context.add_fixes (fst (prep_vars args ctxt)) ctxt)) |
47068 | 605 |
#> reset_facts; |
5820 | 606 |
|
16813 | 607 |
in |
608 |
||
45597 | 609 |
val fix = gen_fix Proof_Context.cert_vars; |
610 |
val fix_cmd = gen_fix Proof_Context.read_vars; |
|
5820 | 611 |
|
16813 | 612 |
end; |
613 |
||
5820 | 614 |
|
17359 | 615 |
(* assume etc. *) |
5820 | 616 |
|
16813 | 617 |
local |
618 |
||
17112 | 619 |
fun gen_assume asm prep_att exp args state = |
5820 | 620 |
state |
621 |
|> assert_forward |
|
47815 | 622 |
|> map_context_result (asm exp (Attrib.map_specs (map (prep_att (context_of state))) args)) |
17359 | 623 |
|> these_factss [] |> #2; |
6932 | 624 |
|
16813 | 625 |
in |
626 |
||
42360 | 627 |
val assm = gen_assume Proof_Context.add_assms_i (K I); |
47815 | 628 |
val assm_cmd = gen_assume Proof_Context.add_assms Attrib.attribute_cmd; |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
629 |
val assume = assm Assumption.assume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
630 |
val assume_cmd = assm_cmd Assumption.assume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
631 |
val presume = assm Assumption.presume_export; |
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
632 |
val presume_cmd = assm_cmd Assumption.presume_export; |
5820 | 633 |
|
16813 | 634 |
end; |
635 |
||
7271 | 636 |
|
17359 | 637 |
(* def *) |
11891 | 638 |
|
16813 | 639 |
local |
640 |
||
20913 | 641 |
fun gen_def prep_att prep_vars prep_binds args state = |
11891 | 642 |
let |
643 |
val _ = assert_forward state; |
|
20913 | 644 |
val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list; |
47815 | 645 |
val name_atts = map (apsnd (map (prep_att (context_of state)))) raw_name_atts; |
11891 | 646 |
in |
20913 | 647 |
state |
648 |
|> map_context_result (prep_vars (map (fn (x, mx) => (x, NONE, mx)) raw_vars)) |
|
649 |
|>> map (fn (x, _, mx) => (x, mx)) |
|
650 |
|-> (fn vars => |
|
651 |
map_context_result (prep_binds false (map swap raw_rhss)) |
|
35624 | 652 |
#-> (fn rhss => map_context_result (Local_Defs.add_defs (vars ~~ (name_atts ~~ rhss))))) |
47068 | 653 |
|-> (set_facts o map (#2 o #2)) |
11891 | 654 |
end; |
655 |
||
16813 | 656 |
in |
657 |
||
42360 | 658 |
val def = gen_def (K I) Proof_Context.cert_vars Proof_Context.match_bind_i; |
47815 | 659 |
val def_cmd = gen_def Attrib.attribute_cmd Proof_Context.read_vars Proof_Context.match_bind; |
11891 | 660 |
|
16813 | 661 |
end; |
662 |
||
11891 | 663 |
|
8374 | 664 |
|
17112 | 665 |
(** facts **) |
5820 | 666 |
|
17359 | 667 |
(* chain *) |
5820 | 668 |
|
24011 | 669 |
fun clean_facts ctxt = |
47068 | 670 |
set_facts (filter_out Thm.is_dummy (the_facts ctxt)) ctxt; |
24011 | 671 |
|
17359 | 672 |
val chain = |
673 |
assert_forward |
|
24011 | 674 |
#> clean_facts |
17359 | 675 |
#> enter_chain; |
5820 | 676 |
|
17359 | 677 |
fun chain_facts facts = |
47068 | 678 |
set_facts facts |
17359 | 679 |
#> chain; |
5820 | 680 |
|
681 |
||
17359 | 682 |
(* note etc. *) |
17112 | 683 |
|
28965 | 684 |
fun no_binding args = map (pair (Binding.empty, [])) args; |
17112 | 685 |
|
686 |
local |
|
687 |
||
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
688 |
fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state = |
17112 | 689 |
state |
690 |
|> assert_forward |
|
47815 | 691 |
|> map_context_result (fn ctxt => ctxt |> Proof_Context.note_thmss "" |
692 |
(Attrib.map_facts_refs (map (prep_atts ctxt)) (prep_fact ctxt) args)) |
|
17112 | 693 |
|> these_factss (more_facts state) |
17359 | 694 |
||> opt_chain |
695 |
|> opt_result; |
|
17112 | 696 |
|
697 |
in |
|
698 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
699 |
val note_thmss = gen_thmss (K []) I #2 (K I) (K I); |
47815 | 700 |
val note_thmss_cmd = gen_thmss (K []) I #2 Attrib.attribute_cmd Proof_Context.get_fact; |
17112 | 701 |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
702 |
val from_thmss = gen_thmss (K []) chain #2 (K I) (K I) o no_binding; |
47815 | 703 |
val from_thmss_cmd = |
704 |
gen_thmss (K []) chain #2 Attrib.attribute_cmd Proof_Context.get_fact o no_binding; |
|
17359 | 705 |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
706 |
val with_thmss = gen_thmss the_facts chain #2 (K I) (K I) o no_binding; |
47815 | 707 |
val with_thmss_cmd = |
708 |
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
|
709 |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
710 |
val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact); |
17359 | 711 |
|
17112 | 712 |
end; |
713 |
||
714 |
||
18548 | 715 |
(* using/unfolding *) |
17112 | 716 |
|
717 |
local |
|
718 |
||
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45327
diff
changeset
|
719 |
fun gen_using f g prep_att prep_fact args state = |
17112 | 720 |
state |
721 |
|> assert_backward |
|
21442 | 722 |
|> map_context_result |
47815 | 723 |
(fn ctxt => ctxt |> Proof_Context.note_thmss "" |
724 |
(Attrib.map_facts_refs (map (prep_att ctxt)) (prep_fact ctxt) (no_binding args))) |
|
18843 | 725 |
|> (fn (named_facts, state') => |
24556 | 726 |
state' |> map_goal I (fn (statement, _, using, goal, before_qed, after_qed) => |
18843 | 727 |
let |
728 |
val ctxt = context_of state'; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
729 |
val ths = maps snd named_facts; |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
730 |
in (statement, [], f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end) I); |
18548 | 731 |
|
24050 | 732 |
fun append_using _ ths using = using @ filter_out Thm.is_dummy ths; |
35624 | 733 |
fun unfold_using ctxt ths = map (Local_Defs.unfold ctxt ths); |
734 |
val unfold_goals = Local_Defs.unfold_goals; |
|
17112 | 735 |
|
736 |
in |
|
737 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
738 |
val using = gen_using append_using (K (K I)) (K I) (K I); |
47815 | 739 |
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
|
740 |
val unfolding = gen_using unfold_using unfold_goals (K I) (K I); |
47815 | 741 |
val unfolding_cmd = gen_using unfold_using unfold_goals Attrib.attribute_cmd Proof_Context.get_fact; |
17112 | 742 |
|
743 |
end; |
|
744 |
||
745 |
||
746 |
(* case *) |
|
747 |
||
748 |
local |
|
749 |
||
30419
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
750 |
fun qualified_binding a = |
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
751 |
Binding.qualify true (Long_Name.qualifier a) (Binding.name (Long_Name.base_name a)); |
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
752 |
|
17112 | 753 |
fun gen_invoke_case prep_att (name, xs, raw_atts) state = |
754 |
let |
|
47815 | 755 |
val atts = map (prep_att (context_of state)) raw_atts; |
19078 | 756 |
val (asms, state') = state |> map_context_result (fn ctxt => |
42360 | 757 |
ctxt |> Proof_Context.apply_case (Proof_Context.get_case ctxt name xs)); |
30419
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
758 |
val assumptions = asms |> map (fn (a, ts) => ((qualified_binding a, atts), map (rpair []) ts)); |
17112 | 759 |
in |
760 |
state' |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
761 |
|> assume assumptions |
33386 | 762 |
|> bind_terms Auto_Bind.no_facts |
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
763 |
|> `the_facts |-> (fn thms => note_thmss [((Binding.name name, []), [(thms, [])])]) |
17112 | 764 |
end; |
765 |
||
766 |
in |
|
767 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
36322
diff
changeset
|
768 |
val invoke_case = gen_invoke_case (K I); |
47815 | 769 |
val invoke_case_cmd = gen_invoke_case Attrib.attribute_cmd; |
17112 | 770 |
|
771 |
end; |
|
772 |
||
773 |
||
774 |
||
17359 | 775 |
(** proof structure **) |
776 |
||
777 |
(* blocks *) |
|
778 |
||
779 |
val begin_block = |
|
780 |
assert_forward |
|
781 |
#> open_block |
|
47068 | 782 |
#> reset_goal |
17359 | 783 |
#> open_block; |
784 |
||
785 |
val next_block = |
|
786 |
assert_forward |
|
787 |
#> close_block |
|
788 |
#> open_block |
|
47068 | 789 |
#> reset_goal |
790 |
#> reset_facts; |
|
17359 | 791 |
|
792 |
fun end_block state = |
|
793 |
state |
|
794 |
|> assert_forward |
|
40960 | 795 |
|> assert_bottom false |
17359 | 796 |
|> close_block |
797 |
|> assert_current_goal false |
|
798 |
|> close_block |
|
799 |
|> export_facts state; |
|
800 |
||
801 |
||
40960 | 802 |
(* global notepad *) |
803 |
||
804 |
val begin_notepad = |
|
805 |
init |
|
806 |
#> open_block |
|
807 |
#> map_context (Variable.set_body true) |
|
808 |
#> open_block; |
|
809 |
||
810 |
val end_notepad = |
|
811 |
assert_forward |
|
812 |
#> assert_bottom true |
|
813 |
#> close_block |
|
814 |
#> assert_current_goal false |
|
815 |
#> close_block |
|
816 |
#> context_of; |
|
817 |
||
818 |
||
17359 | 819 |
(* sub-proofs *) |
820 |
||
821 |
fun proof opt_text = |
|
822 |
assert_backward |
|
17859 | 823 |
#> refine (the_default Method.default_text opt_text) |
17359 | 824 |
#> Seq.map (using_facts [] #> enter_forward); |
825 |
||
23360 | 826 |
fun end_proof bot txt state = |
827 |
state |
|
828 |
|> assert_forward |
|
829 |
|> assert_bottom bot |
|
830 |
|> close_block |
|
831 |
|> assert_current_goal true |
|
832 |
|> using_facts [] |
|
833 |
|> `before_qed |-> (refine o the_default Method.succeed_text) |
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
834 |
|> Seq.maps (refine (Method.finish_text txt)); |
17359 | 835 |
|
29383 | 836 |
fun check_result msg sq = |
837 |
(case Seq.pull sq of |
|
838 |
NONE => error msg |
|
839 |
| SOME (s, _) => s); |
|
840 |
||
841 |
fun check_finish sq = check_result "Failed to finish proof" sq; |
|
842 |
||
17359 | 843 |
|
844 |
(* unstructured refinement *) |
|
845 |
||
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
846 |
fun defer i = assert_no_chain #> refine (Method.Basic (K (Method.defer i))); |
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
847 |
fun prefer i = assert_no_chain #> refine (Method.Basic (K (Method.prefer i))); |
17359 | 848 |
|
849 |
fun apply text = assert_backward #> refine text #> Seq.map (using_facts []); |
|
850 |
fun apply_end text = assert_forward #> refine_end text; |
|
851 |
||
852 |
||
853 |
||
17112 | 854 |
(** goals **) |
855 |
||
17359 | 856 |
(* generic goals *) |
857 |
||
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
858 |
local |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
859 |
|
36322
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
860 |
val is_var = |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
861 |
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
|
862 |
can (dest_Var o Logic.dest_term); |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
863 |
|
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
864 |
fun implicit_vars props = |
19846 | 865 |
let |
36354 | 866 |
val (var_props, _) = take_prefix is_var props; |
36322
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
867 |
val explicit_vars = fold Term.add_vars var_props []; |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
868 |
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
|
869 |
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
|
870 |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
871 |
fun refine_terms n = |
30510
4120fc59dd85
unified type Proof.method and pervasive METHOD combinators;
wenzelm
parents:
30419
diff
changeset
|
872 |
refine (Method.Basic (K (RAW_METHOD |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
873 |
(K (HEADGOAL (PRECISE_CONJUNCTS n |
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
874 |
(HEADGOAL (CONJUNCTS (ALLGOALS (rtac Drule.termI)))))))))) |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
875 |
#> Seq.hd; |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
876 |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
877 |
in |
17359 | 878 |
|
17859 | 879 |
fun generic_goal prepp kind before_qed after_qed raw_propp state = |
5820 | 880 |
let |
17359 | 881 |
val thy = theory_of state; |
23418 | 882 |
val cert = Thm.cterm_of thy; |
17359 | 883 |
val chaining = can assert_chain state; |
25958 | 884 |
val pos = Position.thread_data (); |
17359 | 885 |
|
886 |
val ((propss, after_ctxt), goal_state) = |
|
5936 | 887 |
state |
888 |
|> assert_forward_or_chain |
|
889 |
|> enter_forward |
|
17359 | 890 |
|> open_block |
45327 | 891 |
|> map_context_result (prepp raw_propp); |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
892 |
val props = flat propss; |
15703 | 893 |
|
36322
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
894 |
val vars = implicit_vars props; |
81cba3921ba5
goals: simplified handling of implicit variables -- removed obsolete warning;
wenzelm
parents:
35624
diff
changeset
|
895 |
val propss' = vars :: propss; |
23418 | 896 |
val goal_propss = filter_out null propss'; |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
897 |
val goal = |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
898 |
cert (Logic.mk_conjunction_balanced (map Logic.mk_conjunction_balanced goal_propss)) |
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
899 |
|> Thm.weaken_sorts (Variable.sorts_of (context_of goal_state)); |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
900 |
val statement = ((kind, pos), propss', Thm.term_of goal); |
18124 | 901 |
val after_qed' = after_qed |>> (fn after_local => |
902 |
fn results => map_context after_ctxt #> after_local results); |
|
5820 | 903 |
in |
17359 | 904 |
goal_state |
21727 | 905 |
|> map_context (init_context #> Variable.set_body true) |
47068 | 906 |
|> set_goal (make_goal (statement, [], [], Goal.init goal, before_qed, after_qed')) |
42360 | 907 |
|> map_context (Proof_Context.auto_bind_goal props) |
21565 | 908 |
|> chaining ? (`the_facts #-> using_facts) |
47068 | 909 |
|> reset_facts |
17359 | 910 |
|> open_block |
47068 | 911 |
|> reset_goal |
5820 | 912 |
|> enter_backward |
23418 | 913 |
|> not (null vars) ? refine_terms (length goal_propss) |
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
914 |
|> null props ? (refine (Method.Basic Method.assumption) #> Seq.hd) |
5820 | 915 |
end; |
916 |
||
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
917 |
fun generic_qed after_ctxt state = |
12503 | 918 |
let |
36354 | 919 |
val (goal_ctxt, {statement = (_, stmt, _), goal, after_qed, ...}) = current_goal state; |
8617
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
920 |
val outer_state = state |> close_block; |
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
921 |
val outer_ctxt = context_of outer_state; |
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
922 |
|
18503
841137f20307
goal/qed: proper treatment of two levels of conjunctions;
wenzelm
parents:
18475
diff
changeset
|
923 |
val props = |
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
924 |
flat (tl stmt) |
19915 | 925 |
|> Variable.exportT_terms goal_ctxt outer_ctxt; |
17359 | 926 |
val results = |
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
927 |
tl (conclude_goal goal_ctxt goal stmt) |
42360 | 928 |
|> burrow (Proof_Context.export goal_ctxt outer_ctxt); |
17359 | 929 |
in |
930 |
outer_state |
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
931 |
|> map_context (after_ctxt props) |
34239
e18b0f7b9902
after_qed: refrain from Position.setmp_thread_data, which causes duplication of results with several independent proof attempts;
wenzelm
parents:
33389
diff
changeset
|
932 |
|> pair (after_qed, results) |
17359 | 933 |
end; |
934 |
||
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
935 |
end; |
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
936 |
|
9469 | 937 |
|
17359 | 938 |
(* local goals *) |
939 |
||
17859 | 940 |
fun local_goal print_results prep_att prepp kind before_qed after_qed stmt state = |
17359 | 941 |
let |
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
942 |
val ((names, attss), propp) = |
47815 | 943 |
Attrib.map_specs (map (prep_att (context_of state))) stmt |> split_list |>> split_list; |
17359 | 944 |
|
18124 | 945 |
fun after_qed' results = |
18808 | 946 |
local_results ((names ~~ attss) ~~ results) |
17359 | 947 |
#-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit)) |
18124 | 948 |
#> after_qed results; |
5820 | 949 |
in |
17359 | 950 |
state |
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
951 |
|> generic_goal prepp kind before_qed (after_qed', K I) propp |
19900
21a99d88d925
ProofContext: moved variable operations to struct Variable;
wenzelm
parents:
19862
diff
changeset
|
952 |
|> tap (Variable.warn_extra_tfrees (context_of state) o context_of) |
5820 | 953 |
end; |
954 |
||
29383 | 955 |
fun local_qeds txt = |
956 |
end_proof false txt |
|
42360 | 957 |
#> Seq.map (generic_qed Proof_Context.auto_bind_facts #-> |
49062
7e31dfd99ce7
discontinued complicated/unreliable notion of recent proofs within context;
wenzelm
parents:
49042
diff
changeset
|
958 |
(fn ((after_qed, _), results) => after_qed results)); |
5820 | 959 |
|
29383 | 960 |
fun local_qed txt = local_qeds txt #> check_finish; |
961 |
||
5820 | 962 |
|
17359 | 963 |
(* global goals *) |
964 |
||
45327 | 965 |
fun prepp_auto_fixes prepp args = |
966 |
prepp args #> |
|
967 |
(fn ((propss, a), ctxt) => ((propss, a), (fold o fold) Variable.auto_fixes propss ctxt)); |
|
968 |
||
969 |
fun global_goal prepp before_qed after_qed propp = |
|
970 |
init #> |
|
971 |
generic_goal (prepp_auto_fixes prepp) "" before_qed (K I, after_qed) propp; |
|
17359 | 972 |
|
42360 | 973 |
val theorem = global_goal Proof_Context.bind_propp_schematic_i; |
974 |
val theorem_cmd = global_goal Proof_Context.bind_propp_schematic; |
|
12065 | 975 |
|
17359 | 976 |
fun global_qeds txt = |
977 |
end_proof true txt |
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
978 |
#> Seq.map (generic_qed (K I) #> (fn (((_, after_qed), results), state) => |
29383 | 979 |
after_qed results (context_of state))); |
17112 | 980 |
|
29383 | 981 |
fun global_qed txt = global_qeds txt #> check_finish; |
12959 | 982 |
|
5820 | 983 |
|
17359 | 984 |
(* concluding steps *) |
17112 | 985 |
|
29383 | 986 |
fun terminal_proof qed initial terminal = |
987 |
proof (SOME initial) #> Seq.maps (qed terminal) #> check_finish; |
|
17112 | 988 |
|
29383 | 989 |
fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true); |
17112 | 990 |
val local_default_proof = local_terminal_proof (Method.default_text, NONE); |
991 |
val local_immediate_proof = local_terminal_proof (Method.this_text, NONE); |
|
17359 | 992 |
fun local_skip_proof int = local_terminal_proof (Method.sorry_text int, NONE); |
29383 | 993 |
val local_done_proof = terminal_proof local_qeds Method.done_text (NONE, false); |
17112 | 994 |
|
29383 | 995 |
fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true); |
17112 | 996 |
val global_default_proof = global_terminal_proof (Method.default_text, NONE); |
997 |
val global_immediate_proof = global_terminal_proof (Method.this_text, NONE); |
|
17359 | 998 |
fun global_skip_proof int = global_terminal_proof (Method.sorry_text int, NONE); |
29383 | 999 |
val global_done_proof = terminal_proof global_qeds Method.done_text (NONE, false); |
5820 | 1000 |
|
6896 | 1001 |
|
17359 | 1002 |
(* common goal statements *) |
1003 |
||
1004 |
local |
|
1005 |
||
17859 | 1006 |
fun gen_have prep_att prepp before_qed after_qed stmt int = |
46728
85f8e3932712
display proof results as "state", to suppress odd squiggles in the Prover IDE (see also 9240be8c8c69);
wenzelm
parents:
46466
diff
changeset
|
1007 |
local_goal (Proof_Display.print_results Isabelle_Markup.state int) |
85f8e3932712
display proof results as "state", to suppress odd squiggles in the Prover IDE (see also 9240be8c8c69);
wenzelm
parents:
46466
diff
changeset
|
1008 |
prep_att prepp "have" before_qed after_qed stmt; |
6896 | 1009 |
|
17859 | 1010 |
fun gen_show prep_att prepp before_qed after_qed stmt int state = |
17359 | 1011 |
let |
32738 | 1012 |
val testing = Unsynchronized.ref false; |
1013 |
val rule = Unsynchronized.ref (NONE: thm option); |
|
17359 | 1014 |
fun fail_msg ctxt = |
29383 | 1015 |
"Local statement will fail to refine any pending goal" :: |
33389 | 1016 |
(case ! rule of NONE => [] | SOME th => [Proof_Display.string_of_rule ctxt "Failed" th]) |
17359 | 1017 |
|> cat_lines; |
6896 | 1018 |
|
17359 | 1019 |
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
|
1020 |
if ! testing then () |
85f8e3932712
display proof results as "state", to suppress odd squiggles in the Prover IDE (see also 9240be8c8c69);
wenzelm
parents:
46466
diff
changeset
|
1021 |
else Proof_Display.print_results Isabelle_Markup.state int ctxt res; |
17359 | 1022 |
fun print_rule ctxt th = |
1023 |
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
|
1024 |
else if int then |
45666 | 1025 |
writeln |
1026 |
(Markup.markup Isabelle_Markup.state (Proof_Display.string_of_rule ctxt "Successful" th)) |
|
17359 | 1027 |
else (); |
1028 |
val test_proof = |
|
29383 | 1029 |
try (local_skip_proof true) |
39616
8052101883c3
renamed setmp_noncritical to Unsynchronized.setmp to emphasize its meaning;
wenzelm
parents:
39232
diff
changeset
|
1030 |
|> Unsynchronized.setmp testing true |
42042 | 1031 |
|> Exn.interruptible_capture; |
6896 | 1032 |
|
18124 | 1033 |
fun after_qed' results = |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
1034 |
refine_goals print_rule (context_of state) (flat results) |
29383 | 1035 |
#> check_result "Failed to refine any pending goal" |
1036 |
#> after_qed results; |
|
17359 | 1037 |
in |
1038 |
state |
|
17859 | 1039 |
|> local_goal print_results prep_att prepp "show" before_qed after_qed' stmt |
21565 | 1040 |
|> int ? (fn goal_state => |
17359 | 1041 |
(case test_proof goal_state of |
43761
e72ba84ae58f
tuned signature -- corresponding to Scala version;
wenzelm
parents:
42717
diff
changeset
|
1042 |
Exn.Res (SOME _) => goal_state |
e72ba84ae58f
tuned signature -- corresponding to Scala version;
wenzelm
parents:
42717
diff
changeset
|
1043 |
| Exn.Res NONE => error (fail_msg (context_of goal_state)) |
42042 | 1044 |
| Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))]))) |
17359 | 1045 |
end; |
1046 |
||
1047 |
in |
|
1048 |
||
42360 | 1049 |
val have = gen_have (K I) Proof_Context.bind_propp_i; |
47815 | 1050 |
val have_cmd = gen_have Attrib.attribute_cmd Proof_Context.bind_propp; |
42360 | 1051 |
val show = gen_show (K I) Proof_Context.bind_propp_i; |
47815 | 1052 |
val show_cmd = gen_show Attrib.attribute_cmd Proof_Context.bind_propp; |
6896 | 1053 |
|
5820 | 1054 |
end; |
17359 | 1055 |
|
28410 | 1056 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1057 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1058 |
(** future proofs **) |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1059 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1060 |
(* relevant proof states *) |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1061 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1062 |
fun is_schematic t = |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1063 |
Term.exists_subterm Term.is_Var t orelse |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1064 |
Term.exists_type (Term.exists_subtype Term.is_TVar) t; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1065 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1066 |
fun schematic_goal state = |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1067 |
let val (_, (_, {statement = (_, _, prop), ...})) = find_goal state |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1068 |
in is_schematic prop end; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1069 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1070 |
fun is_relevant state = |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1071 |
(case try find_goal state of |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1072 |
NONE => true |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1073 |
| SOME (_, (_, {statement = (_, _, prop), goal, ...})) => |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1074 |
is_schematic prop orelse not (Logic.protect prop aconv Thm.concl_of goal)); |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1075 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1076 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1077 |
(* full proofs *) |
28410 | 1078 |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1079 |
local |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1080 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1081 |
fun future_proof done get_context fork_proof state = |
28410 | 1082 |
let |
29381
45d77aeb1608
future_terminal_proof: no fork for interactive mode, assert_backward;
wenzelm
parents:
29364
diff
changeset
|
1083 |
val _ = assert_backward state; |
28410 | 1084 |
val (goal_ctxt, (_, goal)) = find_goal state; |
32786 | 1085 |
val {statement as (kind, _, prop), messages, using, goal, before_qed, after_qed} = goal; |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
1086 |
val goal_tfrees = |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
1087 |
fold Term.add_tfrees |
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
1088 |
(prop :: map Thm.term_of (Assumption.all_assms_of goal_ctxt)) []; |
28410 | 1089 |
|
29383 | 1090 |
val _ = is_relevant state andalso error "Cannot fork relevant proof"; |
1091 |
||
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1092 |
val prop' = Logic.protect prop; |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1093 |
val statement' = (kind, [[], [prop']], prop'); |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1094 |
val goal' = Thm.adjust_maxidx_thm (Thm.maxidx_of goal) |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1095 |
(Drule.comp_no_flatten (goal, Thm.nprems_of goal) 1 Drule.protectI); |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1096 |
|
33386 | 1097 |
fun after_local' [[th]] = put_thms false (Auto_Bind.thisN, SOME [th]); |
42360 | 1098 |
fun after_global' [[th]] = Proof_Context.put_thms false (Auto_Bind.thisN, SOME [th]); |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1099 |
val after_qed' = (after_local', after_global'); |
42360 | 1100 |
val this_name = Proof_Context.full_name goal_ctxt (Binding.name Auto_Bind.thisN); |
28410 | 1101 |
|
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1102 |
val result_ctxt = |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1103 |
state |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1104 |
|> map_goal I (K (statement', messages, using, goal', before_qed, after_qed')) |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
1105 |
(fold (Variable.declare_typ o TFree) goal_tfrees) |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1106 |
|> fork_proof; |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1107 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1108 |
val future_thm = result_ctxt |> Future.map (fn (_, x) => |
42360 | 1109 |
Proof_Context.get_fact_single (get_context x) (Facts.named this_name)); |
32062
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
wenzelm
parents:
32061
diff
changeset
|
1110 |
val finished_goal = Goal.future_result goal_ctxt future_thm prop'; |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1111 |
val state' = |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1112 |
state |
47431
d9dd4a9f18fc
more precise declaration of goal_tfrees in forked proof state;
wenzelm
parents:
47416
diff
changeset
|
1113 |
|> map_goal I (K (statement, messages, using, finished_goal, NONE, after_qed)) I |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1114 |
|> done; |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1115 |
in (Future.map #1 result_ctxt, state') end; |
28410 | 1116 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1117 |
in |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1118 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1119 |
fun local_future_proof x = future_proof local_done_proof context_of x; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1120 |
fun global_future_proof x = future_proof global_done_proof I x; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1121 |
|
17359 | 1122 |
end; |
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1123 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1124 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1125 |
(* terminal proofs *) |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1126 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1127 |
local |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1128 |
|
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1129 |
fun future_terminal_proof n proof1 proof2 meths int state = |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1130 |
if (Goal.future_enabled_level 4 orelse Goal.future_enabled_nested n andalso not int) |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1131 |
andalso not (is_relevant state) |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1132 |
then |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1133 |
snd (proof2 (fn state' => |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1134 |
Goal.fork_name "Proof.future_terminal_proof" (fn () => ((), proof1 meths state'))) state) |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1135 |
else proof1 meths state; |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1136 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1137 |
in |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1138 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1139 |
fun local_future_terminal_proof x = |
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1140 |
future_terminal_proof 2 local_terminal_proof local_future_proof x; |
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1141 |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1142 |
fun global_future_terminal_proof x = |
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49011
diff
changeset
|
1143 |
future_terminal_proof 3 global_terminal_proof global_future_proof x; |
29350 | 1144 |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1145 |
end; |
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1146 |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1147 |
end; |
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1148 |