We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 651b518 + bb4c30a commit 3fb7eabCopy full SHA for 3fb7eab
src/scip/presol_milp.cpp
@@ -428,6 +428,9 @@ SCIP_RETCODE setupPresolve(
428
}
429
#endif
430
431
+
432
433
434
/* exhaustive presolvers*/
435
presolve.addPresolveMethod( uptr( new ImplIntDetection<T>() ) );
436
if( data->enabledualinfer )
@@ -444,6 +447,10 @@ SCIP_RETCODE setupPresolve(
444
447
{
445
448
probing->set_max_badge_size( data->maxbadgesizepar );
446
449
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
454
presolve.addPresolveMethod( uptr( probing ) );
455
#else
456
presolve.addPresolveMethod( uptr( new Probing<T>() ) );
0 commit comments