mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
remove an unused var
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
d50bfc6a50
commit
d50c4bfcc1
|
@ -346,7 +346,6 @@ bool int_solver::get_freedom_interval_for_column(unsigned j, bool & inf_l, impq
|
||||||
unsigned row_index;
|
unsigned row_index;
|
||||||
lp_assert(settings().use_tableau());
|
lp_assert(settings().use_tableau());
|
||||||
const auto & A = lra.A_r();
|
const auto & A = lra.A_r();
|
||||||
unsigned rounds = 0;
|
|
||||||
for (auto c : A.column(j)) {
|
for (auto c : A.column(j)) {
|
||||||
row_index = c.var();
|
row_index = c.var();
|
||||||
const mpq & a = c.coeff();
|
const mpq & a = c.coeff();
|
||||||
|
@ -391,7 +390,6 @@ bool int_solver::get_freedom_interval_for_column(unsigned j, bool & inf_l, impq
|
||||||
SET_BOUND(set_upper, u, inf_u, a, xi, lrac.m_r_lower_bounds()[i]);
|
SET_BOUND(set_upper, u, inf_u, a, xi, lrac.m_r_lower_bounds()[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
++rounds;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
l += xj;
|
l += xj;
|
||||||
|
|
Loading…
Reference in a new issue