Skip to content
Open
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
9 changes: 5 additions & 4 deletions src/MibSCutGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1455,10 +1455,11 @@ MibSCutGenerator::findLowerLevelSolImprovingDirectionIC(double *uselessIneqs, do
for(i = 0; i < lCols; i++){
colIndex = lColInd[i];
value = lpSol[colIndex];
nSolver->setColLower(i, ceil(origColLb[colIndex] - value -
localModel_->etol_));
nSolver->setColUpper(i, floor(origColUb[colIndex] - value +
localModel_->etol_));
// feb223: w = 0 should be always a feasible direction
nSolver->setColLower(i, CoinMin(ceil(origColLb[colIndex] - value -
localModel_->etol_), 0.0));
nSolver->setColUpper(i, CoinMax(floor(origColUb[colIndex] - value +
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ugh, I really don't understand code editors the introduce weird indentation. We need a workflow that runs the code through a formatter on every commit.

localModel_->etol_), 0.0));
}

remainingTime = timeLimit - localModel_->broker_->subTreeTimer().getTime();
Expand Down