add glpk option

This commit is contained in:
Laurent Perron
2022-09-27 17:58:36 +02:00
parent 8c3accfebf
commit 1a5be9484e

View File

@@ -76,6 +76,8 @@ public class IntegerProgramming {
runIntegerProgrammingExample("SCIP");
System.out.println("---- Integer programming example with CBC ----");
runIntegerProgrammingExample("CBC");
System.out.println("---- Integer programming example with GLPK ----");
runIntegerProgrammingExample("GLPK");
System.out.println("---- Integer programming example with CP-SAT ----");
runIntegerProgrammingExample("SAT");
}