diff --git a/cylp/VERSION b/cylp/VERSION index 28cfb23f..ad7e0bca 100644 --- a/cylp/VERSION +++ b/cylp/VERSION @@ -1 +1 @@ -0.91.3 +0.91.4 diff --git a/cylp/cpp/ICbcModel.cpp b/cylp/cpp/ICbcModel.cpp index 5fda3d07..a3bab13b 100644 --- a/cylp/cpp/ICbcModel.cpp +++ b/cylp/cpp/ICbcModel.cpp @@ -32,12 +32,12 @@ int ICbcModel::cbcMain(){ int returnCode = -1; int logLevel = this->logLevel(); const char* argv[] = {"ICbcModel", "-solve","-quit"}; - //CbcMain0(*this); - //this->setLogLevel(logLevel); - //return CbcMain1(3, argv, *this); - //const char* argv = "-solve -quit"; - CbcSolverUsefulData solverData; - CbcMain0(*this, solverData); + CbcMain0(*this); this->setLogLevel(logLevel); - return CbcMain1(3, argv, *this, NULL, solverData); + return CbcMain1(3, argv, *this); + //const char* argv = "-solve -quit"; + //CbcSolverUsefulData solverData; + //CbcMain0(*this, solverData); + //this->setLogLevel(logLevel); + //return CbcMain1(3, argv, *this, NULL, solverData); }