mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix emptines check
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d8ad75e3f4
commit
e9a11bd93b
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ namespace opt {
|
|||
|
||||
virtual void push();
|
||||
virtual void pop(unsigned n);
|
||||
virtual bool empty() { return m_objectives.empty(); }
|
||||
virtual bool empty() { return m_scoped_state.m_objectives.empty(); }
|
||||
virtual void set_cancel(bool f);
|
||||
virtual void reset_cancel() { set_cancel(false); }
|
||||
virtual void cancel() { set_cancel(true); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue