mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
fix the debug build
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
80245f05ad
commit
19120bee81
|
@ -158,7 +158,7 @@ public :
|
|||
void limit_all_monoids_from_above() {
|
||||
int strict = 0;
|
||||
m_total.reset();
|
||||
lp_assert(is_zero(total));
|
||||
lp_assert(is_zero(m_total));
|
||||
for (const auto& p : m_row) {
|
||||
bool str;
|
||||
m_total -= monoid_min(p.coeff(), p.var(), str);
|
||||
|
@ -184,7 +184,7 @@ public :
|
|||
void limit_all_monoids_from_below() {
|
||||
int strict = 0;
|
||||
m_total.reset();
|
||||
lp_assert(is_zero(total));
|
||||
lp_assert(is_zero(m_total));
|
||||
for (const auto &p : m_row) {
|
||||
bool str;
|
||||
m_total -= monoid_max(p.coeff(), p.var(), str);
|
||||
|
|
Loading…
Reference in a new issue