Skip to content

Commit

Permalink
remove an unused parameter in bound_analyzer_on_row
Browse files Browse the repository at this point in the history
Signed-off-by: Lev Nachmanson <[email protected]>
  • Loading branch information
levnach committed Feb 21, 2025
1 parent fbfbfa5 commit 7044bb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions src/math/lp/bound_analyzer_on_row.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ public :
// constructor
bound_analyzer_on_row(
const C & it,
unsigned bj, // basis column for the row
const numeric_pair<mpq>& rs,
unsigned row_or_term_index,
B & bp)
Expand All @@ -57,11 +56,10 @@ public :


static unsigned analyze_row(const C & row,
unsigned bj, // basis column for the row
const numeric_pair<mpq>& rs,
unsigned row_or_term_index,
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();
}

Expand Down
1 change: 0 additions & 1 deletion src/math/lp/lar_solver.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ class lar_solver : public column_namer {

return bound_analyzer_on_row<row_strip<mpq>, lp_bound_propagator<T>>::analyze_row(
A_r().m_rows[row_index],
null_ci,
zero_of_type<numeric_pair<mpq>>(),
row_index,
bp);
Expand Down

0 comments on commit 7044bb8

Please sign in to comment.