mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
remove an unused parameter in bound_analyzer_on_row
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
fbfbfa5d76
commit
7044bb8485
|
@ -42,7 +42,6 @@ public :
|
||||||
// constructor
|
// constructor
|
||||||
bound_analyzer_on_row(
|
bound_analyzer_on_row(
|
||||||
const C & it,
|
const C & it,
|
||||||
unsigned bj, // basis column for the row
|
|
||||||
const numeric_pair<mpq>& rs,
|
const numeric_pair<mpq>& rs,
|
||||||
unsigned row_or_term_index,
|
unsigned row_or_term_index,
|
||||||
B & bp)
|
B & bp)
|
||||||
|
@ -57,11 +56,10 @@ public :
|
||||||
|
|
||||||
|
|
||||||
static unsigned analyze_row(const C & row,
|
static unsigned analyze_row(const C & row,
|
||||||
unsigned bj, // basis column for the row
|
|
||||||
const numeric_pair<mpq>& rs,
|
const numeric_pair<mpq>& rs,
|
||||||
unsigned row_or_term_index,
|
unsigned row_or_term_index,
|
||||||
B & bp) {
|
B & bp) {
|
||||||
bound_analyzer_on_row a(row, bj, rs, row_or_term_index, bp);
|
bound_analyzer_on_row a(row, rs, row_or_term_index, bp);
|
||||||
return a.analyze();
|
return a.analyze();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -184,7 +184,6 @@ class lar_solver : public column_namer {
|
||||||
|
|
||||||
return bound_analyzer_on_row<row_strip<mpq>, lp_bound_propagator<T>>::analyze_row(
|
return bound_analyzer_on_row<row_strip<mpq>, lp_bound_propagator<T>>::analyze_row(
|
||||||
A_r().m_rows[row_index],
|
A_r().m_rows[row_index],
|
||||||
null_ci,
|
|
||||||
zero_of_type<numeric_pair<mpq>>(),
|
zero_of_type<numeric_pair<mpq>>(),
|
||||||
row_index,
|
row_index,
|
||||||
bp);
|
bp);
|
||||||
|
|
Loading…
Reference in a new issue