7.2 -> 7.3

This commit is contained in:
Laurent Perron
2019-08-05 09:39:01 -07:00
parent 798b280d1f
commit 5f9a56b8aa
200 changed files with 368 additions and 2337 deletions

View File

@@ -44,6 +44,9 @@ void RunIntegerProgrammingExample(
LOG(INFO) << "Number of variables = " << solver.NumVariables();
LOG(INFO) << "Number of constraints = " << solver.NumConstraints();
solver.SetNumThreads(8);
solver.EnableOutput();
const MPSolver::ResultStatus result_status = solver.Solve();
// Check that the problem has an optimal solution.
if (result_status != MPSolver::OPTIMAL) {