3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-16 07:45:27 +00:00

avoid adding constantly false statements to the lemma

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-12-12 14:57:04 -10:00 committed by Lev Nachmanson
parent dbfa3fc84a
commit 489da283bb
3 changed files with 4 additions and 2 deletions

View file

@ -47,7 +47,7 @@ public:
}
bool is_empty() const {
return m_coeffs.empty(); // && is_zero(m_v);
return m_coeffs.empty();
}
unsigned size() const { return static_cast<unsigned>(m_coeffs.size()); }