Files
ortools-clone/examples/contrib/DietMIP.java

89 lines
2.8 KiB
Java
Raw Normal View History

2017-09-18 15:41:10 +03:00
/*
* Copyright 2017 Darian Sastre darian.sastre@minimaxlabs.com
* 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
*
2017-09-18 15:41:10 +03:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2017-09-18 15:41:10 +03:00
* 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.
*
2017-09-18 15:41:10 +03:00
* ************************************************************************
*
2018-02-19 15:21:05 +01:00
* This model was created by Hakan Kjellerstrand (hakank@gmail.com)
2017-09-18 15:41:10 +03:00
*/
package com.google.ortools.contrib;
2017-09-18 15:41:10 +03:00
import com.google.ortools.Loader;
2017-09-18 15:41:10 +03:00
import com.google.ortools.linearsolver.MPConstraint;
import com.google.ortools.linearsolver.MPObjective;
import com.google.ortools.linearsolver.MPSolver;
import com.google.ortools.linearsolver.MPVariable;
public class DietMIP {
2020-09-23 12:10:52 +02:00
private static void solve(String solverType) {
2021-09-29 11:32:24 +02:00
System.out.println("---- DietMIP with " + solverType);
2020-09-23 12:10:52 +02:00
MPSolver solver = MPSolver.createSolver(solverType);
2021-09-29 11:32:24 +02:00
if (solver == null)
return;
2020-09-23 12:10:52 +02:00
double infinity = MPSolver.infinity();
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
int n = 4; // variables number
int m = 4; // constraints number
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
int[] price = {50, 20, 30, 80};
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
int[] limits = {500, 6, 10, 8};
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
int[] calories = {400, 200, 150, 500};
int[] chocolate = {3, 2, 0, 0};
int[] sugar = {2, 2, 4, 4};
int[] fat = {2, 4, 1, 5};
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
int[][] values = {calories, chocolate, sugar, fat};
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
MPVariable[] x = solver.makeIntVarArray(n, 0, 100, "x");
MPObjective objective = solver.objective();
MPConstraint[] targets = new MPConstraint[4];
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
for (int i = 0; i < n; i++) {
objective.setCoefficient(x[i], price[i]);
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
// constraints
targets[i] = solver.makeConstraint(limits[i], infinity);
for (int j = 0; j < m; j++) {
targets[i].setCoefficient(x[j], values[i][j]);
}
}
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
final MPSolver.ResultStatus resultStatus = solver.solve();
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
/** printing */
if (resultStatus != MPSolver.ResultStatus.OPTIMAL) {
System.err.println("The problem does not have an optimal solution!");
return;
} else {
System.out.println("Optimal objective value = " + solver.objective().value());
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
System.out.print("Item quantities: ");
System.out.print((int) x[0].solutionValue() + " ");
System.out.print((int) x[1].solutionValue() + " ");
System.out.print((int) x[2].solutionValue() + " ");
System.out.print((int) x[3].solutionValue() + " ");
}
}
2017-09-18 15:41:10 +03:00
2020-09-23 12:10:52 +02:00
public static void main(String[] args) throws Exception {
Loader.loadNativeLibraries();
2021-09-29 11:32:24 +02:00
solve("SCIP");
2020-09-23 12:10:52 +02:00
solve("CBC");
}
2018-11-10 18:00:53 +01:00
}