3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-20 12:53:38 +00:00

commit after rebase

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2018-10-04 20:28:56 -07:00
parent 7f85840a10
commit e30743c2cf

View file

@ -347,8 +347,8 @@ struct solver::imp {
// otherwise it remains false // otherwise it remains false
// Returns 2 if the sign is not defined. // Returns 2 if the sign is not defined.
int get_mon_sign_zero_var(unsigned j, bool & strict) { int get_mon_sign_zero_var(unsigned j, bool & strict) {
auto it = m_var_lists.find(j); auto it = m_var_to_mon_indices.find(j);
if (it == m_var_lists.end()) if (it == m_var_to_mon_indices.end())
return 2; return 2;
lpci lci = -1; lpci lci = -1;
lpci uci = -1; lpci uci = -1;
@ -1391,7 +1391,7 @@ struct solver::imp {
if (it == m_var_to_mon_indices.end()) { if (it == m_var_to_mon_indices.end()) {
unsigned_vector v; unsigned_vector v;
v.push_back(i); v.push_back(i);
m_var_lists[j] = v; m_var_to_mon_indices[j] = v;
} }
else { else {
it->second.push_back(i); it->second.push_back(i);