use scip in java and python integer solver examples

This commit is contained in:
lperron@google.com
2011-06-22 08:39:10 +00:00
parent 6c3284ade2
commit caff113814
2 changed files with 9 additions and 3 deletions

View File

@@ -48,7 +48,8 @@ public class IntegerSolverExample {
}
public static void main(String[] args) throws Exception {
runFirstIntegerExample(MPSolver.CLP_LINEAR_PROGRAMMING);
runFirstIntegerExample(MPSolver.GLPK_LINEAR_PROGRAMMING);
runFirstIntegerExample(MPSolver.CBC_MIXED_INTEGER_PROGRAMMING);
runFirstIntegerExample(MPSolver.GLPK_MIXED_INTEGER_PROGRAMMING);
runFirstIntegerExample(MPSolver.SCIP_MIXED_INTEGER_PROGRAMMING);
}
}