3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-05 17:47:41 +00:00

fix build (add conversion operator)

This commit is contained in:
Jakob Rath 2023-01-10 17:17:14 +01:00
parent 0c799524e8
commit 1d0ad1ccc0
3 changed files with 3 additions and 4 deletions

View file

@ -225,6 +225,7 @@ namespace polysat {
pdd const& rhs() const { return m_rhs; }
bool is_strict() const { return m_src.is_negative(); }
signed_constraint as_signed_constraint() const { return m_src; }
operator signed_constraint() const { return m_src; }
};
class constraint_pp {