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