mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
remove a parameter when calling bound_analyzer_on_row
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
b985838112
commit
67d77e26d2
|
@ -273,10 +273,9 @@ namespace lp {
|
||||||
};
|
};
|
||||||
|
|
||||||
for (unsigned row_index = 0; row_index < lra.row_count(); ++row_index) {
|
for (unsigned row_index = 0; row_index < lra.row_count(); ++row_index) {
|
||||||
auto nb = bound_analyzer_on_row<row_strip<mpq>, lp_bound_propagator<bound_consumer>>::analyze_row(
|
bound_analyzer_on_row<row_strip<mpq>, lp_bound_propagator<bound_consumer>>::analyze_row(
|
||||||
lra.A_r().m_rows[row_index],
|
lra.A_r().m_rows[row_index],
|
||||||
zero_of_type<numeric_pair<mpq>>(),
|
zero_of_type<numeric_pair<mpq>>(),
|
||||||
row_index,
|
|
||||||
bp);
|
bp);
|
||||||
|
|
||||||
settings().stats().m_bounds_tightenings += static_cast<unsigned>(ibounds.size());
|
settings().stats().m_bounds_tightenings += static_cast<unsigned>(ibounds.size());
|
||||||
|
|
Loading…
Reference in a new issue