예제 #1
0
 def __str__ (self):
     string = "Vertex ID = " + str(self._vertexID) + "\n"
     string += "\t" + Vertex.predecessorStr(self)
     string += "\t" + Vertex.successorStr(self)
     string += "\t" + 40 * "=" + "\n"   
     for address, instr in sorted(self.instructions.iteritems()):
         string += "\t" + instr.__str__() + "\n"   
     string += "\t" + 40 * "=" + "\n"      
     return string
예제 #2
0
 def __init__ (self, vertexID):
     Vertex.__init__(self, vertexID)
     self.instructions = {}