incomplete support for CPLEX, works only on mac currently

This commit is contained in:
lperron@google.com
2014-10-15 21:31:03 +00:00
parent 9b5436635b
commit ba5c34e0c4
8 changed files with 904 additions and 5 deletions

View File

@@ -75,6 +75,10 @@ void RunAllExamples() {
LOG(INFO) << "---- Integer programming example with Gurobi ----";
RunIntegerProgrammingExample(MPSolver::GUROBI_MIXED_INTEGER_PROGRAMMING);
#endif // USE_GUROBI
#if defined(USE_CPLEX)
LOG(INFO) << "---- Integer programming example with CPLEX ----";
RunIntegerProgrammingExample(MPSolver::CPLEX_MIXED_INTEGER_PROGRAMMING);
#endif // USE_CPLEX
}
} // namespace operations_research