diff --git a/eval/plot_graph.py b/eval/plot_graph.py new file mode 100644 index 0000000000000000000000000000000000000000..262d89b417dde06b562a25c0bcf53e1bb77955e6 --- /dev/null +++ b/eval/plot_graph.py @@ -0,0 +1,7 @@ +from decentralizepy.graphs import SmallWorld +import networkx as nx +import matplotlib.pyplot as plt + +g = nx.read_edgelist("topos/96_regular.edges") +nx.draw(g) +plt.savefig("96_regular.png") \ No newline at end of file