This commit is contained in:
Laurent Perron
2023-07-01 06:07:45 +02:00
parent c80d518fa7
commit b14384c724
2 changed files with 2 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ using System.Linq;
/// (source, destination, traffic), the goal is to assign one unique
/// path for each demand such that the cost is minimized. The cost is
/// defined by the maximum ratio utilization (traffic/capacity) for all
/// arcs. There is also a penalty associated with an traffic of an arc
/// arcs. There is also a penalty associated with a traffic of an arc
/// being above the comfort zone, 85% of the capacity by default.
/// Please note that constraint programming is well suited here because
/// we cannot have multiple active paths for a single demand.

View File

@@ -103,6 +103,7 @@ public class CsIntegerProgramming
{
CppBridge.InitLogging("csintegerprogramming.cs");
CppFlags flags = new CppFlags();
flags.stderrthreshold = 0;
flags.log_prefix = false;
CppBridge.SetFlags(flags);