3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

merge 'keep' and 'handle_saturation_premises'

This commit is contained in:
Jakob Rath 2021-09-12 16:05:34 +02:00
parent deeb6c7784
commit a8c132f769
2 changed files with 5 additions and 13 deletions

View file

@ -44,7 +44,7 @@ namespace polysat {
inequality as_inequality(bool is_positive) const override;
unsigned hash() const override;
bool operator==(constraint const& other) const override;
bool is_eq() const { return m_rhs.is_zero(); }
bool is_eq() const override { return m_rhs.is_zero(); }
pdd const& p() const { SASSERT(is_eq()); return m_lhs; }
};