mirror of
https://github.com/Z3Prover/z3
synced 2025-08-30 23:10:08 +00:00
moving to resource managed cancellation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
61dbb6168e
commit
32b6b2da44
41 changed files with 55 additions and 280 deletions
|
@ -37,7 +37,6 @@ namespace opt {
|
|||
protected:
|
||||
ast_manager& m;
|
||||
pareto_callback& cb;
|
||||
volatile bool m_cancel;
|
||||
ref<solver> m_solver;
|
||||
params_ref m_params;
|
||||
model_ref m_model;
|
||||
|
@ -50,7 +49,6 @@ namespace opt {
|
|||
params_ref & p):
|
||||
m(m),
|
||||
cb(cb),
|
||||
m_cancel(false),
|
||||
m_solver(s),
|
||||
m_params(p) {
|
||||
}
|
||||
|
@ -65,13 +63,6 @@ namespace opt {
|
|||
virtual void collect_statistics(statistics & st) const {
|
||||
m_solver->collect_statistics(st);
|
||||
}
|
||||
virtual void set_cancel(bool f) {
|
||||
if (f)
|
||||
m_solver->cancel();
|
||||
else
|
||||
m_solver->reset_cancel();
|
||||
m_cancel = f;
|
||||
}
|
||||
virtual void display(std::ostream & out) const {
|
||||
m_solver->display(out);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue