mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
fix ubuntu build in dio
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
c1ece49694
commit
ac5c50f179
|
@ -1291,7 +1291,6 @@ namespace lp {
|
|||
print_entry(i, tout););
|
||||
CTRACE(
|
||||
"dioph_eq", !entry_invariant(i), tout << "invariant delta:"; {
|
||||
const auto& e = m_entries[i];
|
||||
print_term_o(get_term_from_entry(ei) -
|
||||
fix_vars(open_ml(m_l_matrix.m_rows[ei])),
|
||||
tout)
|
||||
|
@ -1312,7 +1311,6 @@ namespace lp {
|
|||
}
|
||||
|
||||
bool entry_invariant(unsigned ei) const {
|
||||
const auto& e = m_entries[ei];
|
||||
bool ret =
|
||||
term_to_lar_solver(remove_fresh_vars(get_term_from_entry(ei))) ==
|
||||
fix_vars(open_ml(m_l_matrix.m_rows[ei]));
|
||||
|
|
|
@ -516,8 +516,8 @@ public:
|
|||
}
|
||||
|
||||
|
||||
template <typename T>
|
||||
void swap(T &v, unsigned i, unsigned j) noexcept {
|
||||
template <typename R>
|
||||
void swap(R &v, unsigned i, unsigned j) noexcept {
|
||||
auto t = v[i];
|
||||
v[i] = v[j];
|
||||
v[j] = t;
|
||||
|
|
Loading…
Reference in a new issue