mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
bug fixes
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
5158797233
commit
0027ae21e8
|
@ -292,14 +292,14 @@ namespace lp {
|
||||||
TRACE("dioph_eq", m_s.lra.print_term(*m_t, tout); tout << ", m_t->j() =" << m_t->j() << std::endl;);
|
TRACE("dioph_eq", m_s.lra.print_term(*m_t, tout); tout << ", m_t->j() =" << m_t->j() << std::endl;);
|
||||||
if (!contains(m_s.m_active_terms, m_t)) {
|
if (!contains(m_s.m_active_terms, m_t)) {
|
||||||
for (int i = m_s.m_added_terms.size() - 1; i >= 0; --i) {
|
for (int i = m_s.m_added_terms.size() - 1; i >= 0; --i) {
|
||||||
if (m_s.m_added_terms[i] == m_t) // the address is the same
|
if (m_s.m_added_terms[i] != m_t) continue;
|
||||||
if (i != m_s.m_added_terms.size() -1) m_s.m_added_terms[i] = m_s.m_added_terms.back();
|
// the address is the same
|
||||||
m_s.m_added_terms.pop_back();
|
if (i != m_s.m_added_terms.size() -1) m_s.m_added_terms[i] = m_s.m_added_terms.back();
|
||||||
break;
|
m_s.m_added_terms.pop_back();
|
||||||
|
return; // all is done since the term has not made it to entries, etc
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
NOT_IMPLEMENTED_YET();
|
// deregister the term that has been activated
|
||||||
for (const auto & p: m_t->ext_coeffs()) {
|
for (const auto & p: m_t->ext_coeffs()) {
|
||||||
auto it = m_s.m_columns_to_terms.find(p.var());
|
auto it = m_s.m_columns_to_terms.find(p.var());
|
||||||
SASSERT(it != m_s.m_columns_to_terms.end());
|
SASSERT(it != m_s.m_columns_to_terms.end());
|
||||||
|
@ -309,6 +309,15 @@ namespace lp {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
TRACE("dioph_eq",
|
||||||
|
tout << "the deleted term column in m_l_matrix" << std::endl;
|
||||||
|
for (auto p: m_s.m_l_matrix.column(m_t->j())) {
|
||||||
|
tout << p.coeff()<< ", row " << p.var() << std::endl;
|
||||||
|
}
|
||||||
|
tout << "m_l_matrix has " << m_s.m_l_matrix.column_count() << std::endl;
|
||||||
|
tout << "and" << m_s.m_l_matrix.row_count() << " rows" << std::endl;
|
||||||
|
);
|
||||||
|
NOT_IMPLEMENTED_YET();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ public:
|
||||||
lpvar j() const { return m_j; }
|
lpvar j() const { return m_j; }
|
||||||
void set_j(unsigned j) {
|
void set_j(unsigned j) {
|
||||||
m_j = j;
|
m_j = j;
|
||||||
}
|
}
|
||||||
void add_monomial(const mpq& c, unsigned j) {
|
void add_monomial(const mpq& c, unsigned j) {
|
||||||
if (c.is_zero())
|
if (c.is_zero())
|
||||||
return;
|
return;
|
||||||
|
@ -275,10 +275,7 @@ public:
|
||||||
const_iterator(u_map<mpq>::iterator it) : m_it(it) {}
|
const_iterator(u_map<mpq>::iterator it) : m_it(it) {}
|
||||||
bool operator==(const const_iterator &other) const { return m_it == other.m_it; }
|
bool operator==(const const_iterator &other) const { return m_it == other.m_it; }
|
||||||
bool operator!=(const const_iterator &other) const { return !(*this == other); }
|
bool operator!=(const const_iterator &other) const { return !(*this == other); }
|
||||||
// Return a pointer to the same object returned by operator*.
|
|
||||||
const ival* operator->() const {
|
|
||||||
return &(**this);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
bool is_normalized() const {
|
bool is_normalized() const {
|
||||||
|
|
Loading…
Reference in a new issue