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