how to get only the connected graphs from this code.
for G in graphs(10):
G.show()
L=G.laplacian_matrix().eigenvalues()
L.sort()
show(L)
1 | initial version | asked 2019-02-12 08:57:16 +0100 Anonymous |
how to get only the connected graphs from this code.
for G in graphs(10):
G.show()
L=G.laplacian_matrix().eigenvalues()
L.sort()
show(L)