We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b99aa commit 268909eCopy full SHA for 268909e
src/ClpSimplex.cpp
@@ -11087,7 +11087,7 @@ int ClpSimplex::cleanPrimalSolution(double exactMultiple)
11087
nBad++;
11088
}
11089
memset(tempRow, 0, numberRows_ * sizeof(double));
11090
- times(-1.0, tempColumn, tempRow);
+ times(1.0, tempColumn, tempRow);
11091
for (int i = 0; i < numberRows_; i++) {
11092
double value = tempRow[i];
11093
if (value < rowLower_[i] - allowedError || value > rowUpper_[i] + allowedError)
0 commit comments