sync with internal code, most notable change is the modification to the RoutingModel::AddDimension API that takes an additional boolean parameter

This commit is contained in:
lperron@google.com
2013-01-10 17:01:34 +00:00
parent 4b98600c29
commit 7f36ac6be5
34 changed files with 2882 additions and 718 deletions

View File

@@ -70,10 +70,10 @@ void RunAllExamples() {
LOG(INFO) << "---- Integer programming example with SCIP ----";
RunIntegerProgrammingExample(MPSolver::SCIP_MIXED_INTEGER_PROGRAMMING);
#endif
#if defined(USE_GRB)
#if defined(USE_GUROBI)
LOG(INFO) << "---- Integer programming example with Gurobi ----";
RunIntegerProgrammingExample(MPSolver::GUROBI_MIXED_INTEGER_PROGRAMMING);
#endif // USE_GRB
#endif // USE_GUROBI
}
} // namespace operations_research