Skip to content

Commit 50b8de5

Browse files
committed
Merge remote-tracking branch 'origin/v92-bugfix' into v9-minor
2 parents 06c7736 + ab2f4cb commit 50b8de5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/scip/scip_debug.c

+4
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#include "scip/debug.h"
4646
#include "scip/pub_message.h"
4747
#include "scip/scip_debug.h"
48+
#include "scip/scip_prop.h"
4849

4950
/** enable debug solution mechanism
5051
*
@@ -60,6 +61,9 @@ void SCIPenableDebugSol(
6061
{
6162
SCIP_CALL_ABORT( SCIPcheckStage(scip, "SCIPenableDebugSol", TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, FALSE) );
6263

64+
if( SCIPfindProp(scip, "debug") == NULL )
65+
(void)SCIPdebugIncludeProp(scip);
66+
6367
SCIPdebugSolEnable(scip);
6468
}
6569

src/scip/scipdefplugins.c

-2
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,5 @@ SCIP_RETCODE SCIPincludeDefaultPlugins(
271271
SCIP_CALL( SCIPincludeConcurrentScipSolvers(scip) );
272272
SCIP_CALL( SCIPincludeBendersDefault(scip) );
273273

274-
SCIP_CALL( SCIPdebugIncludeProp(scip) ); /*lint !e506 !e774*/
275-
276274
return SCIP_OKAY;
277275
}

0 commit comments

Comments
 (0)