Skip to content

Commit 8b9df9c

Browse files
committed
use larger number to see if unbounded
1 parent 0a7412f commit 8b9df9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Clp/src/ClpSimplexDual.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4763,7 +4763,7 @@ int ClpSimplexDual::checkUnbounded(CoinIndexedVector *ray,
47634763
way = 0.0;
47644764
status = -3;
47654765
}
4766-
double movement = 1.0e10 * way; // some largish number
4766+
double movement = 1.0e20 * way; // some largish number
47674767
double zeroTolerance = 1.0e-14 * dualBound_;
47684768
for (i = 0; i < number; i++) {
47694769
int iRow = index[i];

0 commit comments

Comments
 (0)