Skip to content

Commit d5b99aa

Browse files
committed
use larger number to see if unbounded
1 parent 6ae6426 commit d5b99aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ClpSimplexDual.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4800,7 +4800,7 @@ int ClpSimplexDual::checkUnbounded(CoinIndexedVector *ray,
48004800
way = 0.0;
48014801
status = -3;
48024802
}
4803-
double movement = 1.0e10 * way; // some largish number
4803+
double movement = 1.0e20 * way; // some largish number
48044804
double zeroTolerance = 1.0e-14 * dualBound_;
48054805
for (i = 0; i < number; i++) {
48064806
int iRow = index[i];

0 commit comments

Comments
 (0)