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