remove name from MPSolver.CreateSolver API; simplify underlying code

This commit is contained in:
Laurent Perron
2020-08-18 17:16:10 +02:00
parent c12c9992d5
commit 55cedb4b4b
43 changed files with 136 additions and 173 deletions

View File

@@ -49,8 +49,8 @@ public class MipVarArray {
// [END program_part1]
// [START solver]
// Create the linear solver with the CBC backend.
MPSolver solver = MPSolver.createSolver("MipVarArray", "CBC");
// Create the linear solver with the SCIP backend.
MPSolver solver = MPSolver.createSolver("SCIP");
// [END solver]
// [START program_part2]