SimpleMipProgram add import region tag

This commit is contained in:
Corentin Le Molgat
2019-05-13 10:04:00 +02:00
parent 15fffb8409
commit 3eea98e3ad
4 changed files with 8 additions and 0 deletions

View File

@@ -13,10 +13,12 @@
// Minimal example to call the MIP solver.
// [START program]
// [START import]
import com.google.ortools.linearsolver.MPConstraint;
import com.google.ortools.linearsolver.MPObjective;
import com.google.ortools.linearsolver.MPSolver;
import com.google.ortools.linearsolver.MPVariable;
// [END import]
/** Minimal Mixed Integer Programming example to showcase calling the solver. */
public class SimpleMipProgram {