mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
disambiguate
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
93ff89bf98
commit
d686e92bfa
|
@ -1930,9 +1930,10 @@ namespace lp {
|
|||
default:
|
||||
UNREACHABLE();
|
||||
}
|
||||
if (m_mpq_lar_core_solver.m_r_upper_bounds[j] == m_mpq_lar_core_solver.m_r_lower_bounds[j]) {
|
||||
numeric_pair<mpq> const& lo = m_mpq_lar_core_solver.m_r_lower_bounds[j];
|
||||
numeric_pair<mpq> const& hi = m_mpq_lar_core_solver.m_r_upper_bounds[j];
|
||||
if (lo == hi)
|
||||
m_mpq_lar_core_solver.m_column_types[j] = column_type::fixed;
|
||||
}
|
||||
}
|
||||
|
||||
void lar_solver::update_bound_with_no_ub_lb(lpvar j, lconstraint_kind kind, const mpq& right_side, u_dependency* dep) {
|
||||
|
|
|
@ -62,7 +62,7 @@ public:
|
|||
return m_vec.m_vector[m_i] == other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
bool operator!=(ref const& other) const {
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vectpr[other.m_i];
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
|
||||
|
||||
|
@ -90,7 +90,7 @@ public:
|
|||
return m_vec.m_vector[m_i] == other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
bool operator!=(ref_const const& other) const {
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vectpr[other.m_i];
|
||||
return m_vec.m_vector[m_i] != other.m_vec.m_vector[other.m_i];
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue