Skip to content

Commit 3fb7eab

Browse files
committed
Merge remote-tracking branch 'origin/v10-minor'
2 parents 651b518 + bb4c30a commit 3fb7eab

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/scip/presol_milp.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,9 @@ SCIP_RETCODE setupPresolve(
428428
}
429429
#endif
430430

431+
432+
433+
431434
/* exhaustive presolvers*/
432435
presolve.addPresolveMethod( uptr( new ImplIntDetection<T>() ) );
433436
if( data->enabledualinfer )
@@ -444,6 +447,10 @@ SCIP_RETCODE setupPresolve(
444447
{
445448
probing->set_max_badge_size( data->maxbadgesizepar );
446449
}
450+
#if PAPILO_API_VERSION >= 12
451+
// TODO: enable this after performance test. On MIPLIB this brought 3% on instances with cliques.
452+
probing->set_numcliquefails(0);
453+
#endif
447454
presolve.addPresolveMethod( uptr( probing ) );
448455
#else
449456
presolve.addPresolveMethod( uptr( new Probing<T>() ) );

0 commit comments

Comments
 (0)