| author | wenzelm |
| Wed, 14 Oct 2009 16:08:51 +0200 | |
| changeset 32930 | 5b827eadb64c |
| parent 32856 | 92d9555ac790 |
| child 33031 | b75c35574e04 |
| 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 |
|
| 23639 | 10 |
type context = Context.proof |
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 |
| 28278 | 19 |
val map_contexts: (context -> context) -> state -> state |
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30557
diff
changeset
|
20 |
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
|
21 |
val put_thms: bool -> string * thm list option -> state -> state |
| 6091 | 22 |
val the_facts: state -> thm list |
| 9469 | 23 |
val the_fact: state -> thm |
| 17450 | 24 |
val put_facts: thm list option -> state -> state |
| 6891 | 25 |
val assert_forward: state -> state |
| 17359 | 26 |
val assert_chain: state -> state |
| 9469 | 27 |
val assert_forward_or_chain: state -> state |
| 5820 | 28 |
val assert_backward: state -> state |
| 8206 | 29 |
val assert_no_chain: state -> state |
| 5820 | 30 |
val enter_forward: state -> state |
| 24543 | 31 |
val goal_message: (unit -> Pretty.T) -> state -> state |
| 17359 | 32 |
val get_goal: state -> context * (thm list * thm) |
| 32738 | 33 |
val show_main_goal: bool Unsynchronized.ref |
34 |
val verbose: bool Unsynchronized.ref |
|
| 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 |
|
32771
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
40 |
val flat_goal: state -> Proof.context * thm |
| 20208 | 41 |
val goal_tac: thm -> int -> tactic |
| 17359 | 42 |
val refine_goals: (context -> thm -> unit) -> context -> thm list -> state -> state Seq.seq |
| 5936 | 43 |
val match_bind: (string list * string) list -> state -> state |
44 |
val match_bind_i: (term list * term) list -> state -> state |
|
|
8617
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
45 |
val let_bind: (string list * string) list -> state -> state |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
46 |
val let_bind_i: (term list * term) list -> state -> state |
| 29581 | 47 |
val fix: (binding * string option * mixfix) list -> state -> state |
48 |
val fix_i: (binding * typ option * mixfix) list -> state -> state |
|
|
20224
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
49 |
val assm: Assumption.export -> |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
50 |
(Attrib.binding * (string * string list) list) list -> state -> state |
|
20224
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
51 |
val assm_i: Assumption.export -> |
| 30211 | 52 |
(Thm.binding * (term * term list) list) list -> state -> state |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
53 |
val assume: (Attrib.binding * (string * string list) list) list -> state -> state |
| 30211 | 54 |
val assume_i: (Thm.binding * (term * term list) list) list -> state -> state |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
55 |
val presume: (Attrib.binding * (string * string list) list) list -> state -> state |
| 30211 | 56 |
val presume_i: (Thm.binding * (term * term list) list) list -> state -> state |
57 |
val def: (Attrib.binding * ((binding * mixfix) * (string * string list))) list -> state -> state |
|
58 |
val def_i: (Thm.binding * ((binding * mixfix) * (term * term list))) list -> state -> state |
|
| 17359 | 59 |
val chain: state -> state |
60 |
val chain_facts: thm list -> state -> state |
|
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26251
diff
changeset
|
61 |
val get_thmss: state -> (Facts.ref * Attrib.src list) list -> thm list |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
62 |
val note_thmss: (Attrib.binding * (Facts.ref * Attrib.src list) list) list -> state -> state |
| 30211 | 63 |
val note_thmss_i: (Thm.binding * (thm list * attribute list) list) list -> state -> state |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26251
diff
changeset
|
64 |
val from_thmss: ((Facts.ref * Attrib.src list) list) list -> state -> state |
| 18728 | 65 |
val from_thmss_i: ((thm list * attribute list) list) list -> state -> state |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26251
diff
changeset
|
66 |
val with_thmss: ((Facts.ref * Attrib.src list) list) list -> state -> state |
| 18728 | 67 |
val with_thmss_i: ((thm list * attribute list) list) list -> state -> state |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26251
diff
changeset
|
68 |
val using: ((Facts.ref * Attrib.src list) list) list -> state -> state |
| 18728 | 69 |
val using_i: ((thm list * attribute list) list) list -> state -> state |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26251
diff
changeset
|
70 |
val unfolding: ((Facts.ref * Attrib.src list) list) list -> state -> state |
| 18728 | 71 |
val unfolding_i: ((thm list * attribute list) list) list -> state -> state |
| 17112 | 72 |
val invoke_case: string * string option list * Attrib.src list -> state -> state |
| 18728 | 73 |
val invoke_case_i: string * string option list * attribute list -> state -> state |
| 17359 | 74 |
val begin_block: state -> state |
75 |
val next_block: state -> state |
|
| 20309 | 76 |
val end_block: state -> state |
| 17112 | 77 |
val proof: Method.text option -> state -> state Seq.seq |
78 |
val defer: int option -> state -> state Seq.seq |
|
79 |
val prefer: int -> state -> state Seq.seq |
|
80 |
val apply: Method.text -> state -> state Seq.seq |
|
81 |
val apply_end: Method.text -> state -> state Seq.seq |
|
| 17359 | 82 |
val local_goal: (context -> ((string * string) * (string * thm list) list) -> unit) -> |
| 18728 | 83 |
(theory -> 'a -> attribute) -> |
| 17359 | 84 |
(context * 'b list -> context * (term list list * (context -> context))) -> |
| 29383 | 85 |
string -> Method.text option -> (thm list list -> state -> state) -> |
| 29581 | 86 |
((binding * 'a list) * 'b) list -> state -> state |
| 29383 | 87 |
val local_qed: Method.text option * bool -> state -> state |
| 21442 | 88 |
val theorem: Method.text option -> (thm list list -> context -> context) -> |
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
89 |
(string * string list) list list -> context -> state |
| 21442 | 90 |
val theorem_i: Method.text option -> (thm list list -> context -> context) -> |
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
91 |
(term * term list) list list -> context -> state |
|
20363
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
92 |
val global_qed: Method.text option * bool -> state -> context |
| 29383 | 93 |
val local_terminal_proof: Method.text * Method.text option -> state -> state |
94 |
val local_default_proof: state -> state |
|
95 |
val local_immediate_proof: state -> state |
|
96 |
val local_skip_proof: bool -> state -> state |
|
97 |
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
|
98 |
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
|
99 |
val global_default_proof: state -> context |
|
f34c5dbe74d5
global goals/qeds: after_qed operates on Proof.context (potentially local_theory);
wenzelm
parents:
20341
diff
changeset
|
100 |
val global_immediate_proof: state -> context |
| 29383 | 101 |
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
|
102 |
val global_done_proof: state -> context |
| 29383 | 103 |
val have: Method.text option -> (thm list list -> state -> state) -> |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
104 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> state |
| 29383 | 105 |
val have_i: Method.text option -> (thm list list -> state -> state) -> |
| 30211 | 106 |
(Thm.binding * (term * term list) list) list -> bool -> state -> state |
| 29383 | 107 |
val show: Method.text option -> (thm list list -> state -> state) -> |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28083
diff
changeset
|
108 |
(Attrib.binding * (string * string list) list) list -> bool -> state -> state |
| 29383 | 109 |
val show_i: Method.text option -> (thm list list -> state -> state) -> |
| 30211 | 110 |
(Thm.binding * (term * term 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
|
111 |
val schematic_goal: state -> bool |
| 28452 | 112 |
val is_relevant: state -> bool |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
113 |
val local_future_proof: (state -> ('a * state) Future.future) ->
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
114 |
state -> 'a Future.future * state |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
115 |
val global_future_proof: (state -> ('a * Proof.context) Future.future) ->
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
116 |
state -> 'a Future.future * context |
|
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 |
||
| 20309 | 124 |
type context = Context.proof; |
| 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 = |
165 |
ProofContext.set_stmt true #> ProofContext.reset_naming; |
|
166 |
||
|
21466
6ffb8f455b84
init: enter inner statement mode, which prevents local notes from being named internally;
wenzelm
parents:
21451
diff
changeset
|
167 |
fun init ctxt = |
| 21727 | 168 |
State (Stack.init (make_node (init_context ctxt, NONE, Forward, NONE))); |
| 5820 | 169 |
|
| 17359 | 170 |
fun current (State st) = Stack.top st |> (fn Node node => node); |
| 21274 | 171 |
fun map_current f (State st) = State (Stack.map_top (map_node f) st); |
| 28278 | 172 |
fun map_all f (State st) = State (Stack.map_all (map_node f) st); |
| 12045 | 173 |
|
| 5820 | 174 |
|
175 |
||
176 |
(** basic proof state operations **) |
|
177 |
||
| 17359 | 178 |
(* block structure *) |
179 |
||
180 |
fun open_block (State st) = State (Stack.push st); |
|
181 |
||
| 18678 | 182 |
fun close_block (State st) = State (Stack.pop st) |
183 |
handle Empty => error "Unbalanced block parentheses"; |
|
| 17359 | 184 |
|
185 |
fun level (State st) = Stack.level st; |
|
186 |
||
187 |
fun assert_bottom b state = |
|
188 |
let val b' = (level state <= 2) in |
|
| 18678 | 189 |
if b andalso not b' then error "Not at bottom of proof!" |
190 |
else if not b andalso b' then error "Already at bottom of proof!" |
|
| 17359 | 191 |
else state |
192 |
end; |
|
193 |
||
194 |
||
| 5820 | 195 |
(* context *) |
196 |
||
| 17359 | 197 |
val context_of = #context o current; |
| 5820 | 198 |
val theory_of = ProofContext.theory_of o context_of; |
199 |
||
| 17359 | 200 |
fun map_context f = |
201 |
map_current (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
|
| 5820 | 202 |
|
| 17359 | 203 |
fun map_context_result f state = |
| 17859 | 204 |
f (context_of state) ||> (fn ctxt => map_context (K ctxt) state); |
| 5820 | 205 |
|
| 28278 | 206 |
fun map_contexts f = map_all (fn (ctxt, facts, mode, goal) => (f ctxt, facts, mode, goal)); |
207 |
||
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30557
diff
changeset
|
208 |
val bind_terms = map_context o ProofContext.bind_terms; |
|
26251
b8c6259d366b
put_facts: do_props, i.e. facts are indexed by proposition again;
wenzelm
parents:
25958
diff
changeset
|
209 |
val put_thms = map_context oo ProofContext.put_thms; |
| 5820 | 210 |
|
211 |
||
212 |
(* facts *) |
|
213 |
||
| 17359 | 214 |
val get_facts = #facts o current; |
215 |
||
216 |
fun the_facts state = |
|
217 |
(case get_facts state of SOME facts => facts |
|
| 18678 | 218 |
| NONE => error "No current facts available"); |
| 5820 | 219 |
|
| 9469 | 220 |
fun the_fact state = |
| 17359 | 221 |
(case the_facts state of [thm] => thm |
| 18678 | 222 |
| _ => error "Single theorem expected"); |
| 7605 | 223 |
|
| 17359 | 224 |
fun put_facts facts = |
| 19078 | 225 |
map_current (fn (ctxt, _, mode, goal) => (ctxt, facts, mode, goal)) #> |
|
26251
b8c6259d366b
put_facts: do_props, i.e. facts are indexed by proposition again;
wenzelm
parents:
25958
diff
changeset
|
226 |
put_thms true (AutoBind.thisN, facts); |
| 5820 | 227 |
|
| 17359 | 228 |
fun these_factss more_facts (named_factss, state) = |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
229 |
(named_factss, state |> put_facts (SOME (maps snd named_factss @ more_facts))); |
| 5820 | 230 |
|
| 17359 | 231 |
fun export_facts inner outer = |
232 |
(case get_facts inner of |
|
| 20309 | 233 |
NONE => put_facts NONE outer |
| 17359 | 234 |
| SOME thms => |
235 |
thms |
|
| 20309 | 236 |
|> ProofContext.export (context_of inner) (context_of outer) |
237 |
|> (fn ths => put_facts (SOME ths) outer)); |
|
| 5820 | 238 |
|
239 |
||
240 |
(* mode *) |
|
241 |
||
| 17359 | 242 |
val get_mode = #mode o current; |
| 5820 | 243 |
fun put_mode mode = map_current (fn (ctxt, facts, _, goal) => (ctxt, facts, mode, goal)); |
244 |
||
| 17359 | 245 |
val mode_name = (fn Forward => "state" | Chain => "chain" | Backward => "prove"); |
| 5820 | 246 |
|
247 |
fun assert_mode pred state = |
|
248 |
let val mode = get_mode state in |
|
249 |
if pred mode then state |
|
| 18678 | 250 |
else error ("Illegal application of proof command in " ^ quote (mode_name mode) ^ " mode")
|
| 5820 | 251 |
end; |
252 |
||
| 19308 | 253 |
val assert_forward = assert_mode (fn mode => mode = Forward); |
254 |
val assert_chain = assert_mode (fn mode => mode = Chain); |
|
255 |
val assert_forward_or_chain = assert_mode (fn mode => mode = Forward orelse mode = Chain); |
|
256 |
val assert_backward = assert_mode (fn mode => mode = Backward); |
|
257 |
val assert_no_chain = assert_mode (fn mode => mode <> Chain); |
|
| 5820 | 258 |
|
| 17359 | 259 |
val enter_forward = put_mode Forward; |
260 |
val enter_chain = put_mode Chain; |
|
261 |
val enter_backward = put_mode Backward; |
|
| 5820 | 262 |
|
| 17359 | 263 |
|
264 |
(* current goal *) |
|
265 |
||
266 |
fun current_goal state = |
|
267 |
(case current state of |
|
268 |
{context, goal = SOME (Goal goal), ...} => (context, goal)
|
|
| 18678 | 269 |
| _ => error "No current goal!"); |
| 5820 | 270 |
|
| 17359 | 271 |
fun assert_current_goal g state = |
272 |
let val g' = can current_goal state in |
|
| 18678 | 273 |
if g andalso not g' then error "No goal in this block!" |
274 |
else if not g andalso g' then error "Goal present in this block!" |
|
| 17359 | 275 |
else state |
276 |
end; |
|
| 6776 | 277 |
|
| 17359 | 278 |
fun put_goal goal = map_current (fn (ctxt, using, mode, _) => (ctxt, using, mode, goal)); |
279 |
||
| 17859 | 280 |
val before_qed = #before_qed o #2 o current_goal; |
281 |
||
| 17359 | 282 |
|
283 |
(* nested goal *) |
|
| 5820 | 284 |
|
| 17359 | 285 |
fun map_goal f g (State (Node {context, facts, mode, goal = SOME goal}, nodes)) =
|
286 |
let |
|
| 24543 | 287 |
val Goal {statement, messages, using, goal, before_qed, after_qed} = goal;
|
288 |
val goal' = make_goal (g (statement, messages, using, goal, before_qed, after_qed)); |
|
| 17359 | 289 |
in State (make_node (f context, facts, mode, SOME goal'), nodes) end |
290 |
| map_goal f g (State (nd, node :: nodes)) = |
|
291 |
let val State (node', nodes') = map_goal f g (State (node, nodes)) |
|
292 |
in map_context f (State (nd, node' :: nodes')) end |
|
293 |
| map_goal _ _ state = state; |
|
| 5820 | 294 |
|
| 24556 | 295 |
fun set_goal goal = map_goal I (fn (statement, _, using, _, before_qed, after_qed) => |
296 |
(statement, [], using, goal, before_qed, after_qed)); |
|
| 19188 | 297 |
|
| 24543 | 298 |
fun goal_message msg = map_goal I (fn (statement, messages, using, goal, before_qed, after_qed) => |
299 |
(statement, msg :: messages, using, goal, before_qed, after_qed)); |
|
300 |
||
| 24556 | 301 |
fun using_facts using = map_goal I (fn (statement, _, _, goal, before_qed, after_qed) => |
302 |
(statement, [], using, goal, before_qed, after_qed)); |
|
| 17359 | 303 |
|
304 |
local |
|
305 |
fun find i state = |
|
306 |
(case try current_goal state of |
|
307 |
SOME (ctxt, goal) => (ctxt, (i, goal)) |
|
| 18678 | 308 |
| NONE => find (i + 1) (close_block state handle ERROR _ => error "No goal present")); |
| 17359 | 309 |
in val find_goal = find 0 end; |
310 |
||
311 |
fun get_goal state = |
|
312 |
let val (ctxt, (_, {using, goal, ...})) = find_goal state
|
|
313 |
in (ctxt, (using, goal)) end; |
|
| 5820 | 314 |
|
315 |
||
316 |
||
| 12423 | 317 |
(** pretty_state **) |
| 5820 | 318 |
|
| 32738 | 319 |
val show_main_goal = Unsynchronized.ref false; |
| 16539 | 320 |
val verbose = ProofContext.verbose; |
| 13698 | 321 |
|
| 15531 | 322 |
fun pretty_facts _ _ NONE = [] |
323 |
| 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
|
324 |
[Pretty.big_list (s ^ "this:") (map (Display.pretty_thm ctxt) ths), Pretty.str ""]; |
| 6756 | 325 |
|
| 17359 | 326 |
fun pretty_state nr state = |
| 5820 | 327 |
let |
| 17359 | 328 |
val {context, facts, mode, goal = _} = current state;
|
| 5820 | 329 |
|
330 |
fun levels_up 0 = "" |
|
| 17359 | 331 |
| levels_up 1 = "1 level up" |
332 |
| levels_up i = string_of_int i ^ " levels up"; |
|
| 5820 | 333 |
|
| 11556 | 334 |
fun subgoals 0 = "" |
| 17359 | 335 |
| subgoals 1 = "1 subgoal" |
336 |
| subgoals n = string_of_int n ^ " subgoals"; |
|
337 |
||
338 |
fun description strs = |
|
| 28375 | 339 |
(case filter_out (fn s => s = "") strs of [] => "" |
| 17359 | 340 |
| strs' => enclose " (" ")" (commas strs'));
|
| 12146 | 341 |
|
| 29416 | 342 |
fun prt_goal (SOME (ctxt, (i, |
343 |
{statement = ((_, pos), _, _), messages, using, goal, before_qed = _, after_qed = _}))) =
|
|
| 17359 | 344 |
pretty_facts "using " ctxt |
345 |
(if mode <> Backward orelse null using then NONE else SOME using) @ |
|
| 21442 | 346 |
[Pretty.str ("goal" ^
|
347 |
description [levels_up (i div 2), subgoals (Thm.nprems_of goal)] ^ ":")] @ |
|
| 32187 | 348 |
Goal_Display.pretty_goals ctxt |
|
32167
d32817dda0e6
Display_Goal.pretty_goals: always Markup.subgoal, clarified options;
wenzelm
parents:
32145
diff
changeset
|
349 |
{total = true, main = ! show_main_goal, maxgoals = ! Display.goals_limit} goal @
|
| 25958 | 350 |
(map (fn msg => Position.setmp_thread_data pos msg ()) (rev messages)) |
| 17359 | 351 |
| prt_goal NONE = []; |
| 6848 | 352 |
|
| 17359 | 353 |
val prt_ctxt = |
354 |
if ! verbose orelse mode = Forward then ProofContext.pretty_context context |
|
| 18670 | 355 |
else if mode = Backward then ProofContext.pretty_ctxt context |
| 7575 | 356 |
else []; |
| 17359 | 357 |
in |
358 |
[Pretty.str ("proof (" ^ mode_name mode ^ "): step " ^ string_of_int nr ^
|
|
359 |
(if ! verbose then ", depth " ^ string_of_int (level state div 2 - 1) else "")), |
|
360 |
Pretty.str ""] @ |
|
361 |
(if null prt_ctxt then [] else prt_ctxt @ [Pretty.str ""]) @ |
|
362 |
(if ! verbose orelse mode = Forward then |
|
363 |
pretty_facts "" context facts @ prt_goal (try find_goal state) |
|
364 |
else if mode = Chain then pretty_facts "picking " context facts |
|
365 |
else prt_goal (try find_goal state)) |
|
366 |
end; |
|
| 5820 | 367 |
|
| 12085 | 368 |
fun pretty_goals main state = |
|
32167
d32817dda0e6
Display_Goal.pretty_goals: always Markup.subgoal, clarified options;
wenzelm
parents:
32145
diff
changeset
|
369 |
let val (ctxt, (_, goal)) = get_goal state in |
| 32187 | 370 |
Goal_Display.pretty_goals ctxt |
|
32167
d32817dda0e6
Display_Goal.pretty_goals: always Markup.subgoal, clarified options;
wenzelm
parents:
32145
diff
changeset
|
371 |
{total = false, main = main, maxgoals = ! Display.goals_limit} goal
|
|
d32817dda0e6
Display_Goal.pretty_goals: always Markup.subgoal, clarified options;
wenzelm
parents:
32145
diff
changeset
|
372 |
end; |
| 10320 | 373 |
|
| 5820 | 374 |
|
375 |
||
376 |
(** proof steps **) |
|
377 |
||
| 17359 | 378 |
(* refine via method *) |
| 5820 | 379 |
|
| 8234 | 380 |
local |
381 |
||
| 16146 | 382 |
fun goalN i = "goal" ^ string_of_int i; |
383 |
fun goals st = map goalN (1 upto Thm.nprems_of st); |
|
384 |
||
385 |
fun no_goal_cases st = map (rpair NONE) (goals st); |
|
386 |
||
387 |
fun goal_cases st = |
|
| 18607 | 388 |
RuleCases.make_common true (Thm.theory_of_thm st, Thm.prop_of st) (map (rpair []) (goals st)); |
| 16146 | 389 |
|
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
390 |
fun apply_method current_context meth state = |
| 6848 | 391 |
let |
| 24556 | 392 |
val (goal_ctxt, (_, {statement, messages = _, using, goal, before_qed, after_qed})) =
|
| 24543 | 393 |
find_goal state; |
| 25958 | 394 |
val ctxt = if current_context then context_of state else goal_ctxt; |
| 16146 | 395 |
in |
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
396 |
Method.apply meth ctxt using goal |> Seq.map (fn (meth_cases, goal') => |
| 6848 | 397 |
state |
| 16146 | 398 |
|> map_goal |
| 18475 | 399 |
(ProofContext.add_cases false (no_goal_cases goal @ goal_cases goal') #> |
400 |
ProofContext.add_cases true meth_cases) |
|
| 24556 | 401 |
(K (statement, [], using, goal', before_qed, after_qed))) |
| 16146 | 402 |
end; |
| 5820 | 403 |
|
| 19188 | 404 |
fun select_goals n meth state = |
| 19224 | 405 |
state |
406 |
|> (#2 o #2 o get_goal) |
|
| 21687 | 407 |
|> ALLGOALS Goal.conjunction_tac |
| 19224 | 408 |
|> Seq.maps (fn goal => |
| 19188 | 409 |
state |
| 21687 | 410 |
|> Seq.lift set_goal (Goal.extract 1 n goal |> Seq.maps (Goal.conjunction_tac 1)) |
| 19188 | 411 |
|> Seq.maps meth |
412 |
|> Seq.maps (fn state' => state' |
|
413 |
|> Seq.lift set_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
|
414 |
|> Seq.maps (apply_method true (K Method.succeed))); |
| 19188 | 415 |
|
| 17112 | 416 |
fun apply_text cc text state = |
417 |
let |
|
418 |
val thy = theory_of state; |
|
419 |
||
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
420 |
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
|
421 |
| 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
|
422 |
| eval (Method.Source_i src) = apply_method cc (Method.method_i thy src) |
| 17112 | 423 |
| eval (Method.Then txts) = Seq.EVERY (map eval txts) |
424 |
| eval (Method.Orelse txts) = Seq.FIRST (map eval txts) |
|
425 |
| eval (Method.Try txt) = Seq.TRY (eval txt) |
|
| 19188 | 426 |
| eval (Method.Repeat1 txt) = Seq.REPEAT1 (eval txt) |
427 |
| eval (Method.SelectGoals (n, txt)) = select_goals n (eval txt); |
|
| 17112 | 428 |
in eval text state end; |
429 |
||
| 8234 | 430 |
in |
431 |
||
| 17112 | 432 |
val refine = apply_text true; |
433 |
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
|
434 |
fun refine_insert ths = Seq.hd o refine (Method.Basic (K (Method.insert ths))); |
| 18908 | 435 |
|
| 8234 | 436 |
end; |
437 |
||
|
32771
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
438 |
fun flat_goal state = |
|
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
439 |
let |
|
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
440 |
val (_, (using, _)) = get_goal state; |
|
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
441 |
val (ctxt, (_, goal)) = get_goal (refine_insert using state); |
|
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
442 |
in (ctxt, goal) end; |
|
995b9c763c66
replaced chained_goal by slightly more appropriate flat_goal;
wenzelm
parents:
32769
diff
changeset
|
443 |
|
| 5820 | 444 |
|
| 17359 | 445 |
(* refine via sub-proof *) |
446 |
||
|
30557
a28d83e903ce
goal_tac: finish marked assumptions from left to right -- corresponds better with the strategy of etac, with significant performance gains in some situations;
wenzelm
parents:
30510
diff
changeset
|
447 |
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
|
448 |
| 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
|
449 |
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
|
450 |
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
|
451 |
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
|
452 |
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
|
453 |
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
|
454 |
|
| 20208 | 455 |
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
|
456 |
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
|
457 |
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
|
458 |
finish_tac (Thm.nprems_of rule); |
| 11816 | 459 |
|
| 19915 | 460 |
fun refine_goals print_rule inner raw_rules state = |
461 |
let |
|
462 |
val (outer, (_, goal)) = get_goal state; |
|
| 20208 | 463 |
fun refine rule st = (print_rule outer rule; FINDGOAL (goal_tac rule) st); |
| 19915 | 464 |
in |
465 |
raw_rules |
|
| 20309 | 466 |
|> ProofContext.goal_export inner outer |
467 |
|> (fn rules => Seq.lift set_goal (EVERY (map refine rules) goal) state) |
|
| 19915 | 468 |
end; |
| 17359 | 469 |
|
| 6932 | 470 |
|
| 17359 | 471 |
(* conclude_goal *) |
| 6932 | 472 |
|
|
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
473 |
fun conclude_goal ctxt goal propss = |
| 5820 | 474 |
let |
|
28627
63663cfa297c
conclude_goal: precise goal context, include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28458
diff
changeset
|
475 |
val thy = ProofContext.theory_of ctxt; |
| 24920 | 476 |
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
|
477 |
val string_of_thm = Display.string_of_thm ctxt; |
| 5820 | 478 |
|
| 17359 | 479 |
val ngoals = Thm.nprems_of goal; |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
480 |
val _ = ngoals = 0 orelse error (Pretty.string_of (Pretty.chunks |
| 32187 | 481 |
(Goal_Display.pretty_goals ctxt |
|
32167
d32817dda0e6
Display_Goal.pretty_goals: always Markup.subgoal, clarified options;
wenzelm
parents:
32145
diff
changeset
|
482 |
{total = true, main = ! show_main_goal, maxgoals = ! Display.goals_limit} goal @
|
| 23639 | 483 |
[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
|
484 |
|
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
485 |
val extra_hyps = Assumption.extra_hyps ctxt goal; |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
486 |
val _ = null extra_hyps orelse |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
487 |
error ("Additional hypotheses:\n" ^ cat_lines (map string_of_term extra_hyps));
|
| 5820 | 488 |
|
| 23418 | 489 |
fun lost_structure () = error ("Lost goal structure:\n" ^ string_of_thm goal);
|
490 |
||
|
23782
4dd0ba632e40
Proof terms for meta-conjunctions are now normalized before
berghofe
parents:
23639
diff
changeset
|
491 |
val th = Goal.conclude |
| 23806 | 492 |
(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
|
493 |
handle THM _ => lost_structure (); |
| 23418 | 494 |
val goal_propss = filter_out null propss; |
495 |
val results = |
|
496 |
Conjunction.elim_balanced (length goal_propss) th |
|
497 |
|> map2 Conjunction.elim_balanced (map length goal_propss) |
|
498 |
handle THM _ => lost_structure (); |
|
499 |
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
|
500 |
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
|
501 |
val _ = Thm.check_shyps (Variable.sorts_of ctxt) th; |
| 23418 | 502 |
|
503 |
fun recover_result ([] :: pss) thss = [] :: recover_result pss thss |
|
504 |
| recover_result (_ :: pss) (ths :: thss) = ths :: recover_result pss thss |
|
505 |
| recover_result [] [] = [] |
|
506 |
| recover_result _ _ = lost_structure (); |
|
507 |
in recover_result propss results end; |
|
| 5820 | 508 |
|
509 |
||
510 |
||
511 |
(*** structured proof commands ***) |
|
512 |
||
| 17112 | 513 |
(** context elements **) |
| 5820 | 514 |
|
| 17112 | 515 |
(* bindings *) |
| 5820 | 516 |
|
| 16813 | 517 |
local |
518 |
||
| 17359 | 519 |
fun gen_bind bind args state = |
| 5820 | 520 |
state |
521 |
|> assert_forward |
|
| 18308 | 522 |
|> map_context (bind args #> snd) |
| 17359 | 523 |
|> put_facts NONE; |
| 5820 | 524 |
|
| 16813 | 525 |
in |
526 |
||
|
8617
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
527 |
val match_bind = gen_bind (ProofContext.match_bind false); |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
528 |
val match_bind_i = gen_bind (ProofContext.match_bind_i false); |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
529 |
val let_bind = gen_bind (ProofContext.match_bind true); |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
530 |
val let_bind_i = gen_bind (ProofContext.match_bind_i true); |
| 5820 | 531 |
|
| 16813 | 532 |
end; |
533 |
||
| 5820 | 534 |
|
| 17359 | 535 |
(* fix *) |
| 9196 | 536 |
|
| 12714 | 537 |
local |
538 |
||
|
30763
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
539 |
fun gen_fix prep_vars args = |
| 17359 | 540 |
assert_forward |
|
30763
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
541 |
#> map_context (fn ctxt => snd (ProofContext.add_fixes (prep_vars ctxt args) ctxt)) |
| 17359 | 542 |
#> put_facts NONE; |
| 5820 | 543 |
|
| 16813 | 544 |
in |
545 |
||
|
30763
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
546 |
val fix = gen_fix (fn ctxt => fn args => fst (ProofContext.read_vars args ctxt)); |
|
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents:
30761
diff
changeset
|
547 |
val fix_i = gen_fix (K I); |
| 5820 | 548 |
|
| 16813 | 549 |
end; |
550 |
||
| 5820 | 551 |
|
| 17359 | 552 |
(* assume etc. *) |
| 5820 | 553 |
|
| 16813 | 554 |
local |
555 |
||
| 17112 | 556 |
fun gen_assume asm prep_att exp args state = |
| 5820 | 557 |
state |
558 |
|> assert_forward |
|
| 17112 | 559 |
|> map_context_result (asm exp (Attrib.map_specs (prep_att (theory_of state)) args)) |
| 17359 | 560 |
|> these_factss [] |> #2; |
| 6932 | 561 |
|
| 16813 | 562 |
in |
563 |
||
| 18728 | 564 |
val assm = gen_assume ProofContext.add_assms Attrib.attribute; |
| 18670 | 565 |
val assm_i = gen_assume ProofContext.add_assms_i (K I); |
|
20224
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
566 |
val assume = assm Assumption.assume_export; |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
567 |
val assume_i = assm_i Assumption.assume_export; |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
568 |
val presume = assm Assumption.presume_export; |
|
9c40a144ee0e
moved basic assumption operations from structure ProofContext to Assumption;
wenzelm
parents:
20208
diff
changeset
|
569 |
val presume_i = assm_i Assumption.presume_export; |
| 5820 | 570 |
|
| 16813 | 571 |
end; |
572 |
||
| 7271 | 573 |
|
| 17359 | 574 |
(* def *) |
| 11891 | 575 |
|
| 16813 | 576 |
local |
577 |
||
| 20913 | 578 |
fun gen_def prep_att prep_vars prep_binds args state = |
| 11891 | 579 |
let |
580 |
val _ = assert_forward state; |
|
| 17112 | 581 |
val thy = theory_of state; |
| 11891 | 582 |
|
| 20913 | 583 |
val (raw_name_atts, (raw_vars, raw_rhss)) = args |> split_list ||> split_list; |
584 |
val name_atts = map (apsnd (map (prep_att thy))) raw_name_atts; |
|
| 11891 | 585 |
in |
| 20913 | 586 |
state |
587 |
|> map_context_result (prep_vars (map (fn (x, mx) => (x, NONE, mx)) raw_vars)) |
|
588 |
|>> map (fn (x, _, mx) => (x, mx)) |
|
589 |
|-> (fn vars => |
|
590 |
map_context_result (prep_binds false (map swap raw_rhss)) |
|
591 |
#-> (fn rhss => map_context_result (LocalDefs.add_defs (vars ~~ (name_atts ~~ rhss))))) |
|
592 |
|-> (put_facts o SOME o map (#2 o #2)) |
|
| 11891 | 593 |
end; |
594 |
||
| 16813 | 595 |
in |
596 |
||
| 20913 | 597 |
val def = gen_def Attrib.attribute ProofContext.read_vars ProofContext.match_bind; |
598 |
val def_i = gen_def (K I) ProofContext.cert_vars ProofContext.match_bind_i; |
|
| 11891 | 599 |
|
| 16813 | 600 |
end; |
601 |
||
| 11891 | 602 |
|
| 8374 | 603 |
|
| 17112 | 604 |
(** facts **) |
| 5820 | 605 |
|
| 17359 | 606 |
(* chain *) |
| 5820 | 607 |
|
| 24011 | 608 |
fun clean_facts ctxt = |
| 24050 | 609 |
put_facts (SOME (filter_out Thm.is_dummy (the_facts ctxt))) ctxt; |
| 24011 | 610 |
|
| 17359 | 611 |
val chain = |
612 |
assert_forward |
|
| 24011 | 613 |
#> clean_facts |
| 17359 | 614 |
#> enter_chain; |
| 5820 | 615 |
|
| 17359 | 616 |
fun chain_facts facts = |
617 |
put_facts (SOME facts) |
|
618 |
#> chain; |
|
| 5820 | 619 |
|
620 |
||
| 17359 | 621 |
(* note etc. *) |
| 17112 | 622 |
|
| 28965 | 623 |
fun no_binding args = map (pair (Binding.empty, [])) args; |
| 17112 | 624 |
|
625 |
local |
|
626 |
||
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
627 |
fun gen_thmss more_facts opt_chain opt_result prep_atts prep_fact args state = |
| 17112 | 628 |
state |
629 |
|> assert_forward |
|
|
30761
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents:
30760
diff
changeset
|
630 |
|> map_context_result (ProofContext.note_thmss "" |
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
631 |
(Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state)) args)) |
| 17112 | 632 |
|> these_factss (more_facts state) |
| 17359 | 633 |
||> opt_chain |
634 |
|> opt_result; |
|
| 17112 | 635 |
|
636 |
in |
|
637 |
||
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
638 |
val note_thmss = gen_thmss (K []) I #2 Attrib.attribute ProofContext.get_fact; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
639 |
val note_thmss_i = gen_thmss (K []) I #2 (K I) (K I); |
| 17112 | 640 |
|
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
641 |
val from_thmss = gen_thmss (K []) chain #2 Attrib.attribute ProofContext.get_fact o no_binding; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
642 |
val from_thmss_i = gen_thmss (K []) chain #2 (K I) (K I) o no_binding; |
| 17359 | 643 |
|
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
644 |
val with_thmss = gen_thmss the_facts chain #2 Attrib.attribute ProofContext.get_fact o no_binding; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
645 |
val with_thmss_i = gen_thmss the_facts chain #2 (K I) (K I) o no_binding; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
646 |
|
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
647 |
val local_results = gen_thmss (K []) I I (K I) (K I) o map (apsnd Thm.simple_fact); |
| 17359 | 648 |
|
| 28965 | 649 |
fun get_thmss state srcs = the_facts (note_thmss [((Binding.empty, []), srcs)] state); |
| 17112 | 650 |
|
651 |
end; |
|
652 |
||
653 |
||
| 18548 | 654 |
(* using/unfolding *) |
| 17112 | 655 |
|
656 |
local |
|
657 |
||
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
658 |
fun gen_using f g prep_atts prep_fact args state = |
| 17112 | 659 |
state |
660 |
|> assert_backward |
|
| 21442 | 661 |
|> map_context_result |
|
30761
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents:
30760
diff
changeset
|
662 |
(ProofContext.note_thmss "" |
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
663 |
(Attrib.map_facts_refs (prep_atts (theory_of state)) (prep_fact (context_of state)) |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
664 |
(no_binding args))) |
| 18843 | 665 |
|> (fn (named_facts, state') => |
| 24556 | 666 |
state' |> map_goal I (fn (statement, _, using, goal, before_qed, after_qed) => |
| 18843 | 667 |
let |
668 |
val ctxt = context_of state'; |
|
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
669 |
val ths = maps snd named_facts; |
| 24556 | 670 |
in (statement, [], f ctxt ths using, g ctxt ths goal, before_qed, after_qed) end)); |
| 18548 | 671 |
|
| 24050 | 672 |
fun append_using _ ths using = using @ filter_out Thm.is_dummy ths; |
| 18878 | 673 |
fun unfold_using ctxt ths = map (LocalDefs.unfold ctxt ths); |
674 |
val unfold_goals = LocalDefs.unfold_goals; |
|
| 17112 | 675 |
|
676 |
in |
|
677 |
||
|
30760
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
678 |
val using = gen_using append_using (K (K I)) Attrib.attribute ProofContext.get_fact; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
679 |
val using_i = gen_using append_using (K (K I)) (K I) (K I); |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
680 |
val unfolding = gen_using unfold_using unfold_goals Attrib.attribute ProofContext.get_fact; |
|
0fffc66b10d7
simplified references to facts, eliminated external note_thmss;
wenzelm
parents:
30757
diff
changeset
|
681 |
val unfolding_i = gen_using unfold_using unfold_goals (K I) (K I); |
| 17112 | 682 |
|
683 |
end; |
|
684 |
||
685 |
||
686 |
(* case *) |
|
687 |
||
688 |
local |
|
689 |
||
|
30419
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
690 |
fun qualified_binding a = |
|
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
691 |
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
|
692 |
|
| 17112 | 693 |
fun gen_invoke_case prep_att (name, xs, raw_atts) state = |
694 |
let |
|
695 |
val atts = map (prep_att (theory_of state)) raw_atts; |
|
| 19078 | 696 |
val (asms, state') = state |> map_context_result (fn ctxt => |
697 |
ctxt |> ProofContext.apply_case (ProofContext.get_case ctxt name xs)); |
|
|
30419
c944e299eaf9
invoke_case: proper qualification of name binding, avoiding old no_base_names;
wenzelm
parents:
30279
diff
changeset
|
698 |
val assumptions = asms |> map (fn (a, ts) => ((qualified_binding a, atts), map (rpair []) ts)); |
| 17112 | 699 |
in |
700 |
state' |
|
701 |
|> assume_i assumptions |
|
|
30757
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents:
30557
diff
changeset
|
702 |
|> bind_terms AutoBind.no_facts |
| 28965 | 703 |
|> `the_facts |-> (fn thms => note_thmss_i [((Binding.name name, []), [(thms, [])])]) |
| 17112 | 704 |
end; |
705 |
||
706 |
in |
|
707 |
||
| 18728 | 708 |
val invoke_case = gen_invoke_case Attrib.attribute; |
| 17112 | 709 |
val invoke_case_i = gen_invoke_case (K I); |
710 |
||
711 |
end; |
|
712 |
||
713 |
||
714 |
||
| 17359 | 715 |
(** proof structure **) |
716 |
||
717 |
(* blocks *) |
|
718 |
||
719 |
val begin_block = |
|
720 |
assert_forward |
|
721 |
#> open_block |
|
722 |
#> put_goal NONE |
|
723 |
#> open_block; |
|
724 |
||
725 |
val next_block = |
|
726 |
assert_forward |
|
727 |
#> close_block |
|
728 |
#> open_block |
|
729 |
#> put_goal NONE |
|
730 |
#> put_facts NONE; |
|
731 |
||
732 |
fun end_block state = |
|
733 |
state |
|
734 |
|> assert_forward |
|
735 |
|> close_block |
|
736 |
|> assert_current_goal false |
|
737 |
|> close_block |
|
738 |
|> export_facts state; |
|
739 |
||
740 |
||
741 |
(* sub-proofs *) |
|
742 |
||
743 |
fun proof opt_text = |
|
744 |
assert_backward |
|
| 17859 | 745 |
#> refine (the_default Method.default_text opt_text) |
| 17359 | 746 |
#> Seq.map (using_facts [] #> enter_forward); |
747 |
||
| 23360 | 748 |
fun end_proof bot txt state = |
749 |
state |
|
750 |
|> assert_forward |
|
751 |
|> assert_bottom bot |
|
752 |
|> close_block |
|
753 |
|> assert_current_goal true |
|
754 |
|> using_facts [] |
|
755 |
|> `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
|
756 |
|> Seq.maps (refine (Method.finish_text txt)); |
| 17359 | 757 |
|
| 29383 | 758 |
fun check_result msg sq = |
759 |
(case Seq.pull sq of |
|
760 |
NONE => error msg |
|
761 |
| SOME (s, _) => s); |
|
762 |
||
763 |
fun check_finish sq = check_result "Failed to finish proof" sq; |
|
764 |
||
| 17359 | 765 |
|
766 |
(* unstructured refinement *) |
|
767 |
||
|
32193
c314b4836031
basic method application: avoid Position.setmp_thread_data_seq, which destroys transaction context;
wenzelm
parents:
32187
diff
changeset
|
768 |
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
|
769 |
fun prefer i = assert_no_chain #> refine (Method.Basic (K (Method.prefer i))); |
| 17359 | 770 |
|
771 |
fun apply text = assert_backward #> refine text #> Seq.map (using_facts []); |
|
772 |
fun apply_end text = assert_forward #> refine_end text; |
|
773 |
||
774 |
||
775 |
||
| 17112 | 776 |
(** goals **) |
777 |
||
| 17359 | 778 |
(* generic goals *) |
779 |
||
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
780 |
local |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
781 |
|
| 19846 | 782 |
fun implicit_vars dest add props = |
783 |
let |
|
784 |
val (explicit_vars, props') = take_prefix (can dest) props |>> map dest; |
|
785 |
val vars = rev (subtract (op =) explicit_vars (fold add props [])); |
|
786 |
val _ = |
|
787 |
if null vars then () |
|
788 |
else warning ("Goal statement contains unbound schematic variable(s): " ^
|
|
789 |
commas_quote (map (Term.string_of_vname o fst) vars)); |
|
790 |
in (rev vars, props') end; |
|
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
791 |
|
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
792 |
fun refine_terms n = |
|
30510
4120fc59dd85
unified type Proof.method and pervasive METHOD combinators;
wenzelm
parents:
30419
diff
changeset
|
793 |
refine (Method.Basic (K (RAW_METHOD |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
794 |
(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
|
795 |
(HEADGOAL (CONJUNCTS (ALLGOALS (rtac Drule.termI)))))))))) |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
796 |
#> Seq.hd; |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
797 |
|
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
798 |
in |
| 17359 | 799 |
|
| 17859 | 800 |
fun generic_goal prepp kind before_qed after_qed raw_propp state = |
| 5820 | 801 |
let |
| 17359 | 802 |
val thy = theory_of state; |
| 23418 | 803 |
val cert = Thm.cterm_of thy; |
| 17359 | 804 |
val chaining = can assert_chain state; |
| 25958 | 805 |
val pos = Position.thread_data (); |
| 17359 | 806 |
|
807 |
val ((propss, after_ctxt), goal_state) = |
|
| 5936 | 808 |
state |
809 |
|> assert_forward_or_chain |
|
810 |
|> enter_forward |
|
| 17359 | 811 |
|> open_block |
| 17859 | 812 |
|> map_context_result (fn ctxt => swap (prepp (ctxt, raw_propp))); |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
813 |
val props = flat propss; |
| 15703 | 814 |
|
| 19846 | 815 |
val (_, props') = |
816 |
implicit_vars (dest_TVar o Logic.dest_type o Logic.dest_term) Term.add_tvars props; |
|
817 |
val (vars, _) = implicit_vars (dest_Var o Logic.dest_term) Term.add_vars props'; |
|
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
818 |
|
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
819 |
val propss' = map (Logic.mk_term o Var) vars :: propss; |
| 23418 | 820 |
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
|
821 |
val goal = |
|
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
822 |
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
|
823 |
|> 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
|
824 |
val statement = ((kind, pos), propss', Thm.term_of goal); |
| 18124 | 825 |
val after_qed' = after_qed |>> (fn after_local => |
826 |
fn results => map_context after_ctxt #> after_local results); |
|
| 5820 | 827 |
in |
| 17359 | 828 |
goal_state |
| 21727 | 829 |
|> map_context (init_context #> Variable.set_body true) |
| 28410 | 830 |
|> put_goal (SOME (make_goal (statement, [], [], Goal.init goal, before_qed, after_qed'))) |
| 17359 | 831 |
|> map_context (ProofContext.auto_bind_goal props) |
| 21565 | 832 |
|> chaining ? (`the_facts #-> using_facts) |
| 17359 | 833 |
|> put_facts NONE |
834 |
|> open_block |
|
835 |
|> put_goal NONE |
|
| 5820 | 836 |
|> enter_backward |
| 23418 | 837 |
|> 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
|
838 |
|> null props ? (refine (Method.Basic Method.assumption) #> Seq.hd) |
| 5820 | 839 |
end; |
840 |
||
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
841 |
fun generic_qed after_ctxt state = |
| 12503 | 842 |
let |
| 25958 | 843 |
val (goal_ctxt, {statement, goal, after_qed, ...}) = current_goal state;
|
|
8617
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
844 |
val outer_state = state |> close_block; |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
845 |
val outer_ctxt = context_of outer_state; |
|
33e2bd53aec3
support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents:
8582
diff
changeset
|
846 |
|
| 28410 | 847 |
val ((_, pos), stmt, _) = statement; |
|
18503
841137f20307
goal/qed: proper treatment of two levels of conjunctions;
wenzelm
parents:
18475
diff
changeset
|
848 |
val props = |
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
849 |
flat (tl stmt) |
| 19915 | 850 |
|> Variable.exportT_terms goal_ctxt outer_ctxt; |
| 17359 | 851 |
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
|
852 |
tl (conclude_goal goal_ctxt goal stmt) |
| 20309 | 853 |
|> burrow (ProofContext.export goal_ctxt outer_ctxt); |
| 25958 | 854 |
|
855 |
val (after_local, after_global) = after_qed; |
|
| 29383 | 856 |
fun after_local' x y = Position.setmp_thread_data pos (fn () => after_local x y) (); |
| 25958 | 857 |
fun after_global' x y = Position.setmp_thread_data pos (fn () => after_global x y) (); |
| 17359 | 858 |
in |
859 |
outer_state |
|
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
860 |
|> map_context (after_ctxt props) |
| 25958 | 861 |
|> pair ((after_local', after_global'), results) |
| 17359 | 862 |
end; |
863 |
||
|
19774
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
864 |
end; |
|
5fe7731d0836
allow non-trivial schematic goals (via embedded term vars);
wenzelm
parents:
19585
diff
changeset
|
865 |
|
| 9469 | 866 |
|
| 17359 | 867 |
(* local goals *) |
868 |
||
| 17859 | 869 |
fun local_goal print_results prep_att prepp kind before_qed after_qed stmt state = |
| 17359 | 870 |
let |
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
871 |
val thy = theory_of state; |
|
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
872 |
val ((names, attss), propp) = |
|
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
873 |
Attrib.map_specs (prep_att thy) stmt |> split_list |>> split_list; |
| 17359 | 874 |
|
| 18124 | 875 |
fun after_qed' results = |
| 18808 | 876 |
local_results ((names ~~ attss) ~~ results) |
| 17359 | 877 |
#-> (fn res => tap (fn st => print_results (context_of st) ((kind, ""), res) : unit)) |
| 18124 | 878 |
#> after_qed results; |
| 5820 | 879 |
in |
| 17359 | 880 |
state |
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
881 |
|> 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
|
882 |
|> tap (Variable.warn_extra_tfrees (context_of state) o context_of) |
| 5820 | 883 |
end; |
884 |
||
| 29383 | 885 |
fun local_qeds txt = |
886 |
end_proof false txt |
|
887 |
#> Seq.map (generic_qed ProofContext.auto_bind_facts #-> |
|
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
888 |
(fn ((after_qed, _), results) => after_qed results)); |
| 5820 | 889 |
|
| 29383 | 890 |
fun local_qed txt = local_qeds txt #> check_finish; |
891 |
||
| 5820 | 892 |
|
| 17359 | 893 |
(* global goals *) |
894 |
||
| 21442 | 895 |
fun global_goal prepp before_qed after_qed propp ctxt = |
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
896 |
init ctxt |
| 29383 | 897 |
|> generic_goal (prepp #> ProofContext.auto_fixes) "" before_qed (K I, after_qed) propp; |
| 17359 | 898 |
|
|
21362
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
899 |
val theorem = global_goal ProofContext.bind_propp_schematic; |
|
3a2ab1dce297
simplified Proof.theorem(_i) interface -- removed target support;
wenzelm
parents:
21274
diff
changeset
|
900 |
val theorem_i = global_goal ProofContext.bind_propp_schematic_i; |
| 12065 | 901 |
|
| 17359 | 902 |
fun global_qeds txt = |
903 |
end_proof true txt |
|
|
29090
bbfac5fd8d78
global_qed: refrain from ProofContext.auto_bind_facts, to avoid
wenzelm
parents:
28981
diff
changeset
|
904 |
#> Seq.map (generic_qed (K I) #> (fn (((_, after_qed), results), state) => |
| 29383 | 905 |
after_qed results (context_of state))); |
| 17112 | 906 |
|
| 29383 | 907 |
fun global_qed txt = global_qeds txt #> check_finish; |
| 12959 | 908 |
|
| 5820 | 909 |
|
| 17359 | 910 |
(* concluding steps *) |
| 17112 | 911 |
|
| 29383 | 912 |
fun terminal_proof qed initial terminal = |
913 |
proof (SOME initial) #> Seq.maps (qed terminal) #> check_finish; |
|
| 17112 | 914 |
|
| 29383 | 915 |
fun local_terminal_proof (text, opt_text) = terminal_proof local_qeds text (opt_text, true); |
| 17112 | 916 |
val local_default_proof = local_terminal_proof (Method.default_text, NONE); |
917 |
val local_immediate_proof = local_terminal_proof (Method.this_text, NONE); |
|
| 17359 | 918 |
fun local_skip_proof int = local_terminal_proof (Method.sorry_text int, NONE); |
| 29383 | 919 |
val local_done_proof = terminal_proof local_qeds Method.done_text (NONE, false); |
| 17112 | 920 |
|
| 29383 | 921 |
fun global_terminal_proof (text, opt_text) = terminal_proof global_qeds text (opt_text, true); |
| 17112 | 922 |
val global_default_proof = global_terminal_proof (Method.default_text, NONE); |
923 |
val global_immediate_proof = global_terminal_proof (Method.this_text, NONE); |
|
| 17359 | 924 |
fun global_skip_proof int = global_terminal_proof (Method.sorry_text int, NONE); |
| 29383 | 925 |
val global_done_proof = terminal_proof global_qeds Method.done_text (NONE, false); |
| 5820 | 926 |
|
| 6896 | 927 |
|
| 17359 | 928 |
(* common goal statements *) |
929 |
||
930 |
local |
|
931 |
||
| 17859 | 932 |
fun gen_have prep_att prepp before_qed after_qed stmt int = |
933 |
local_goal (ProofDisplay.print_results int) prep_att prepp "have" before_qed after_qed stmt; |
|
| 6896 | 934 |
|
| 17859 | 935 |
fun gen_show prep_att prepp before_qed after_qed stmt int state = |
| 17359 | 936 |
let |
| 32738 | 937 |
val testing = Unsynchronized.ref false; |
938 |
val rule = Unsynchronized.ref (NONE: thm option); |
|
| 17359 | 939 |
fun fail_msg ctxt = |
| 29383 | 940 |
"Local statement will fail to refine any pending goal" :: |
| 17359 | 941 |
(case ! rule of NONE => [] | SOME th => [ProofDisplay.string_of_rule ctxt "Failed" th]) |
942 |
|> cat_lines; |
|
| 6896 | 943 |
|
| 17359 | 944 |
fun print_results ctxt res = |
945 |
if ! testing then () else ProofDisplay.print_results int ctxt res; |
|
946 |
fun print_rule ctxt th = |
|
947 |
if ! testing then rule := SOME th |
|
948 |
else if int then priority (ProofDisplay.string_of_rule ctxt "Successful" th) |
|
949 |
else (); |
|
950 |
val test_proof = |
|
| 29383 | 951 |
try (local_skip_proof true) |
| 28289 | 952 |
|> setmp_noncritical testing true |
|
23963
c2ee97a963db
moved exception capture/release to structure Exn;
wenzelm
parents:
23806
diff
changeset
|
953 |
|> Exn.capture; |
| 6896 | 954 |
|
| 18124 | 955 |
fun after_qed' results = |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19475
diff
changeset
|
956 |
refine_goals print_rule (context_of state) (flat results) |
| 29383 | 957 |
#> check_result "Failed to refine any pending goal" |
958 |
#> after_qed results; |
|
| 17359 | 959 |
in |
960 |
state |
|
| 17859 | 961 |
|> local_goal print_results prep_att prepp "show" before_qed after_qed' stmt |
| 21565 | 962 |
|> int ? (fn goal_state => |
| 17359 | 963 |
(case test_proof goal_state of |
|
23963
c2ee97a963db
moved exception capture/release to structure Exn;
wenzelm
parents:
23806
diff
changeset
|
964 |
Exn.Result (SOME _) => goal_state |
|
c2ee97a963db
moved exception capture/release to structure Exn;
wenzelm
parents:
23806
diff
changeset
|
965 |
| Exn.Result NONE => error (fail_msg (context_of goal_state)) |
| 28443 | 966 |
| Exn.Exn Exn.Interrupt => raise Exn.Interrupt |
| 28458 | 967 |
| Exn.Exn exn => raise Exn.EXCEPTIONS ([exn, ERROR (fail_msg (context_of goal_state))]))) |
| 17359 | 968 |
end; |
969 |
||
970 |
in |
|
971 |
||
| 18728 | 972 |
val have = gen_have Attrib.attribute ProofContext.bind_propp; |
| 17359 | 973 |
val have_i = gen_have (K I) ProofContext.bind_propp_i; |
| 18728 | 974 |
val show = gen_show Attrib.attribute ProofContext.bind_propp; |
| 17359 | 975 |
val show_i = gen_show (K I) ProofContext.bind_propp_i; |
| 6896 | 976 |
|
| 5820 | 977 |
end; |
| 17359 | 978 |
|
| 28410 | 979 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
980 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
981 |
(** future proofs **) |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
982 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
983 |
(* relevant proof states *) |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
984 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
985 |
fun is_schematic t = |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
986 |
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
|
987 |
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
|
988 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
989 |
fun schematic_goal state = |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
990 |
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
|
991 |
in is_schematic prop end; |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
992 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
993 |
fun is_relevant state = |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
994 |
(case try find_goal state of |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
995 |
NONE => true |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
996 |
| SOME (_, (_, {statement = (_, _, prop), goal, ...})) =>
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
997 |
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
|
998 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
999 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1000 |
(* full proofs *) |
| 28410 | 1001 |
|
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1002 |
local |
|
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1003 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1004 |
fun future_proof done get_context fork_proof state = |
| 28410 | 1005 |
let |
|
29381
45d77aeb1608
future_terminal_proof: no fork for interactive mode, assert_backward;
wenzelm
parents:
29364
diff
changeset
|
1006 |
val _ = assert_backward state; |
| 28410 | 1007 |
val (goal_ctxt, (_, goal)) = find_goal state; |
| 32786 | 1008 |
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
|
1009 |
val goal_txt = prop :: map Thm.term_of (Assumption.all_assms_of goal_ctxt); |
| 28410 | 1010 |
|
| 29383 | 1011 |
val _ = is_relevant state andalso error "Cannot fork relevant proof"; |
1012 |
||
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1013 |
val prop' = Logic.protect prop; |
|
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1014 |
val statement' = (kind, [[], [prop']], prop'); |
|
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1015 |
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
|
1016 |
(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
|
1017 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1018 |
fun after_local' [[th]] = put_thms false (AutoBind.thisN, SOME [th]); |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1019 |
fun after_global' [[th]] = ProofContext.put_thms false (AutoBind.thisN, SOME [th]); |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1020 |
val after_qed' = (after_local', after_global'); |
| 30279 | 1021 |
val this_name = ProofContext.full_name goal_ctxt (Binding.name AutoBind.thisN); |
| 28410 | 1022 |
|
|
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1023 |
val result_ctxt = |
|
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1024 |
state |
|
32062
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
wenzelm
parents:
32061
diff
changeset
|
1025 |
|> 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
|
1026 |
|> 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
|
1027 |
|> fork_proof; |
|
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1028 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1029 |
val future_thm = result_ctxt |> Future.map (fn (_, x) => |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1030 |
ProofContext.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
|
1031 |
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
|
1032 |
val state' = |
|
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1033 |
state |
|
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1034 |
|> 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
|
1035 |
|> done; |
|
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28627
diff
changeset
|
1036 |
in (Future.map #1 result_ctxt, state') end; |
| 28410 | 1037 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1038 |
in |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1039 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1040 |
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
|
1041 |
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
|
1042 |
|
| 17359 | 1043 |
end; |
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1044 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1045 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1046 |
(* terminal proofs *) |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1047 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1048 |
local |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1049 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1050 |
fun future_terminal_proof proof1 proof2 meths int state = |
|
32061
11f8ee55662d
parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents:
32058
diff
changeset
|
1051 |
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
|
1052 |
then proof1 meths state |
|
32062
457f5bcd3d76
Proof.future_proof: declare all assumptions as well;
wenzelm
parents:
32061
diff
changeset
|
1053 |
else snd (proof2 (fn state' => Future.fork_pri ~1 (fn () => ((), proof1 meths state'))) state); |
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1054 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1055 |
in |
|
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 local_future_terminal_proof x = |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1058 |
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
|
1059 |
|
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1060 |
fun global_future_terminal_proof x = |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1061 |
future_terminal_proof global_terminal_proof global_future_proof x; |
| 29350 | 1062 |
|
|
29346
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1063 |
end; |
|
fe6843aa4f5f
more precise is_relevant: requires original main goal, not initial goal state;
wenzelm
parents:
29090
diff
changeset
|
1064 |
|
|
29385
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1065 |
end; |
|
c96b91bab2e6
future_proof: refined version covers local_future_proof and global_future_proof;
wenzelm
parents:
29383
diff
changeset
|
1066 |