mirror of
https://github.com/Z3Prover/z3
synced 2025-04-18 06:39:02 +00:00
commit after rebase
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
7f85840a10
commit
e30743c2cf
|
@ -347,8 +347,8 @@ struct solver::imp {
|
|||
// otherwise it remains false
|
||||
// Returns 2 if the sign is not defined.
|
||||
int get_mon_sign_zero_var(unsigned j, bool & strict) {
|
||||
auto it = m_var_lists.find(j);
|
||||
if (it == m_var_lists.end())
|
||||
auto it = m_var_to_mon_indices.find(j);
|
||||
if (it == m_var_to_mon_indices.end())
|
||||
return 2;
|
||||
lpci lci = -1;
|
||||
lpci uci = -1;
|
||||
|
@ -1391,7 +1391,7 @@ struct solver::imp {
|
|||
if (it == m_var_to_mon_indices.end()) {
|
||||
unsigned_vector v;
|
||||
v.push_back(i);
|
||||
m_var_lists[j] = v;
|
||||
m_var_to_mon_indices[j] = v;
|
||||
}
|
||||
else {
|
||||
it->second.push_back(i);
|
||||
|
|
Loading…
Reference in a new issue