mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
reworking cancellation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
981f8226fe
commit
baee4225a7
145 changed files with 172 additions and 958 deletions
|
@ -36,9 +36,6 @@ struct simplify_tactic::imp {
|
|||
|
||||
ast_manager & m() const { return m_manager; }
|
||||
|
||||
void set_cancel(bool f) {
|
||||
m_r.set_cancel(f);
|
||||
}
|
||||
|
||||
void reset() {
|
||||
m_r.reset();
|
||||
|
@ -111,10 +108,6 @@ void simplify_tactic::operator()(goal_ref const & in,
|
|||
}
|
||||
}
|
||||
|
||||
void simplify_tactic::set_cancel(bool f) {
|
||||
if (m_imp)
|
||||
m_imp->set_cancel(f);
|
||||
}
|
||||
|
||||
void simplify_tactic::cleanup() {
|
||||
ast_manager & m = m_imp->m();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue