author | wenzelm |
Sun, 25 Aug 2013 20:32:26 +0200 | |
changeset 53192 | 04df1d236e1c |
parent 53190 | 5d92649a310e |
child 54567 | cfe53047dc16 |
permissions | -rw-r--r-- |
17980 | 1 |
(* Title: Pure/goal.ML |
29345 | 2 |
Author: Makarius |
17980 | 3 |
|
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
4 |
Goals in tactical theorem proving, with support for forked proofs. |
17980 | 5 |
*) |
6 |
||
7 |
signature BASIC_GOAL = |
|
8 |
sig |
|
32738 | 9 |
val parallel_proofs: int Unsynchronized.ref |
17980 | 10 |
val SELECT_GOAL: tactic -> int -> tactic |
52458
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
11 |
val PREFER_GOAL: tactic -> int -> tactic |
23418 | 12 |
val CONJUNCTS: tactic -> int -> tactic |
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
13 |
val PRECISE_CONJUNCTS: int -> tactic -> int -> tactic |
32365 | 14 |
val PARALLEL_CHOICE: tactic list -> tactic |
15 |
val PARALLEL_GOALS: tactic -> tactic |
|
17980 | 16 |
end; |
17 |
||
18 |
signature GOAL = |
|
19 |
sig |
|
20 |
include BASIC_GOAL |
|
21 |
val init: cterm -> thm |
|
52456 | 22 |
val protect: int -> thm -> thm |
17980 | 23 |
val conclude: thm -> thm |
49845 | 24 |
val check_finished: Proof.context -> thm -> thm |
32197 | 25 |
val finish: Proof.context -> thm -> thm |
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
26 |
val norm_result: thm -> thm |
52499 | 27 |
val skip_proofs_enabled: unit -> bool |
53189
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
wenzelm
parents:
52811
diff
changeset
|
28 |
val future_enabled: int -> bool |
51423
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
wenzelm
parents:
51276
diff
changeset
|
29 |
val future_enabled_timing: Time.time -> bool |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
30 |
val future_result: Proof.context -> thm future -> term -> thm |
23356 | 31 |
val prove_internal: cterm list -> cterm -> (thm list -> tactic) -> thm |
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
32 |
val is_schematic: term -> bool |
20290 | 33 |
val prove_multi: Proof.context -> string list -> term list -> term list -> |
34 |
({prems: thm list, context: Proof.context} -> tactic) -> thm list |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
35 |
val prove_future: Proof.context -> string list -> term list -> term -> |
28340 | 36 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
20290 | 37 |
val prove: Proof.context -> string list -> term list -> term -> |
38 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
|
51118
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
39 |
val prove_global_future: theory -> string list -> term list -> term -> |
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
40 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
26713
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
41 |
val prove_global: theory -> string list -> term list -> term -> |
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
42 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
51551 | 43 |
val prove_sorry: Proof.context -> string list -> term list -> term -> |
44 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
|
45 |
val prove_sorry_global: theory -> string list -> term list -> term -> |
|
46 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
|
52458
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
47 |
val restrict: int -> int -> thm -> thm |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
48 |
val unrestrict: int -> thm -> thm |
23418 | 49 |
val conjunction_tac: int -> tactic |
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
50 |
val precise_conjunction_tac: int -> int -> tactic |
23418 | 51 |
val recover_conjunction_tac: tactic |
21687 | 52 |
val norm_hhf_tac: int -> tactic |
23237 | 53 |
val assume_rule_tac: Proof.context -> int -> tactic |
17980 | 54 |
end; |
55 |
||
56 |
structure Goal: GOAL = |
|
57 |
struct |
|
58 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
59 |
(** goals **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
60 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
61 |
(* |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
62 |
-------- (init) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
63 |
C ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
64 |
*) |
20290 | 65 |
val init = |
22902
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents:
21687
diff
changeset
|
66 |
let val A = #1 (Thm.dest_implies (Thm.cprop_of Drule.protectI)) |
20290 | 67 |
in fn C => Thm.instantiate ([], [(A, C)]) Drule.protectI end; |
17980 | 68 |
|
69 |
(* |
|
52456 | 70 |
A1 ==> ... ==> An ==> C |
71 |
------------------------ (protect n) |
|
72 |
A1 ==> ... ==> An ==> #C |
|
17980 | 73 |
*) |
52456 | 74 |
fun protect n th = Drule.comp_no_flatten (th, n) 1 Drule.protectI; |
17980 | 75 |
|
76 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
77 |
A ==> ... ==> #C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
78 |
---------------- (conclude) |
17980 | 79 |
A ==> ... ==> C |
80 |
*) |
|
29345 | 81 |
fun conclude th = Drule.comp_no_flatten (th, Thm.nprems_of th) 1 Drule.protectD; |
17980 | 82 |
|
83 |
(* |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
84 |
#C |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
85 |
--- (finish) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
86 |
C |
17983 | 87 |
*) |
32197 | 88 |
fun check_finished ctxt th = |
51608 | 89 |
if Thm.no_prems th then th |
90 |
else |
|
51958
bca32217b304
retain goal display options when printing error messages, to avoid breakdown for huge goals;
wenzelm
parents:
51608
diff
changeset
|
91 |
raise THM ("Proof failed.\n" ^ Pretty.string_of (Goal_Display.pretty_goal ctxt th), 0, [th]); |
32197 | 92 |
|
49845 | 93 |
fun finish ctxt = check_finished ctxt #> conclude; |
17980 | 94 |
|
95 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
96 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
97 |
(** results **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
98 |
|
28340 | 99 |
(* normal form *) |
100 |
||
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
101 |
val norm_result = |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
102 |
Drule.flexflex_unique |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
39125
diff
changeset
|
103 |
#> Raw_Simplifier.norm_hhf_protect |
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
104 |
#> Thm.strip_shyps |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
105 |
#> Drule.zero_var_indexes; |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
106 |
|
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
107 |
|
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
108 |
(* scheduling parameters *) |
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
109 |
|
52499 | 110 |
fun skip_proofs_enabled () = |
52710
52790e3961fe
just one option "skip_proofs", without direct access within the editor (it makes document processing stateful without strong reasons -- monotonic updates already handle goal forks smoothly);
wenzelm
parents:
52696
diff
changeset
|
111 |
let val skip = Options.default_bool "skip_proofs" in |
52499 | 112 |
if Proofterm.proofs_enabled () andalso skip then |
113 |
(warning "Proof terms enabled -- cannot skip proofs"; false) |
|
114 |
else skip |
|
115 |
end; |
|
116 |
||
32738 | 117 |
val parallel_proofs = Unsynchronized.ref 1; |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
118 |
|
53189
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
wenzelm
parents:
52811
diff
changeset
|
119 |
fun future_enabled n = |
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
120 |
Multithreading.enabled () andalso ! parallel_proofs >= n andalso |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
121 |
is_some (Future.worker_task ()); |
32061
11f8ee55662d
parallel_proofs: more fine-grained control with optional parallel checking of nested Isar proofs;
wenzelm
parents:
32058
diff
changeset
|
122 |
|
51423
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
wenzelm
parents:
51276
diff
changeset
|
123 |
fun future_enabled_timing t = |
53189
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
wenzelm
parents:
52811
diff
changeset
|
124 |
future_enabled 1 andalso |
52104 | 125 |
Time.toReal t >= Options.default_real "parallel_subproofs_threshold"; |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
126 |
|
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
127 |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
128 |
(* future_result *) |
28340 | 129 |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
130 |
fun future_result ctxt result prop = |
28340 | 131 |
let |
42360 | 132 |
val thy = Proof_Context.theory_of ctxt; |
28340 | 133 |
val cert = Thm.cterm_of thy; |
134 |
val certT = Thm.ctyp_of thy; |
|
135 |
||
30473
e0b66c11e7e4
Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents:
29448
diff
changeset
|
136 |
val assms = Assumption.all_assms_of ctxt; |
28340 | 137 |
val As = map Thm.term_of assms; |
138 |
||
139 |
val xs = map Free (fold Term.add_frees (prop :: As) []); |
|
140 |
val fixes = map cert xs; |
|
141 |
||
142 |
val tfrees = fold Term.add_tfrees (prop :: As) []; |
|
143 |
val instT = map (fn (a, S) => (certT (TVar ((a, 0), S)), certT (TFree (a, S)))) tfrees; |
|
144 |
||
145 |
val global_prop = |
|
45344
e209da839ff4
added Logic.varify_types_global/unvarify_types_global, which avoids somewhat expensive Term.map_types;
wenzelm
parents:
44302
diff
changeset
|
146 |
cert (Logic.varify_types_global (fold_rev Logic.all xs (Logic.list_implies (As, prop)))) |
32056
f4b74cbecdaf
future_result: explicitly impose Variable.sorts_of again;
wenzelm
parents:
30473
diff
changeset
|
147 |
|> Thm.weaken_sorts (Variable.sorts_of ctxt); |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
148 |
val global_result = result |> Future.map |
33768
bba9eac8aa25
future_result: purge flexflex pairs, which should normally be trivial anyway -- prevent Thm.future_result from complaining about tpairs;
wenzelm
parents:
32788
diff
changeset
|
149 |
(Drule.flexflex_unique #> |
bba9eac8aa25
future_result: purge flexflex pairs, which should normally be trivial anyway -- prevent Thm.future_result from complaining about tpairs;
wenzelm
parents:
32788
diff
changeset
|
150 |
Thm.adjust_maxidx_thm ~1 #> |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
151 |
Drule.implies_intr_list assms #> |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
152 |
Drule.forall_intr_list fixes #> |
36613
f3157c288aca
simplified primitive Thm.future: more direct theory check, do not hardwire strip_shyps here;
wenzelm
parents:
36610
diff
changeset
|
153 |
Thm.generalize (map #1 tfrees, []) 0 #> |
f3157c288aca
simplified primitive Thm.future: more direct theory check, do not hardwire strip_shyps here;
wenzelm
parents:
36610
diff
changeset
|
154 |
Thm.strip_shyps); |
28340 | 155 |
val local_result = |
32056
f4b74cbecdaf
future_result: explicitly impose Variable.sorts_of again;
wenzelm
parents:
30473
diff
changeset
|
156 |
Thm.future global_result global_prop |
50987
616789281413
always close derivation at the bottom of forked proofs (despite increased non-determinism of proof terms) -- improve parallel performance by avoiding dynamic dependency within large Isar proofs, e.g. Slicing/JinjaVM/SemanticsWF.thy in AFP/bf9b14cbc707;
wenzelm
parents:
50974
diff
changeset
|
157 |
|> Thm.close_derivation |
28340 | 158 |
|> Thm.instantiate (instT, []) |
159 |
|> Drule.forall_elim_list fixes |
|
160 |
|> fold (Thm.elim_implies o Thm.assume) assms; |
|
161 |
in local_result end; |
|
162 |
||
163 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
164 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
165 |
(** tactical theorem proving **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
166 |
|
23356 | 167 |
(* prove_internal -- minimal checks, no normalization of result! *) |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
168 |
|
23356 | 169 |
fun prove_internal casms cprop tac = |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
170 |
(case SINGLE (tac (map Assumption.assume casms)) (init cprop) of |
32197 | 171 |
SOME th => Drule.implies_intr_list casms |
172 |
(finish (Syntax.init_pretty_global (Thm.theory_of_thm th)) th) |
|
38875
c7a66b584147
tuned messages: discontinued spurious full-stops (messages are occasionally composed unexpectedly);
wenzelm
parents:
38236
diff
changeset
|
173 |
| NONE => error "Tactic failed"); |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
174 |
|
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
175 |
|
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
176 |
(* prove variations *) |
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
177 |
|
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
178 |
fun is_schematic t = |
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
179 |
Term.exists_subterm Term.is_Var t orelse |
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
180 |
Term.exists_type (Term.exists_subtype Term.is_TVar) t; |
17986 | 181 |
|
52811
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
182 |
fun prove_common immediate pri ctxt xs asms props tac = |
17980 | 183 |
let |
42360 | 184 |
val thy = Proof_Context.theory_of ctxt; |
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26713
diff
changeset
|
185 |
val string_of_term = Syntax.string_of_term ctxt; |
20056 | 186 |
|
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
187 |
val schematic = exists is_schematic props; |
53189
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
wenzelm
parents:
52811
diff
changeset
|
188 |
val future = future_enabled 1; |
52499 | 189 |
val skip = not immediate andalso not schematic andalso future andalso skip_proofs_enabled (); |
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
190 |
|
28355 | 191 |
val pos = Position.thread_data (); |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
192 |
fun err msg = cat_error msg |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
193 |
("The error(s) above occurred for the goal statement:\n" ^ |
28355 | 194 |
string_of_term (Logic.list_implies (asms, Logic.mk_conjunction_list props)) ^ |
48992 | 195 |
(case Position.here pos of "" => "" | s => "\n" ^ s)); |
17980 | 196 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
197 |
fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm (Term.no_dummy_patterns t)) |
17980 | 198 |
handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg; |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
199 |
val casms = map cert_safe asms; |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
200 |
val cprops = map cert_safe props; |
17980 | 201 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
202 |
val (prems, ctxt') = ctxt |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
203 |
|> Variable.add_fixes_direct xs |
27218
4548c83cd508
prove: full Variable.declare_term, including constraints;
wenzelm
parents:
26939
diff
changeset
|
204 |
|> fold Variable.declare_term (asms @ props) |
26713
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
205 |
|> Assumption.add_assumes casms |
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
206 |
||> Variable.set_body true; |
28619
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
207 |
val sorts = Variable.sorts_of ctxt'; |
17980 | 208 |
|
28619
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
209 |
val stmt = Thm.weaken_sorts sorts (Conjunction.mk_conjunction_balanced cprops); |
28340 | 210 |
|
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
211 |
fun tac' args st = |
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
212 |
if skip then ALLGOALS Skip_Proof.cheat_tac st before Skip_Proof.report ctxt |
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
213 |
else tac args st; |
28340 | 214 |
fun result () = |
51553
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
wenzelm
parents:
51552
diff
changeset
|
215 |
(case SINGLE (tac' {prems = prems, context = ctxt'}) (init stmt) of |
38875
c7a66b584147
tuned messages: discontinued spurious full-stops (messages are occasionally composed unexpectedly);
wenzelm
parents:
38236
diff
changeset
|
216 |
NONE => err "Tactic failed" |
28340 | 217 |
| SOME st => |
32197 | 218 |
let val res = finish ctxt' st handle THM (msg, _, _) => err msg in |
28619
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
219 |
if Unify.matches_list thy [Thm.term_of stmt] [Thm.prop_of res] |
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
220 |
then Thm.check_shyps sorts res |
28340 | 221 |
else err ("Proved a different theorem: " ^ string_of_term (Thm.prop_of res)) |
222 |
end); |
|
223 |
val res = |
|
53192 | 224 |
if immediate orelse schematic orelse not future orelse skip then result () |
225 |
else |
|
226 |
future_result ctxt' |
|
227 |
(Execution.fork {name = "Goal.prove", pos = Position.thread_data (), pri = pri} result) |
|
228 |
(Thm.term_of stmt); |
|
17980 | 229 |
in |
28340 | 230 |
Conjunction.elim_balanced (length props) res |
20290 | 231 |
|> map (Assumption.export false ctxt' ctxt) |
20056 | 232 |
|> Variable.export ctxt' ctxt |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
233 |
|> map Drule.zero_var_indexes |
17980 | 234 |
end; |
235 |
||
52811
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
236 |
val prove_multi = prove_common true 0; |
17980 | 237 |
|
52811
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
238 |
fun prove_future_pri pri ctxt xs asms prop tac = |
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
239 |
hd (prove_common false pri ctxt xs asms [prop] tac); |
51118
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
240 |
|
52811
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
241 |
val prove_future = prove_future_pri ~1; |
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
242 |
|
dae6c61f991e
clarified priority of "skipped" proofs, which might take long but do not produce relevant information (potential conflict of quick interactive feedback vs. performance in batch mode);
wenzelm
parents:
52775
diff
changeset
|
243 |
fun prove ctxt xs asms prop tac = hd (prove_multi ctxt xs asms [prop] tac); |
20056 | 244 |
|
51118
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
245 |
fun prove_global_future thy xs asms prop tac = |
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
246 |
Drule.export_without_context (prove_future (Proof_Context.init_global thy) xs asms prop tac); |
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
247 |
|
20056 | 248 |
fun prove_global thy xs asms prop tac = |
42360 | 249 |
Drule.export_without_context (prove (Proof_Context.init_global thy) xs asms prop tac); |
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
250 |
|
51551 | 251 |
fun prove_sorry ctxt xs asms prop tac = |
52059 | 252 |
if Config.get ctxt quick_and_dirty then |
51552
c713c9505f68
clarified Skip_Proof.cheat_tac: more standard tactic;
wenzelm
parents:
51551
diff
changeset
|
253 |
prove ctxt xs asms prop (fn _ => ALLGOALS Skip_Proof.cheat_tac) |
53189
ee8b8dafef0e
discontinued parallel_subproofs_saturation and related internal counters (superseded by parallel_subproofs_threshold and timing information);
wenzelm
parents:
52811
diff
changeset
|
254 |
else (if future_enabled 1 then prove_future_pri ~2 else prove) ctxt xs asms prop tac; |
51551 | 255 |
|
256 |
fun prove_sorry_global thy xs asms prop tac = |
|
257 |
Drule.export_without_context |
|
258 |
(prove_sorry (Proof_Context.init_global thy) xs asms prop tac); |
|
259 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
260 |
|
17980 | 261 |
|
21687 | 262 |
(** goal structure **) |
263 |
||
52458
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
264 |
(* rearrange subgoals *) |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
265 |
|
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
266 |
fun restrict i n st = |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
267 |
if i < 1 orelse n < 1 orelse i + n - 1 > Thm.nprems_of st |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
268 |
then raise THM ("Goal.restrict", i, [st]) |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
269 |
else rotate_prems (i - 1) st |> protect n; |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
270 |
|
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
271 |
fun unrestrict i = conclude #> rotate_prems (1 - i); |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
272 |
|
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
273 |
(*with structural marker*) |
17980 | 274 |
fun SELECT_GOAL tac i st = |
19191 | 275 |
if Thm.nprems_of st = 1 andalso i = 1 then tac st |
52458
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
276 |
else (PRIMITIVE (restrict i 1) THEN tac THEN PRIMITIVE (unrestrict i)) st; |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
277 |
|
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
278 |
(*without structural marker*) |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
279 |
fun PREFER_GOAL tac i st = |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
280 |
if i < 1 orelse i > Thm.nprems_of st then Seq.empty |
210bca64b894
less intrusive SELECT_GOAL: merely rearrange subgoals without detaching goal state, and thus preserve maxidx context;
wenzelm
parents:
52456
diff
changeset
|
281 |
else (PRIMITIVE (rotate_prems (i - 1)) THEN tac THEN PRIMITIVE (rotate_prems (1 - i))) st; |
17980 | 282 |
|
21687 | 283 |
|
284 |
(* multiple goals *) |
|
285 |
||
23418 | 286 |
fun precise_conjunction_tac 0 i = eq_assume_tac i |
287 |
| precise_conjunction_tac 1 i = SUBGOAL (K all_tac) i |
|
288 |
| precise_conjunction_tac n i = PRIMITIVE (Drule.with_subgoal i (Conjunction.curry_balanced n)); |
|
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
289 |
|
23418 | 290 |
val adhoc_conjunction_tac = REPEAT_ALL_NEW |
291 |
(SUBGOAL (fn (goal, i) => |
|
292 |
if can Logic.dest_conjunction goal then rtac Conjunction.conjunctionI i |
|
293 |
else no_tac)); |
|
21687 | 294 |
|
23418 | 295 |
val conjunction_tac = SUBGOAL (fn (goal, i) => |
296 |
precise_conjunction_tac (length (Logic.dest_conjunctions goal)) i ORELSE |
|
297 |
TRY (adhoc_conjunction_tac i)); |
|
21687 | 298 |
|
23418 | 299 |
val recover_conjunction_tac = PRIMITIVE (fn th => |
300 |
Conjunction.uncurry_balanced (Thm.nprems_of th) th); |
|
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
301 |
|
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
302 |
fun PRECISE_CONJUNCTS n tac = |
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
303 |
SELECT_GOAL (precise_conjunction_tac n 1 |
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
304 |
THEN tac |
23418 | 305 |
THEN recover_conjunction_tac); |
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
306 |
|
21687 | 307 |
fun CONJUNCTS tac = |
308 |
SELECT_GOAL (conjunction_tac 1 |
|
309 |
THEN tac |
|
23418 | 310 |
THEN recover_conjunction_tac); |
21687 | 311 |
|
312 |
||
313 |
(* hhf normal form *) |
|
314 |
||
315 |
val norm_hhf_tac = |
|
316 |
rtac Drule.asm_rl (*cheap approximation -- thanks to builtin Logic.flatten_params*) |
|
317 |
THEN' SUBGOAL (fn (t, i) => |
|
318 |
if Drule.is_norm_hhf t then all_tac |
|
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
39125
diff
changeset
|
319 |
else rewrite_goal_tac Drule.norm_hhf_eqs i); |
21687 | 320 |
|
23237 | 321 |
|
322 |
(* non-atomic goal assumptions *) |
|
323 |
||
23356 | 324 |
fun non_atomic (Const ("==>", _) $ _ $ _) = true |
325 |
| non_atomic (Const ("all", _) $ _) = true |
|
326 |
| non_atomic _ = false; |
|
327 |
||
23237 | 328 |
fun assume_rule_tac ctxt = norm_hhf_tac THEN' CSUBGOAL (fn (goal, i) => |
329 |
let |
|
42495
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42371
diff
changeset
|
330 |
val ((_, goal'), ctxt') = Variable.focus_cterm goal ctxt; |
23237 | 331 |
val goal'' = Drule.cterm_rule (singleton (Variable.export ctxt' ctxt)) goal'; |
23356 | 332 |
val Rs = filter (non_atomic o Thm.term_of) (Drule.strip_imp_prems goal''); |
23237 | 333 |
val tacs = Rs |> map (fn R => |
52732 | 334 |
etac (Raw_Simplifier.norm_hhf (Thm.trivial R)) THEN_ALL_NEW assume_tac); |
23237 | 335 |
in fold_rev (curry op APPEND') tacs (K no_tac) i end); |
336 |
||
32365 | 337 |
|
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
338 |
|
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
339 |
(** parallel tacticals **) |
32365 | 340 |
|
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
341 |
(* parallel choice of single results *) |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
342 |
|
32365 | 343 |
fun PARALLEL_CHOICE tacs st = |
344 |
(case Par_List.get_some (fn tac => SINGLE tac st) tacs of |
|
345 |
NONE => Seq.empty |
|
346 |
| SOME st' => Seq.single st'); |
|
347 |
||
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
348 |
|
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
349 |
(* parallel refinement of non-schematic goal by single results *) |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
350 |
|
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
351 |
local |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
352 |
|
32788
a65deb8f9434
PARALLEL_GOALS: proper scope for exception FAILED, with dummy argument to prevent its interpretation as variable;
wenzelm
parents:
32738
diff
changeset
|
353 |
exception FAILED of unit; |
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
354 |
|
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
355 |
fun retrofit st' = |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
356 |
rotate_prems ~1 #> |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
357 |
Thm.bicompose {flatten = false, match = false, incremented = false} |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
358 |
(false, conclude st', Thm.nprems_of st') 1; |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
359 |
|
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
360 |
in |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
361 |
|
42370 | 362 |
fun PARALLEL_GOALS tac = |
363 |
Thm.adjust_maxidx_thm ~1 #> |
|
364 |
(fn st => |
|
42371
5900f06b4198
enable PARALLEL_GOALS more liberally, unlike forked proofs (cf. 34b9652b2f45);
wenzelm
parents:
42370
diff
changeset
|
365 |
if not (Multithreading.enabled ()) orelse Thm.maxidx_of st >= 0 orelse Thm.nprems_of st <= 1 |
42370 | 366 |
then DETERM tac st |
367 |
else |
|
368 |
let |
|
369 |
fun try_tac g = |
|
370 |
(case SINGLE tac g of |
|
371 |
NONE => raise FAILED () |
|
372 |
| SOME g' => g'); |
|
32365 | 373 |
|
42370 | 374 |
val goals = Drule.strip_imp_prems (Thm.cprop_of st); |
375 |
val results = Par_List.map (try_tac o init) goals; |
|
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
376 |
in EVERY (map retrofit (rev results)) st end |
42370 | 377 |
handle FAILED () => Seq.empty); |
32365 | 378 |
|
18207 | 379 |
end; |
380 |
||
52461
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
381 |
end; |
ef4c16887f83
more scalable PARALLEL_GOALS, using more elementary retrofit;
wenzelm
parents:
52458
diff
changeset
|
382 |
|
32365 | 383 |
structure Basic_Goal: BASIC_GOAL = Goal; |
384 |
open Basic_Goal; |