We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ce627c commit c448896Copy full SHA for c448896
src/scip/syncstore.c
@@ -496,7 +496,7 @@ SCIP_RETCODE SCIPsyncstoreFinishSync(
496
{
497
if( (*syncdata)->status != SCIP_STATUS_UNKNOWN ||
498
(SCIPgetConcurrentGap(syncstore->mainscip) <= syncstore->limit_gap) ||
499
- (SCIPgetConcurrentPrimalbound(syncstore->mainscip) - SCIPgetConcurrentDualbound(syncstore->mainscip) <= syncstore->limit_absgap) )
+ (SCIPgetNLimSolsFound(syncstore->mainscip) > 0 && SCIPgetConcurrentPrimalbound(syncstore->mainscip) - SCIPgetConcurrentDualbound(syncstore->mainscip) <= syncstore->limit_absgap) )
500
SCIPsyncstoreSetSolveIsStopped(syncstore, TRUE);
501
502
syncstore->lastsync = *syncdata;
0 commit comments