示例#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;
 }