author | wenzelm |
Sat, 21 Mar 2009 20:38:49 +0100 | |
changeset 30633 | cc18ae3c1c7f |
parent 30537 | 0dd8dfe424cf |
child 30798 | 36b41d297d65 |
permissions | -rw-r--r-- |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
1 |
(* Title: HOL/Tools/atp_manager.ML |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
2 |
Author: Fabian Immler, TU Muenchen |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
3 |
|
28571 | 4 |
ATP threads are registered here. |
5 |
Threads with the same birth-time are seen as one group. |
|
6 |
All threads of a group are killed when one thread of it has been successful, |
|
7 |
or after a certain time, |
|
8 |
or when the maximum number of threads exceeds; then the oldest thread is killed. |
|
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
9 |
*) |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
10 |
|
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
11 |
signature ATP_MANAGER = |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
12 |
sig |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
13 |
val get_atps: unit -> string |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
14 |
val set_atps: string -> unit |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
15 |
val get_max_atps: unit -> int |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
16 |
val set_max_atps: int -> unit |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
17 |
val get_timeout: unit -> int |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
18 |
val set_timeout: int -> unit |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
19 |
val kill: unit -> unit |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
20 |
val info: unit -> unit |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
21 |
val messages: int option -> unit |
30537 | 22 |
type prover = int -> int -> Proof.context * (thm list * thm) -> bool * string |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
23 |
val add_prover: string -> prover -> theory -> theory |
28484 | 24 |
val print_provers: theory -> unit |
28571 | 25 |
val sledgehammer: string list -> Proof.state -> unit |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
26 |
end; |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
27 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
28 |
structure AtpManager: ATP_MANAGER = |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
29 |
struct |
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
30 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
31 |
(** preferences **) |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
32 |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
33 |
val message_store_limit = 20; |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
34 |
val message_display_limit = 5; |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
35 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
36 |
local |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
37 |
|
29598 | 38 |
val atps = ref "e remote_vampire"; |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
39 |
val max_atps = ref 5; (* ~1 means infinite number of atps *) |
29784 | 40 |
val timeout = ref 60; |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
41 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
42 |
in |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
43 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
44 |
fun get_atps () = CRITICAL (fn () => ! atps); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
45 |
fun set_atps str = CRITICAL (fn () => atps := str); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
46 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
47 |
fun get_max_atps () = CRITICAL (fn () => ! max_atps); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
48 |
fun set_max_atps number = CRITICAL (fn () => max_atps := number); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
49 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
50 |
fun get_timeout () = CRITICAL (fn () => ! timeout); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
51 |
fun set_timeout time = CRITICAL (fn () => timeout := time); |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
52 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
53 |
val _ = |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
54 |
ProofGeneralPgip.add_preference "Proof" |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
55 |
(Preferences.string_pref atps |
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
56 |
"ATP: provers" "Default automatic provers (separated by whitespace)"); |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
57 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
58 |
val _ = ProofGeneralPgip.add_preference "Proof" |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
59 |
(Preferences.int_pref max_atps |
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
60 |
"ATP: maximum number" "How many provers may run in parallel"); |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
61 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
62 |
val _ = ProofGeneralPgip.add_preference "Proof" |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
63 |
(Preferences.int_pref timeout |
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
64 |
"ATP: timeout" "ATPs will be interrupted after this time (in seconds)"); |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
65 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
66 |
end; |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
67 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
68 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
69 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
70 |
(** thread management **) |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
71 |
|
28582 | 72 |
(* data structures over threads *) |
73 |
||
74 |
structure ThreadHeap = HeapFun |
|
75 |
( |
|
76 |
type elem = Time.time * Thread.thread; |
|
77 |
fun ord ((a, _), (b, _)) = Time.compare (a, b); |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
78 |
); |
28582 | 79 |
|
80 |
val lookup_thread = AList.lookup Thread.equal; |
|
81 |
val delete_thread = AList.delete Thread.equal; |
|
82 |
val update_thread = AList.update Thread.equal; |
|
83 |
||
84 |
||
85 |
(* state of thread manager *) |
|
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
86 |
|
28582 | 87 |
datatype T = State of |
88 |
{timeout_heap: ThreadHeap.T, |
|
89 |
oldest_heap: ThreadHeap.T, |
|
90 |
active: (Thread.thread * (Time.time * Time.time * string)) list, |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
91 |
cancelling: (Thread.thread * (Time.time * Time.time * string)) list, |
29620 | 92 |
messages: string list, |
93 |
store: string list}; |
|
28582 | 94 |
|
29620 | 95 |
fun make_state timeout_heap oldest_heap active cancelling messages store = |
28582 | 96 |
State {timeout_heap = timeout_heap, oldest_heap = oldest_heap, |
29620 | 97 |
active = active, cancelling = cancelling, messages = messages, store = store}; |
28582 | 98 |
|
29620 | 99 |
val state = Synchronized.var "atp_manager" (make_state ThreadHeap.empty ThreadHeap.empty [] [] [] []); |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
100 |
|
28582 | 101 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
102 |
(* the managing thread *) |
28582 | 103 |
|
104 |
(*watches over running threads and interrupts them if required*) |
|
105 |
val managing_thread = ref (NONE: Thread.thread option); |
|
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
106 |
|
28582 | 107 |
|
29150
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
108 |
(* unregister thread *) |
28582 | 109 |
|
29620 | 110 |
fun unregister (success, message) thread = Synchronized.change state |
111 |
(fn state as State {timeout_heap, oldest_heap, active, cancelling, messages, store} => |
|
29150
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
112 |
(case lookup_thread active thread of |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
113 |
SOME (birthtime, _, description) => |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
114 |
let |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
115 |
val (group, active') = |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
116 |
if success then List.partition (fn (_, (tb, _, _)) => tb = birthtime) active |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
117 |
else List.partition (fn (th, _) => Thread.equal (th, thread)) active |
28582 | 118 |
|
29150
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
119 |
val now = Time.now () |
8af5ee47f30c
unregister: refrain from cancelling self, which sometimes caused sledghammer to fail just before printing the result;
wenzelm
parents:
29116
diff
changeset
|
120 |
val cancelling' = |
29620 | 121 |
fold (fn (th, (tb, _, desc)) => update_thread (th, (tb, now, desc))) group cancelling |
28582 | 122 |
|
29620 | 123 |
val message' = description ^ "\n" ^ message ^ |
29596 | 124 |
(if length group <= 1 then "" |
125 |
else "\nInterrupted " ^ string_of_int (length group - 1) ^ " other group members") |
|
29620 | 126 |
val store' = message' :: |
127 |
(if length store <= message_store_limit then store |
|
128 |
else #1 (chop message_store_limit store)) |
|
129 |
in make_state timeout_heap oldest_heap active' cancelling' (message' :: messages) store' end |
|
130 |
| NONE =>state)); |
|
28582 | 131 |
|
132 |
||
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
133 |
(* kill excessive atp threads *) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
134 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
135 |
fun excessive_atps active = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
136 |
let val max = get_max_atps () |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
137 |
in length active > max andalso max > ~1 end; |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
138 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
139 |
local |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
140 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
141 |
fun kill_oldest () = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
142 |
let exception Unchanged in |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
143 |
Synchronized.change_result state |
29620 | 144 |
(fn State {timeout_heap, oldest_heap, active, cancelling, messages, store} => |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
145 |
if ThreadHeap.is_empty oldest_heap orelse not (excessive_atps active) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
146 |
then raise Unchanged |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
147 |
else |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
148 |
let val ((_, oldest_thread), oldest_heap') = ThreadHeap.min_elem oldest_heap |
29620 | 149 |
in (oldest_thread, make_state timeout_heap oldest_heap' active cancelling messages store) end) |
150 |
|> unregister (false, "Interrupted (maximum number of ATPs exceeded)") |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
151 |
handle Unchanged => () |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
152 |
end; |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
153 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
154 |
in |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
155 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
156 |
fun kill_excessive () = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
157 |
let val State {active, ...} = Synchronized.value state |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
158 |
in if excessive_atps active then (kill_oldest (); kill_excessive ()) else () end; |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
159 |
|
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
160 |
end; |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
161 |
|
29620 | 162 |
fun print_new_messages () = |
163 |
let val to_print = Synchronized.change_result state |
|
164 |
(fn State {timeout_heap, oldest_heap, active, cancelling, messages, store} => |
|
165 |
(messages, make_state timeout_heap oldest_heap active cancelling [] store)) |
|
166 |
in if null to_print then () |
|
167 |
else priority ("Sledgehammer: " ^ (space_implode "\n\n" to_print)) end; |
|
168 |
||
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
169 |
|
28582 | 170 |
(* start a watching thread which runs forever -- only one may exist *) |
171 |
||
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
172 |
fun check_thread_manager () = CRITICAL (fn () => |
28582 | 173 |
if (case ! managing_thread of SOME thread => Thread.isActive thread | NONE => false) |
174 |
then () else managing_thread := SOME (SimpleThread.fork false (fn () => |
|
28571 | 175 |
let |
28582 | 176 |
val min_wait_time = Time.fromMilliseconds 300 |
177 |
val max_wait_time = Time.fromSeconds 10 |
|
178 |
||
179 |
(* wait for next thread to cancel, or maximum*) |
|
180 |
fun time_limit (State {timeout_heap, ...}) = |
|
181 |
(case try ThreadHeap.min timeout_heap of |
|
182 |
NONE => SOME (Time.+ (Time.now (), max_wait_time)) |
|
183 |
| SOME (time, _) => SOME time) |
|
184 |
||
29620 | 185 |
(* action: find threads whose timeout is reached, and interrupt cancelling threads *) |
186 |
fun action (State {timeout_heap, oldest_heap, active, cancelling, messages, store}) = |
|
28582 | 187 |
let val (timeout_threads, timeout_heap') = |
188 |
ThreadHeap.upto (Time.now (), Thread.self ()) timeout_heap |
|
189 |
in |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
190 |
if null timeout_threads andalso null cancelling andalso not (excessive_atps active) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
191 |
then NONE |
28582 | 192 |
else |
193 |
let |
|
194 |
val _ = List.app (SimpleThread.interrupt o #1) cancelling |
|
195 |
val cancelling' = filter (Thread.isActive o #1) cancelling |
|
29620 | 196 |
val state' = make_state timeout_heap' oldest_heap active cancelling' messages store |
28582 | 197 |
in SOME (map #2 timeout_threads, state') end |
198 |
end |
|
199 |
in |
|
200 |
while true do |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
201 |
(Synchronized.timed_access state time_limit action |
28582 | 202 |
|> these |
29620 | 203 |
|> List.app (unregister (false, "Interrupted (reached timeout)")); |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
204 |
kill_excessive (); |
29620 | 205 |
print_new_messages (); |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
206 |
(*give threads time to respond to interrupt*) |
28571 | 207 |
OS.Process.sleep min_wait_time) |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
208 |
end))); |
28582 | 209 |
|
210 |
||
211 |
(* thread is registered here by sledgehammer *) |
|
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
212 |
|
28582 | 213 |
fun register birthtime deadtime (thread, desc) = |
214 |
(check_thread_manager (); |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
215 |
Synchronized.change state |
29620 | 216 |
(fn State {timeout_heap, oldest_heap, active, cancelling, messages, store} => |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
217 |
let |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
218 |
val timeout_heap' = ThreadHeap.insert (deadtime, thread) timeout_heap |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
219 |
val oldest_heap' = ThreadHeap.insert (birthtime, thread) oldest_heap |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
220 |
val active' = update_thread (thread, (birthtime, deadtime, desc)) active |
29620 | 221 |
in make_state timeout_heap' oldest_heap' active' cancelling messages store end)); |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
222 |
|
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
223 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
224 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
225 |
(** user commands **) |
28582 | 226 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
227 |
(* kill: move all threads to cancelling *) |
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
228 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
229 |
fun kill () = Synchronized.change state |
29620 | 230 |
(fn State {timeout_heap, oldest_heap, active, cancelling, messages, store} => |
28582 | 231 |
let val formerly_active = map (fn (th, (tb, _, desc)) => (th, (tb, Time.now (), desc))) active |
29620 | 232 |
in make_state timeout_heap oldest_heap [] (formerly_active @ cancelling) messages store end); |
28582 | 233 |
|
234 |
||
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
235 |
(* ATP info *) |
28582 | 236 |
|
237 |
fun info () = |
|
238 |
let |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
239 |
val State {active, cancelling, ...} = Synchronized.value state |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
240 |
|
28571 | 241 |
fun running_info (_, (birth_time, dead_time, desc)) = "Running: " |
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
242 |
^ (string_of_int o Time.toSeconds) (Time.- (Time.now (), birth_time)) |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
243 |
^ " s -- " |
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
244 |
^ (string_of_int o Time.toSeconds) (Time.- (dead_time, Time.now ())) |
28571 | 245 |
^ " s to live:\n" ^ desc |
246 |
fun cancelling_info (_, (_, dead_time, desc)) = "Trying to interrupt thread since " |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
247 |
^ (string_of_int o Time.toSeconds) (Time.- (Time.now (), dead_time)) |
28571 | 248 |
^ " s:\n" ^ desc |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
249 |
|
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
250 |
val running = |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
251 |
if null active then "No ATPs running." |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
252 |
else space_implode "\n\n" ("Running ATPs:" :: map running_info active) |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
253 |
val interrupting = |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
254 |
if null cancelling then "" |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
255 |
else space_implode "\n\n" |
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
256 |
("Trying to interrupt the following ATPs:" :: map cancelling_info cancelling) |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
257 |
|
28582 | 258 |
in writeln (running ^ "\n" ^ interrupting) end; |
259 |
||
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
260 |
fun messages opt_limit = |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
261 |
let |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
262 |
val limit = the_default message_display_limit opt_limit; |
29620 | 263 |
val State {store = msgs, ...} = Synchronized.value state |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
264 |
val header = "Recent ATP messages" ^ |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
265 |
(if length msgs <= limit then ":" else " (" ^ string_of_int limit ^ " displayed):"); |
29116 | 266 |
in writeln (space_implode "\n\n" (header :: #1 (chop limit msgs))) end; |
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
267 |
|
28582 | 268 |
|
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
269 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
270 |
(** The Sledgehammer **) |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
271 |
|
28582 | 272 |
(* named provers *) |
28484 | 273 |
|
30537 | 274 |
type prover = int -> int -> Proof.context * (thm list * thm) -> bool * string; |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
275 |
|
28582 | 276 |
fun err_dup_prover name = error ("Duplicate prover: " ^ quote name); |
28477
9339d4dcec8b
version of sledgehammer using threads instead of processes, misc cleanup;
wenzelm
parents:
diff
changeset
|
277 |
|
28582 | 278 |
structure Provers = TheoryDataFun |
279 |
( |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
280 |
type T = (prover * stamp) Symtab.table |
28582 | 281 |
val empty = Symtab.empty |
282 |
val copy = I |
|
283 |
val extend = I |
|
284 |
fun merge _ tabs : T = Symtab.merge (eq_snd op =) tabs |
|
28589
581b2ab9827a
adding preferences is now permissive, no error handling here;
wenzelm
parents:
28586
diff
changeset
|
285 |
handle Symtab.DUP dup => err_dup_prover dup |
28582 | 286 |
); |
28484 | 287 |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
288 |
fun add_prover name prover thy = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
289 |
Provers.map (Symtab.update_new (name, (prover, stamp ()))) thy |
28582 | 290 |
handle Symtab.DUP dup => err_dup_prover dup; |
291 |
||
292 |
fun print_provers thy = Pretty.writeln |
|
293 |
(Pretty.strs ("external provers:" :: sort_strings (Symtab.keys (Provers.get thy)))); |
|
28571 | 294 |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
295 |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
296 |
(* start prover thread *) |
28484 | 297 |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
298 |
fun start_prover name birthtime deadtime i proof_state = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
299 |
(case Symtab.lookup (Provers.get (Proof.theory_of proof_state)) name of |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
300 |
NONE => warning ("Unknown external prover: " ^ quote name) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
301 |
| SOME (prover, _) => |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
302 |
let |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
303 |
val (ctxt, (_, goal)) = Proof.get_goal proof_state |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
304 |
val desc = |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
305 |
"external prover " ^ quote name ^ " for subgoal " ^ string_of_int i ^ ":\n" ^ |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
306 |
Syntax.string_of_term ctxt (Thm.term_of (Thm.cprem_of goal i)) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
307 |
val _ = SimpleThread.fork true (fn () => |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
308 |
let |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
309 |
val _ = register birthtime deadtime (Thread.self (), desc) |
30537 | 310 |
val result = prover (get_timeout ()) i (Proof.get_goal proof_state) |
28835 | 311 |
handle ResHolClause.TOO_TRIVIAL |
312 |
=> (true, "Empty clause: Try this command: " ^ Markup.markup Markup.sendback "apply metis") |
|
313 |
| ERROR msg |
|
314 |
=> (false, "Error: " ^ msg) |
|
29620 | 315 |
val _ = unregister result (Thread.self ()) |
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
316 |
in () end handle Interrupt => ()) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
317 |
in () end); |
28582 | 318 |
|
319 |
||
320 |
(* sledghammer for first subgoal *) |
|
321 |
||
322 |
fun sledgehammer names proof_state = |
|
323 |
let |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
324 |
val provers = |
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
325 |
if null names then String.tokens (Symbol.is_ascii_blank o String.str) (get_atps ()) |
28582 | 326 |
else names |
327 |
val birthtime = Time.now () |
|
28595
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
328 |
val deadtime = Time.+ (birthtime, Time.fromSeconds (get_timeout ())) |
67e3945b53f1
add_prover: plain prover function, without thread;
wenzelm
parents:
28589
diff
changeset
|
329 |
in List.app (fn name => start_prover name birthtime deadtime 1 proof_state) provers end; |
28582 | 330 |
|
331 |
||
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
332 |
|
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
333 |
(** Isar command syntax **) |
28582 | 334 |
|
335 |
local structure K = OuterKeyword and P = OuterParse in |
|
336 |
||
337 |
val _ = |
|
338 |
OuterSyntax.improper_command "atp_kill" "kill all managed provers" K.diag |
|
28586
d238b83ba3fc
renamed kill_all to kill, in conformance with atp_kill command;
wenzelm
parents:
28582
diff
changeset
|
339 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative kill)); |
28582 | 340 |
|
341 |
val _ = |
|
342 |
OuterSyntax.improper_command "atp_info" "print information about managed provers" K.diag |
|
343 |
(Scan.succeed (Toplevel.no_timing o Toplevel.imperative info)); |
|
344 |
||
345 |
val _ = |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
346 |
OuterSyntax.improper_command "atp_messages" "print recent messages issued by managed provers" K.diag |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
347 |
(Scan.option (P.$$$ "(" |-- P.nat --| P.$$$ ")") >> |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
348 |
(fn limit => Toplevel.no_timing o Toplevel.imperative (fn () => messages limit))); |
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
349 |
|
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
350 |
val _ = |
28582 | 351 |
OuterSyntax.improper_command "print_atps" "print external provers" K.diag |
352 |
(Scan.succeed (Toplevel.no_timing o Toplevel.unknown_theory o |
|
353 |
Toplevel.keep (print_provers o Toplevel.theory_of))); |
|
354 |
||
355 |
val _ = |
|
356 |
OuterSyntax.command "sledgehammer" "call all automatic theorem provers" K.diag |
|
357 |
(Scan.repeat P.xname >> (fn names => Toplevel.no_timing o Toplevel.unknown_proof o |
|
29112
f2b45eea6dac
added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents:
28835
diff
changeset
|
358 |
Toplevel.keep ((sledgehammer names) o Toplevel.proof_of))); |
28582 | 359 |
|
360 |
end; |
|
361 |
||
362 |
end; |
|
30537 | 363 |