polish linear solver samples

This commit is contained in:
Laurent Perron
2020-06-25 11:14:37 +02:00
parent 5c7e66d998
commit eda229c521
10 changed files with 17 additions and 18 deletions

View File

@@ -21,7 +21,7 @@ namespace operations_research {
void IntegerProgrammingExample() {
// [START solver]
// Create the mip solver with the CBC backend.
MPSolver solver("IntegerExample",
MPSolver solver("integer_programming_example",
MPSolver::CBC_MIXED_INTEGER_PROGRAMMING);
// [END solver]