author | wenzelm |
Tue, 19 Feb 2013 17:55:26 +0100 | |
changeset 51222 | 8c3e5fb41139 |
parent 51118 | 32a5994dd205 |
child 51276 | 05522141d244 |
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 |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
10 |
val parallel_proofs_threshold: int Unsynchronized.ref |
17980 | 11 |
val SELECT_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 |
|
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
22 |
val protect: 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 |
51222
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
27 |
val fork_name: string -> int -> (unit -> 'a) -> 'a future |
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
28 |
val fork: int -> (unit -> 'a) -> 'a future |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
29 |
val peek_futures: serial -> unit future list |
49931
85780e6f8fd2
more basic Goal.reset_futures as snapshot of implicit state;
wenzelm
parents:
49893
diff
changeset
|
30 |
val reset_futures: unit -> Future.group list |
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
31 |
val future_enabled_level: int -> bool |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
32 |
val future_enabled: unit -> bool |
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
33 |
val future_enabled_nested: int -> bool |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
34 |
val future_result: Proof.context -> thm future -> term -> thm |
23356 | 35 |
val prove_internal: cterm list -> cterm -> (thm list -> tactic) -> thm |
20290 | 36 |
val prove_multi: Proof.context -> string list -> term list -> term list -> |
37 |
({prems: thm list, context: Proof.context} -> tactic) -> thm list |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
38 |
val prove_future: Proof.context -> string list -> term list -> term -> |
28340 | 39 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
20290 | 40 |
val prove: Proof.context -> string list -> term list -> term -> |
41 |
({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
|
42 |
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
|
43 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
26713
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
44 |
val prove_global: theory -> string list -> term list -> term -> |
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
45 |
({prems: thm list, context: Proof.context} -> tactic) -> thm |
19184 | 46 |
val extract: int -> int -> thm -> thm Seq.seq |
47 |
val retrofit: int -> int -> thm -> thm -> thm Seq.seq |
|
23418 | 48 |
val conjunction_tac: int -> tactic |
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
49 |
val precise_conjunction_tac: int -> int -> tactic |
23418 | 50 |
val recover_conjunction_tac: tactic |
21687 | 51 |
val norm_hhf_tac: int -> tactic |
52 |
val compose_hhf_tac: thm -> 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 |
(* |
|
18119 | 70 |
C |
71 |
--- (protect) |
|
72 |
#C |
|
17980 | 73 |
*) |
29345 | 74 |
fun protect th = Drule.comp_no_flatten (th, 0) 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 = |
17980 | 89 |
(case Thm.nprems_of th of |
49845 | 90 |
0 => th |
17980 | 91 |
| n => raise THM ("Proof failed.\n" ^ |
49847 | 92 |
Pretty.string_of (Goal_Display.pretty_goal {main = true, limit = false} ctxt th), 0, [th])); |
32197 | 93 |
|
49845 | 94 |
fun finish ctxt = check_finished ctxt #> conclude; |
17980 | 95 |
|
96 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
97 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
98 |
(** results **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
99 |
|
28340 | 100 |
(* normal form *) |
101 |
||
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
102 |
val norm_result = |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
103 |
Drule.flexflex_unique |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
39125
diff
changeset
|
104 |
#> Raw_Simplifier.norm_hhf_protect |
21604
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
105 |
#> Thm.strip_shyps |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
106 |
#> Drule.zero_var_indexes; |
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
107 |
|
1af327306c8e
added norm/close_result (supercede local_standard etc.);
wenzelm
parents:
21579
diff
changeset
|
108 |
|
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
109 |
(* forked proofs *) |
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
110 |
|
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
111 |
local |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
112 |
|
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
113 |
val forked_proofs = |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
114 |
Synchronized.var "forked_proofs" |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
115 |
(0, []: Future.group list, Inttab.empty: unit future list Inttab.table); |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
116 |
|
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
117 |
fun count_forked i = |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
118 |
Synchronized.change forked_proofs (fn (m, groups, tab) => |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
119 |
let |
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
120 |
val n = m + i; |
50974
55f8bd61b029
added "tasks_proof" statistics, via slighly odd global reference Future.forked_proofs (NB: Future.report_status is intertwined with scheduler thread);
wenzelm
parents:
50914
diff
changeset
|
121 |
val _ = Future.forked_proofs := n; |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
122 |
in (n, groups, tab) end); |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
123 |
|
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
124 |
fun register_forked id future = |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
125 |
Synchronized.change forked_proofs (fn (m, groups, tab) => |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
126 |
let |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
127 |
val groups' = Task_Queue.group_of_task (Future.task_of future) :: groups; |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
128 |
val tab' = Inttab.cons_list (id, Future.map (K ()) future) tab; |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
129 |
in (m, groups', tab') end); |
37186
349e9223c685
explicit markup for forked goals, as indicated by Goal.fork;
wenzelm
parents:
36613
diff
changeset
|
130 |
|
49036
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
131 |
fun status task markups = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
132 |
let val props = Markup.properties [(Markup.taskN, Task_Queue.str_of_task task)] |
49036
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
133 |
in Output.status (implode (map (Markup.markup_only o props) markups)) end; |
49009 | 134 |
|
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
135 |
in |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
136 |
|
51222
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
137 |
fun fork_name name pri e = |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
138 |
uninterruptible (fn _ => fn () => |
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
139 |
let |
50914
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
140 |
val pos = Position.thread_data (); |
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
141 |
val id = the_default 0 (Position.parse_id pos); |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
142 |
val _ = count_forked 1; |
50914
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
143 |
|
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
144 |
val future = |
44302 | 145 |
(singleton o Future.forks) |
51222
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
146 |
{name = name, group = NONE, deps = [], pri = pri, interrupts = false} |
49036
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
147 |
(fn () => |
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
148 |
let |
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
149 |
val task = the (Future.worker_task ()); |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
150 |
val _ = status task [Markup.running]; |
50914
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
151 |
val result = |
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
152 |
Exn.capture (Future.interruptible_task e) () |
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
153 |
|> Future.identify_result pos; |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
154 |
val _ = status task [Markup.finished, Markup.joined]; |
49036
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
155 |
val _ = |
49041
9edfd36a0355
more informative error message from failed goal forks (violating old-style TTY protocol!);
wenzelm
parents:
49037
diff
changeset
|
156 |
(case result of |
9edfd36a0355
more informative error message from failed goal forks (violating old-style TTY protocol!);
wenzelm
parents:
49037
diff
changeset
|
157 |
Exn.Res _ => () |
9edfd36a0355
more informative error message from failed goal forks (violating old-style TTY protocol!);
wenzelm
parents:
49037
diff
changeset
|
158 |
| Exn.Exn exn => |
49830
28d207ba9340
no special treatment of errors inside goal forks without transaction id, to avoid duplication in plain build with sequential log, for example;
wenzelm
parents:
49829
diff
changeset
|
159 |
if id = 0 orelse Exn.is_interrupt exn then () |
49829
2bc5924b117f
do not treat interrupt as error here, to avoid confusion in log etc.;
wenzelm
parents:
49061
diff
changeset
|
160 |
else |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
161 |
(status task [Markup.failed]; |
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
162 |
Output.report (Markup.markup_only Markup.bad); |
50914
fe4714886d92
identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents:
50911
diff
changeset
|
163 |
List.app (Future.error_msg pos) (ML_Compiler.exn_messages_ids exn))); |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
164 |
val _ = count_forked ~1; |
49036
4680c4046814
further refinement of command status, to accomodate forked proofs;
wenzelm
parents:
49012
diff
changeset
|
165 |
in Exn.release result end); |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49931
diff
changeset
|
166 |
val _ = status (Future.task_of future) [Markup.forked]; |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
167 |
val _ = register_forked id future; |
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
168 |
in future end) (); |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
169 |
|
51222
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
170 |
fun fork pri e = fork_name "Goal.fork" pri e; |
41677 | 171 |
|
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
172 |
fun forked_count () = #1 (Synchronized.value forked_proofs); |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
173 |
|
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
174 |
fun peek_futures id = |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
175 |
Inttab.lookup_list (#3 (Synchronized.value forked_proofs)) id; |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
176 |
|
49931
85780e6f8fd2
more basic Goal.reset_futures as snapshot of implicit state;
wenzelm
parents:
49893
diff
changeset
|
177 |
fun reset_futures () = |
85780e6f8fd2
more basic Goal.reset_futures as snapshot of implicit state;
wenzelm
parents:
49893
diff
changeset
|
178 |
Synchronized.change_result forked_proofs (fn (m, groups, tab) => |
50974
55f8bd61b029
added "tasks_proof" statistics, via slighly odd global reference Future.forked_proofs (NB: Future.report_status is intertwined with scheduler thread);
wenzelm
parents:
50914
diff
changeset
|
179 |
(Future.forked_proofs := 0; (groups, (0, [], Inttab.empty)))); |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
180 |
|
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
181 |
end; |
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
182 |
|
41677 | 183 |
|
41703
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
184 |
(* scheduling parameters *) |
d27950860514
parallelization of nested Isar proofs is subject to Goal.parallel_proofs_threshold;
wenzelm
parents:
41683
diff
changeset
|
185 |
|
32738 | 186 |
val parallel_proofs = Unsynchronized.ref 1; |
51110 | 187 |
val parallel_proofs_threshold = Unsynchronized.ref 100; |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
188 |
|
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
189 |
fun future_enabled_level n = |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
190 |
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
|
191 |
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
|
192 |
|
49012
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
193 |
fun future_enabled () = future_enabled_level 1; |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
194 |
|
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
195 |
fun future_enabled_nested n = |
8686c36fa27d
refined treatment of forked proofs at transaction boundaries, including proof commands (see also 7ee000ce5390);
wenzelm
parents:
49009
diff
changeset
|
196 |
future_enabled_level n andalso |
49061
7449b804073b
central management of forked goals wrt. transaction id;
wenzelm
parents:
49041
diff
changeset
|
197 |
forked_count () < ! parallel_proofs_threshold * Multithreading.max_threads_value (); |
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
198 |
|
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
199 |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
200 |
(* future_result *) |
28340 | 201 |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
202 |
fun future_result ctxt result prop = |
28340 | 203 |
let |
42360 | 204 |
val thy = Proof_Context.theory_of ctxt; |
28340 | 205 |
val _ = Context.reject_draft thy; |
206 |
val cert = Thm.cterm_of thy; |
|
207 |
val certT = Thm.ctyp_of thy; |
|
208 |
||
30473
e0b66c11e7e4
Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents:
29448
diff
changeset
|
209 |
val assms = Assumption.all_assms_of ctxt; |
28340 | 210 |
val As = map Thm.term_of assms; |
211 |
||
212 |
val xs = map Free (fold Term.add_frees (prop :: As) []); |
|
213 |
val fixes = map cert xs; |
|
214 |
||
215 |
val tfrees = fold Term.add_tfrees (prop :: As) []; |
|
216 |
val instT = map (fn (a, S) => (certT (TVar ((a, 0), S)), certT (TFree (a, S)))) tfrees; |
|
217 |
||
218 |
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
|
219 |
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
|
220 |
|> Thm.weaken_sorts (Variable.sorts_of ctxt); |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
221 |
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
|
222 |
(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
|
223 |
Thm.adjust_maxidx_thm ~1 #> |
28973
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
224 |
Drule.implies_intr_list assms #> |
c549650d1442
future proofs: pass actual futures to facilitate composite computations;
wenzelm
parents:
28619
diff
changeset
|
225 |
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
|
226 |
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
|
227 |
Thm.strip_shyps); |
28340 | 228 |
val local_result = |
32056
f4b74cbecdaf
future_result: explicitly impose Variable.sorts_of again;
wenzelm
parents:
30473
diff
changeset
|
229 |
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
|
230 |
|> Thm.close_derivation |
28340 | 231 |
|> Thm.instantiate (instT, []) |
232 |
|> Drule.forall_elim_list fixes |
|
233 |
|> fold (Thm.elim_implies o Thm.assume) assms; |
|
234 |
in local_result end; |
|
235 |
||
236 |
||
18027
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
237 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
238 |
(** tactical theorem proving **) |
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
239 |
|
23356 | 240 |
(* prove_internal -- minimal checks, no normalization of result! *) |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
241 |
|
23356 | 242 |
fun prove_internal casms cprop tac = |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
243 |
(case SINGLE (tac (map Assumption.assume casms)) (init cprop) of |
32197 | 244 |
SOME th => Drule.implies_intr_list casms |
245 |
(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
|
246 |
| NONE => error "Tactic failed"); |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
247 |
|
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
248 |
|
28340 | 249 |
(* prove_common etc. *) |
17986 | 250 |
|
28340 | 251 |
fun prove_common immediate ctxt xs asms props tac = |
17980 | 252 |
let |
42360 | 253 |
val thy = Proof_Context.theory_of ctxt; |
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26713
diff
changeset
|
254 |
val string_of_term = Syntax.string_of_term ctxt; |
20056 | 255 |
|
28355 | 256 |
val pos = Position.thread_data (); |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
257 |
fun err msg = cat_error msg |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
258 |
("The error(s) above occurred for the goal statement:\n" ^ |
28355 | 259 |
string_of_term (Logic.list_implies (asms, Logic.mk_conjunction_list props)) ^ |
48992 | 260 |
(case Position.here pos of "" => "" | s => "\n" ^ s)); |
17980 | 261 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
262 |
fun cert_safe t = Thm.cterm_of thy (Envir.beta_norm (Term.no_dummy_patterns t)) |
17980 | 263 |
handle TERM (msg, _) => err msg | TYPE (msg, _, _) => err msg; |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
264 |
val casms = map cert_safe asms; |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
265 |
val cprops = map cert_safe props; |
17980 | 266 |
|
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
267 |
val (prems, ctxt') = ctxt |
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
268 |
|> Variable.add_fixes_direct xs |
27218
4548c83cd508
prove: full Variable.declare_term, including constraints;
wenzelm
parents:
26939
diff
changeset
|
269 |
|> fold Variable.declare_term (asms @ props) |
26713
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
270 |
|> Assumption.add_assumes casms |
1c6181def1d0
prove_global: Variable.set_body true, pass context;
wenzelm
parents:
26628
diff
changeset
|
271 |
||> Variable.set_body true; |
28619
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
272 |
val sorts = Variable.sorts_of ctxt'; |
17980 | 273 |
|
28619
89f9dd800a22
prove_common: include all sorts from context into statement, check shyps of result;
wenzelm
parents:
28446
diff
changeset
|
274 |
val stmt = Thm.weaken_sorts sorts (Conjunction.mk_conjunction_balanced cprops); |
28340 | 275 |
|
276 |
fun result () = |
|
277 |
(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
|
278 |
NONE => err "Tactic failed" |
28340 | 279 |
| SOME st => |
32197 | 280 |
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
|
281 |
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
|
282 |
then Thm.check_shyps sorts res |
28340 | 283 |
else err ("Proved a different theorem: " ^ string_of_term (Thm.prop_of res)) |
284 |
end); |
|
285 |
val res = |
|
29448
34b9652b2f45
added Goal.future_enabled abstraction -- now also checks that this is already
wenzelm
parents:
29435
diff
changeset
|
286 |
if immediate orelse #maxidx (Thm.rep_cterm stmt) >= 0 orelse not (future_enabled ()) |
29088
95a239a5e055
future proofs: more robust check via Future.enabled;
wenzelm
parents:
28973
diff
changeset
|
287 |
then result () |
51222
8c3e5fb41139
improved scheduling of forked proofs, based on elapsed time estimate (from last run via session log file);
wenzelm
parents:
51118
diff
changeset
|
288 |
else future_result ctxt' (fork ~1 result) (Thm.term_of stmt); |
17980 | 289 |
in |
28340 | 290 |
Conjunction.elim_balanced (length props) res |
20290 | 291 |
|> map (Assumption.export false ctxt' ctxt) |
20056 | 292 |
|> Variable.export ctxt' ctxt |
20250
c3f209752749
prove: proper assumption context, more tactic arguments;
wenzelm
parents:
20228
diff
changeset
|
293 |
|> map Drule.zero_var_indexes |
17980 | 294 |
end; |
295 |
||
28341 | 296 |
val prove_multi = prove_common true; |
17980 | 297 |
|
28446
a01de3b3fa2e
renamed promise to future, tuned related interfaces;
wenzelm
parents:
28363
diff
changeset
|
298 |
fun prove_future ctxt xs asms prop tac = hd (prove_common false ctxt xs asms [prop] tac); |
51118
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
299 |
|
28340 | 300 |
fun prove ctxt xs asms prop tac = hd (prove_common true ctxt xs asms [prop] tac); |
20056 | 301 |
|
51118
32a5994dd205
tuned signature -- legacy packages might want to fork proofs as well;
wenzelm
parents:
51110
diff
changeset
|
302 |
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
|
303 |
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
|
304 |
|
20056 | 305 |
fun prove_global thy xs asms prop tac = |
42360 | 306 |
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
|
307 |
|
09ab79d4e8e1
renamed Goal constant to prop, more general protect/unprotect interfaces;
wenzelm
parents:
17986
diff
changeset
|
308 |
|
17980 | 309 |
|
21687 | 310 |
(** goal structure **) |
311 |
||
312 |
(* nested goals *) |
|
18207 | 313 |
|
19184 | 314 |
fun extract i n st = |
315 |
(if i < 1 orelse n < 1 orelse i + n - 1 > Thm.nprems_of st then Seq.empty |
|
316 |
else if n = 1 then Seq.single (Thm.cprem_of st i) |
|
23418 | 317 |
else |
318 |
Seq.single (Conjunction.mk_conjunction_balanced (map (Thm.cprem_of st) (i upto i + n - 1)))) |
|
20260 | 319 |
|> Seq.map (Thm.adjust_maxidx_cterm ~1 #> init); |
17980 | 320 |
|
19221 | 321 |
fun retrofit i n st' st = |
322 |
(if n = 1 then st |
|
23418 | 323 |
else st |> Drule.with_subgoal i (Conjunction.uncurry_balanced n)) |
19221 | 324 |
|> Thm.compose_no_flatten false (conclude st', Thm.nprems_of st') i; |
18207 | 325 |
|
17980 | 326 |
fun SELECT_GOAL tac i st = |
19191 | 327 |
if Thm.nprems_of st = 1 andalso i = 1 then tac st |
19184 | 328 |
else Seq.lifts (retrofit i 1) (Seq.maps tac (extract i 1 st)) st; |
17980 | 329 |
|
21687 | 330 |
|
331 |
(* multiple goals *) |
|
332 |
||
23418 | 333 |
fun precise_conjunction_tac 0 i = eq_assume_tac i |
334 |
| precise_conjunction_tac 1 i = SUBGOAL (K all_tac) i |
|
335 |
| 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
|
336 |
|
23418 | 337 |
val adhoc_conjunction_tac = REPEAT_ALL_NEW |
338 |
(SUBGOAL (fn (goal, i) => |
|
339 |
if can Logic.dest_conjunction goal then rtac Conjunction.conjunctionI i |
|
340 |
else no_tac)); |
|
21687 | 341 |
|
23418 | 342 |
val conjunction_tac = SUBGOAL (fn (goal, i) => |
343 |
precise_conjunction_tac (length (Logic.dest_conjunctions goal)) i ORELSE |
|
344 |
TRY (adhoc_conjunction_tac i)); |
|
21687 | 345 |
|
23418 | 346 |
val recover_conjunction_tac = PRIMITIVE (fn th => |
347 |
Conjunction.uncurry_balanced (Thm.nprems_of th) th); |
|
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
348 |
|
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
349 |
fun PRECISE_CONJUNCTS n tac = |
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
350 |
SELECT_GOAL (precise_conjunction_tac n 1 |
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
351 |
THEN tac |
23418 | 352 |
THEN recover_conjunction_tac); |
23414
927203ad4b3a
tuned conjunction tactics: slightly smaller proof terms;
wenzelm
parents:
23356
diff
changeset
|
353 |
|
21687 | 354 |
fun CONJUNCTS tac = |
355 |
SELECT_GOAL (conjunction_tac 1 |
|
356 |
THEN tac |
|
23418 | 357 |
THEN recover_conjunction_tac); |
21687 | 358 |
|
359 |
||
360 |
(* hhf normal form *) |
|
361 |
||
362 |
val norm_hhf_tac = |
|
363 |
rtac Drule.asm_rl (*cheap approximation -- thanks to builtin Logic.flatten_params*) |
|
364 |
THEN' SUBGOAL (fn (t, i) => |
|
365 |
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
|
366 |
else rewrite_goal_tac Drule.norm_hhf_eqs i); |
21687 | 367 |
|
25301 | 368 |
fun compose_hhf_tac th i st = |
369 |
PRIMSEQ (Thm.bicompose false (false, Drule.lift_all (Thm.cprem_of st i) th, 0) i) st; |
|
21687 | 370 |
|
23237 | 371 |
|
372 |
(* non-atomic goal assumptions *) |
|
373 |
||
23356 | 374 |
fun non_atomic (Const ("==>", _) $ _ $ _) = true |
375 |
| non_atomic (Const ("all", _) $ _) = true |
|
376 |
| non_atomic _ = false; |
|
377 |
||
23237 | 378 |
fun assume_rule_tac ctxt = norm_hhf_tac THEN' CSUBGOAL (fn (goal, i) => |
379 |
let |
|
42495
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42371
diff
changeset
|
380 |
val ((_, goal'), ctxt') = Variable.focus_cterm goal ctxt; |
23237 | 381 |
val goal'' = Drule.cterm_rule (singleton (Variable.export ctxt' ctxt)) goal'; |
23356 | 382 |
val Rs = filter (non_atomic o Thm.term_of) (Drule.strip_imp_prems goal''); |
23237 | 383 |
val tacs = Rs |> map (fn R => |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
39125
diff
changeset
|
384 |
Tactic.etac (Raw_Simplifier.norm_hhf (Thm.trivial R)) THEN_ALL_NEW assume_tac); |
23237 | 385 |
in fold_rev (curry op APPEND') tacs (K no_tac) i end); |
386 |
||
32365 | 387 |
|
388 |
(* parallel tacticals *) |
|
389 |
||
390 |
(*parallel choice of single results*) |
|
391 |
fun PARALLEL_CHOICE tacs st = |
|
392 |
(case Par_List.get_some (fn tac => SINGLE tac st) tacs of |
|
393 |
NONE => Seq.empty |
|
394 |
| SOME st' => Seq.single st'); |
|
395 |
||
396 |
(*parallel refinement of non-schematic goal by single results*) |
|
32788
a65deb8f9434
PARALLEL_GOALS: proper scope for exception FAILED, with dummy argument to prevent its interpretation as variable;
wenzelm
parents:
32738
diff
changeset
|
397 |
exception FAILED of unit; |
42370 | 398 |
fun PARALLEL_GOALS tac = |
399 |
Thm.adjust_maxidx_thm ~1 #> |
|
400 |
(fn st => |
|
42371
5900f06b4198
enable PARALLEL_GOALS more liberally, unlike forked proofs (cf. 34b9652b2f45);
wenzelm
parents:
42370
diff
changeset
|
401 |
if not (Multithreading.enabled ()) orelse Thm.maxidx_of st >= 0 orelse Thm.nprems_of st <= 1 |
42370 | 402 |
then DETERM tac st |
403 |
else |
|
404 |
let |
|
405 |
fun try_tac g = |
|
406 |
(case SINGLE tac g of |
|
407 |
NONE => raise FAILED () |
|
408 |
| SOME g' => g'); |
|
32365 | 409 |
|
42370 | 410 |
val goals = Drule.strip_imp_prems (Thm.cprop_of st); |
411 |
val results = Par_List.map (try_tac o init) goals; |
|
412 |
in ALLGOALS (fn i => retrofit i 1 (nth results (i - 1))) st end |
|
413 |
handle FAILED () => Seq.empty); |
|
32365 | 414 |
|
18207 | 415 |
end; |
416 |
||
32365 | 417 |
structure Basic_Goal: BASIC_GOAL = Goal; |
418 |
open Basic_Goal; |