3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 09:04:07 +00:00

remove a parameter when calling bound_analyzer_on_row

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-02-21 14:43:08 -08:00
parent b985838112
commit 67d77e26d2

View file

@ -273,10 +273,9 @@ namespace lp {
};
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],
zero_of_type<numeric_pair<mpq>>(),
row_index,
zero_of_type<numeric_pair<mpq>>(),
bp);
settings().stats().m_bounds_tightenings += static_cast<unsigned>(ibounds.size());