Skip to content

Commit

Permalink
Reversing change made in dfce35, since it doesn't seem to work with C…
Browse files Browse the repository at this point in the history
…bc 2.9. Also bumping version for new release
  • Loading branch information
tkralphs committed Apr 11, 2021
1 parent 1639aed commit 1769ca6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cylp/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.91.3
0.91.4
14 changes: 7 additions & 7 deletions cylp/cpp/ICbcModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 1769ca6

Please sign in to comment.