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

@@ -106,19 +106,19 @@ public class CsIntegerProgramming
static void Main()
{
Console.WriteLine("---- Integer programming example with GLPK ----");
RunIntegerProgrammingExample("GLPK_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExample("GLPK");
Console.WriteLine("---- Linear programming example with CBC ----");
RunIntegerProgrammingExample("CBC_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExample("CBC");
Console.WriteLine("---- Linear programming example with SCIP ----");
RunIntegerProgrammingExample("SCIP_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExample("SCIP");
Console.WriteLine(
"---- Integer programming example (Natural API) with GLPK ----");
RunIntegerProgrammingExampleNaturalApi("GLPK_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExampleNaturalApi("GLPK");
Console.WriteLine(
"---- Linear programming example (Natural API) with CBC ----");
RunIntegerProgrammingExampleNaturalApi("CBC_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExampleNaturalApi("CBC");
Console.WriteLine(
"---- Linear programming example (Natural API) with SCIP ----");
RunIntegerProgrammingExampleNaturalApi("SCIP_MIXED_INTEGER_PROGRAMMING");
RunIntegerProgrammingExampleNaturalApi("SCIP");
}
}