Exemplo n.º 1
0
 def __init__(self, graph: Graph):
     self.n = graph.num_vertices
     self.m = graph.get_num_edges()
     super().__post_init__()
     self.fill(graph)