mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
05bcf0bed7
commit
788de7d614
9 changed files with 174 additions and 45 deletions
|
@ -211,8 +211,8 @@ namespace polysat {
|
|||
|
||||
explicit operator bool() const { return !!m_constraint; }
|
||||
bool operator!() const { return !m_constraint; }
|
||||
polysat::constraint* operator->() const { return m_constraint.get(); }
|
||||
polysat::constraint const& operator*() const { return *m_constraint; }
|
||||
constraint* operator->() const { return m_constraint.get(); }
|
||||
constraint const& operator*() const { return *m_constraint; }
|
||||
|
||||
constraint_literal& operator=(nullptr_t) { m_literal = sat::null_literal; m_constraint = nullptr; return *this; }
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue