mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 21:03:39 +00:00
commit after rebase
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
7f85840a10
commit
e30743c2cf
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue