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 4641899 commit d2465a2Copy full SHA for d2465a2
src/Osi/OsiSolverInterface.cpp
@@ -912,9 +912,14 @@ OsiSolverInterface::getAuxiliaryInfo() const
912
913
void OsiSolverInterface::activateRowCutDebugger(const char *modelName)
914
{
915
+#ifdef CHECK_KNOWN_SOLUTION
916
delete rowCutDebugger_;
917
rowCutDebugger_ = NULL; // so won't use in new
918
rowCutDebugger_ = new OsiRowCutDebugger(*this, modelName);
919
+#else
920
+ printf("To activate OsiRowCutDebugger - code must be compiled with CHECK_KNOWN_SOLUTION\n");
921
+ exit(77);
922
+#endif
923
}
924
/* Activate debugger using full solution array.
925
Only integer values need to be correct.
0 commit comments