Skip to content

Commit c097db8

Browse files
Veribellllevnach
authored andcommitted
Removed dependency on Kernel32 in Core
TimeMeasurer.DebugOutput causes error on linux and mac. Unable to load shared library 'Kernel32.dll' or one of its dependencies.
1 parent 123bee6 commit c097db8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GraphLayout/MSAGL/Routing/Spline/Bundling/BundleRouter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ protected override void RunInternal() {
9292
LayoutAlgorithmSettings.ShowDebugCurves(
9393
TightHierarchy.GetAllLeaves().Select(p => new DebugCurve(100, 1, "black", p)).ToArray());*/
9494
Status = BundlingStatus.Overlaps;
95-
TimeMeasurer.DebugOutput("overlaps in edge bundling");
95+
//TimeMeasurer.DebugOutput("overlaps in edge bundling");
9696
return;
9797
}
9898

@@ -256,7 +256,7 @@ bool AnalyzeEdgeSeparation() {
256256
return true; //we can even enlarge it here
257257

258258
if (es <= 0.02) {
259-
TimeMeasurer.DebugOutput("edge bundling can't be executed: not enough free space around obstacles");
259+
//TimeMeasurer.DebugOutput("edge bundling can't be executed: not enough free space around obstacles");
260260
foreach (var e in regularEdges)
261261
e.Curve = null;
262262

0 commit comments

Comments
 (0)