for g in graphs.nauty_geng("7 -c"):
A=g.adjacency_matrix().determinant()
if A!=0:
g.show()
show(A)
![]() | 1 | initial version | |
for g in graphs.nauty_geng("7 -c"):
A=g.adjacency_matrix().determinant()
if A!=0:
g.show()
show(A)
![]() | 2 | None |
for g in graphs.nauty_geng("7 -c"): A=g.adjacency_matrix().determinant() if A!=0: g.show()
show(A)
Here determinant is absolute value of the determinant.
![]() | 3 | None |
for g in graphs.nauty_geng("7 -c"): A=g.adjacency_matrix().determinant() if A!=0: g.show() show(A)
Here determinant is absolute value of the determinant.
![]() | 4 | None |
for g in graphs.nauty_geng("7 -c"):
A=g.adjacency_matrix().determinant()
if A!=0:
g.show()
show(A)
![]() | 5 | None |
for g in graphs.nauty_geng("7 -c"): A=g.adjacency_matrix().determinant() if A!=0: g.show() show(A)
![]() | 6 | None |
for g in graphs.nauty_geng("7 -c"): if g.size()==9 A=g.adjacency_matrix().determinant() if A!=0: g.show() show(A)
![]() | 7 | None |
.
for g in graphs.nauty_geng("7 -c"):
if g.size()==9
A=g.adjacency_matrix().determinant()
if A!=0:
g.show()
show(A)show(A)