2022-06-17 08:40:20 +02:00
|
|
|
// Copyright 2010-2022 Google LLC
|
2011-11-07 15:29:46 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
2020-09-11 21:17:23 +02:00
|
|
|
package com.google.ortools.java;
|
2020-06-24 18:11:12 +02:00
|
|
|
|
2020-09-11 21:17:23 +02:00
|
|
|
import com.google.ortools.Loader;
|
2011-11-07 15:29:46 +00:00
|
|
|
import com.google.ortools.linearsolver.MPConstraint;
|
2014-07-09 11:26:55 +00:00
|
|
|
import com.google.ortools.linearsolver.MPObjective;
|
2011-11-07 15:29:46 +00:00
|
|
|
import com.google.ortools.linearsolver.MPSolver;
|
|
|
|
|
import com.google.ortools.linearsolver.MPVariable;
|
|
|
|
|
|
2020-09-11 21:17:23 +02:00
|
|
|
/** Integer programming example that shows how to use the API. */
|
2011-11-07 15:29:46 +00:00
|
|
|
public class IntegerProgramming {
|
2011-12-08 16:47:57 +00:00
|
|
|
private static void runIntegerProgrammingExample(String solverType) {
|
2020-08-18 17:16:10 +02:00
|
|
|
MPSolver solver = MPSolver.createSolver(solverType);
|
2016-01-26 13:58:53 +01:00
|
|
|
if (solver == null) {
|
2011-12-08 16:47:57 +00:00
|
|
|
System.out.println("Could not create solver " + solverType);
|
|
|
|
|
return;
|
2011-11-07 15:29:46 +00:00
|
|
|
}
|
2019-02-02 17:40:11 +01:00
|
|
|
double infinity = java.lang.Double.POSITIVE_INFINITY;
|
2011-12-08 16:47:57 +00:00
|
|
|
// x1 and x2 are integer non-negative variables.
|
|
|
|
|
MPVariable x1 = solver.makeIntVar(0.0, infinity, "x1");
|
|
|
|
|
MPVariable x2 = solver.makeIntVar(0.0, infinity, "x2");
|
|
|
|
|
|
|
|
|
|
// Minimize x1 + 2 * x2.
|
2014-07-09 11:26:55 +00:00
|
|
|
MPObjective objective = solver.objective();
|
|
|
|
|
objective.setCoefficient(x1, 1);
|
|
|
|
|
objective.setCoefficient(x2, 2);
|
2011-12-08 16:47:57 +00:00
|
|
|
|
|
|
|
|
// 2 * x2 + 3 * x1 >= 17.
|
|
|
|
|
MPConstraint ct = solver.makeConstraint(17, infinity);
|
|
|
|
|
ct.setCoefficient(x1, 3);
|
|
|
|
|
ct.setCoefficient(x2, 2);
|
|
|
|
|
|
2014-07-09 11:26:55 +00:00
|
|
|
final MPSolver.ResultStatus resultStatus = solver.solve();
|
2011-12-08 16:47:57 +00:00
|
|
|
|
|
|
|
|
// Check that the problem has an optimal solution.
|
2014-07-09 11:26:55 +00:00
|
|
|
if (resultStatus != MPSolver.ResultStatus.OPTIMAL) {
|
2011-12-08 16:47:57 +00:00
|
|
|
System.err.println("The problem does not have an optimal solution!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-09 11:26:55 +00:00
|
|
|
// Verify that the solution satisfies all constraints (when using solvers
|
|
|
|
|
// others than GLOP_LINEAR_PROGRAMMING, this is highly recommended!).
|
2019-05-06 10:31:03 +02:00
|
|
|
if (!solver.verifySolution(/*tolerance=*/1e-7, /* log_errors= */ true)) {
|
|
|
|
|
System.err.println("The solution returned by the solver violated the"
|
|
|
|
|
+ " problem constraints by at least 1e-7");
|
2014-07-09 11:26:55 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-10 23:56:52 +01:00
|
|
|
System.out.println("Problem solved in " + solver.wallTime() + " milliseconds");
|
2011-12-08 16:47:57 +00:00
|
|
|
|
|
|
|
|
// The objective value of the solution.
|
2018-11-10 23:56:52 +01:00
|
|
|
System.out.println("Optimal objective value = " + solver.objective().value());
|
2011-12-08 16:47:57 +00:00
|
|
|
|
|
|
|
|
// The value of each variable in the solution.
|
|
|
|
|
System.out.println("x1 = " + x1.solutionValue());
|
|
|
|
|
System.out.println("x2 = " + x2.solutionValue());
|
|
|
|
|
|
|
|
|
|
System.out.println("Advanced usage:");
|
2018-11-10 23:56:52 +01:00
|
|
|
System.out.println("Problem solved in " + solver.nodes() + " branch-and-bound nodes");
|
2011-11-07 15:29:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
2020-09-11 21:17:23 +02:00
|
|
|
Loader.loadNativeLibraries();
|
2018-11-10 23:56:52 +01:00
|
|
|
System.out.println("---- Integer programming example with SCIP (recommended) ----");
|
2020-06-26 09:35:26 +02:00
|
|
|
runIntegerProgrammingExample("SCIP");
|
2011-11-07 15:29:46 +00:00
|
|
|
System.out.println("---- Integer programming example with CBC ----");
|
2020-06-26 09:35:26 +02:00
|
|
|
runIntegerProgrammingExample("CBC");
|
2022-09-27 17:58:36 +02:00
|
|
|
System.out.println("---- Integer programming example with GLPK ----");
|
|
|
|
|
runIntegerProgrammingExample("GLPK");
|
2020-06-24 18:11:12 +02:00
|
|
|
System.out.println("---- Integer programming example with CP-SAT ----");
|
2020-06-26 09:35:26 +02:00
|
|
|
runIntegerProgrammingExample("SAT");
|
2011-11-07 15:29:46 +00:00
|
|
|
}
|
|
|
|
|
}
|