فهرست منبع

actually make those tables tables

Eren Yilmaz 6 سال پیش
والد
کامیت
61be71b683
2فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 1 0
      src/bk/Combine.java
  2. 1 0
      src/bk/ExtremalLayoutCalc.java

+ 1 - 0
src/bk/Combine.java

@@ -245,6 +245,7 @@ public class Combine implements AlgorithmStage {
     public String getDebugString()
     {
         String info = "| Node |  x  | x LU | x RU | x LL | x RL |\n";
+        info +=       "|------|-----|------|------|------|------|\n";
         for( LayeredGraphNode n : graph.getContainedNodes() )
         {
             info += "|" + TextLayoutHelper.strToLen( n.getName(), 6 ) + 

+ 1 - 0
src/bk/ExtremalLayoutCalc.java

@@ -136,6 +136,7 @@ public class ExtremalLayoutCalc implements AlgorithmStage {
     public String getDebugString()
     {
         String info = "| Node | Shift | Sink | Root | Align |  x  |  xDef  |\n";
+        info +=       "|------|-------|------|------|-------|-----|--------|\n";
         for( LayeredGraphNode n : graph.getContainedNodes() )
         {
             info += "|" + TextLayoutHelper.strToLen( n.getName(), 6 ) +