add integer and linear programming test for dotnet python and java

This commit is contained in:
Andrea Sgattoni
2023-11-13 15:29:08 +01:00
parent 4627ddf948
commit 18468fe1e6
6 changed files with 13 additions and 0 deletions

View File

@@ -84,5 +84,7 @@ public class IntegerProgramming {
runIntegerProgrammingExample("GLPK");
System.out.println("---- Integer programming example with CP-SAT ----");
runIntegerProgrammingExample("SAT");
System.out.println("---- Integer programming example with XPRESS ----");
runIntegerProgrammingExample("XPRESS");
}
}

View File

@@ -116,5 +116,7 @@ public class LinearProgramming {
runLinearProgrammingExample("GLOP", true);
System.out.println("---- Linear programming example with CLP ----");
runLinearProgrammingExample("CLP", false);
System.out.println("---- Linear programming example with XPRESS ----");
runLinearProgrammingExample("XPRESS", false);
}
}