Skip to content

Commit 803860d

Browse files
committed
No longer restrict cut size given lower limits
1 parent 8b8a3f7 commit 803860d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/mip/HighsCutGeneration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1672,7 +1672,7 @@ bool HighsCutGeneration::preprocessSNFRelaxation() {
16721672
}
16731673
}
16741674

1675-
HighsInt maxLen = 0.15 * (lpRelaxation.numCols());
1675+
HighsInt maxLen = 100 + 0.15 * (lpRelaxation.numCols());
16761676
if (rowlen - numZeros > maxLen) return false;
16771677

16781678
if (numZeros != 0) {

0 commit comments

Comments
 (0)