Skip to content

Commit 5c4b0b9

Browse files
committed
Merge remote-tracking branch 'origin/v9-minor'
2 parents d4b04f1 + 50b8de5 commit 5c4b0b9

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
@@ -278,7 +278,5 @@ SCIP_RETCODE SCIPincludeDefaultPlugins(
278278
SCIP_CALL( SCIPincludeBendersDefault(scip) );
279279
SCIP_CALL( SCIPincludeRelaxBenders(scip) );
280280

281-
SCIP_CALL( SCIPdebugIncludeProp(scip) ); /*lint !e506 !e774*/
282-
283281
return SCIP_OKAY;
284282
}

0 commit comments

Comments
 (0)