Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions highs/presolve/HighsPostsolveStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,10 @@ void HighsPostsolveStack::SingletonRow::undo(const HighsOptions& options,
break;
case HighsBasisStatus::kUpper:
if (coef > 0)
// tightened upper bound comes from row lower bound
// tightened upper bound comes from row upper bound
basis.row_status[row] = HighsBasisStatus::kUpper;
else
// tightened lower bound comes from row upper bound
// tightened upper bound comes from row lower bound
basis.row_status[row] = HighsBasisStatus::kLower;
break;
default:
Expand Down
Loading