Skip to content

Commit

Permalink
Update model column bounds after inward integer rounding!
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Dec 11, 2024
1 parent c7e8375 commit 8457a65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lp_data/HighsInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3591,6 +3591,8 @@ bool Highs::infeasibleBoundsOk() {
}
}
if (lower > upper) assessInfeasibleBound("Column", iCol, lower, upper);
lp.col_lower_[iCol] = lower;
lp.col_upper_[iCol] = upper;
}
for (HighsInt iRow = 0; iRow < lp.num_row_; iRow++) {
if (lp.row_lower_[iRow] > lp.row_upper_[iRow])
Expand Down

0 comments on commit 8457a65

Please sign in to comment.