예제 #1
0
 public NodePrinter(HeapElementPrinter p)
 {
     parent = p;
 }
예제 #2
0
 public static void PrintHeapElements(StateImpl state)
 {
     HeapElementPrinter hep = new HeapElementPrinter(state);
     TraverseHeap(state, hep.edgeTrav, hep.nodeTrav);
     System.Console.WriteLine("============================================");
 }
예제 #3
0
 public EdgePrinter(HeapElementPrinter p)
 {
     parent = p;
 }