3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 17:31:57 +00:00

throttle lemmas in nla_solver untested

This commit is contained in:
Lev Nachmanson 2025-06-25 17:27:53 -07:00 committed by Lev Nachmanson
parent 46319156b8
commit 5caa7f1a29
9 changed files with 156 additions and 105 deletions

View file

@ -70,7 +70,7 @@ public:
}
}
bool empty() const { return m_vector.empty() || m_set.empty(); }
bool empty() const { return m_vector.empty() && m_set.empty(); }
size_t size() const { return std::max(m_vector.size(), m_set.size()); }
class cimpq {