Beispiel #1
0
 def setup_complex(self):
     import GraphGenerator as graphgen  # importing my random graph generator module
     random_graph = graphgen.ComplexGraph(
     )  # compositon used to access random graph class
     random_graph.setup_nodes()  # random graph being set up
     random_graph.setup_neighbours()
     self.display_data(random_graph.graph)