polish examples and samples

This commit is contained in:
Laurent Perron
2020-06-26 09:35:26 +02:00
parent a8cd11401f
commit 2022071171
28 changed files with 47 additions and 48 deletions

View File

@@ -116,8 +116,8 @@ public class LinearProgramming {
public static void main(String[] args) throws Exception {
System.out.println("---- Linear programming example with GLOP (recommended) ----");
runLinearProgrammingExample("GLOP_LINEAR_PROGRAMMING", true);
runLinearProgrammingExample("GLOP", true);
System.out.println("---- Linear programming example with CLP ----");
runLinearProgrammingExample("CLP_LINEAR_PROGRAMMING", false);
runLinearProgrammingExample("CLP", false);
}
}