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