Skip to content

Commit 64b1a3d

Browse files
committed
Revert parallelism threshold change
1 parent 181132e commit 64b1a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/mip/HighsCutPool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ void HighsCutPool::separate(const std::vector<double>& sol, HighsDomain& domain,
317317

318318
for (const std::pair<double, HighsInt>& p : efficacious_cuts) {
319319
bool discard = false;
320-
double maxpar = 0.05;
320+
double maxpar = 0.1;
321321
for (HighsInt k : cutset.cutindices) {
322322
if (getParallelism(k, p.second) > maxpar) {
323323
discard = true;

0 commit comments

Comments
 (0)