339 views
0 votes
0 votes
Determine all non- isomorphic graphs with the number of vertices 20 and edges 188.

1 Answer

1 votes
1 votes
6875

use sage to simulate not possible on paper. nauty and Traces are programs for computing automorphism groups of graphs and digraphs. They can also produce a canonical labelling.

Given below is the sage code i used (use http://www.sagemath.org/) it gives you virtual platform to run below code

count = 0
for g in graphs.nauty_geng("20 180:188"):
    count = count+1
print count

Related questions

0 votes
0 votes
0 answers
1
Pawan Kumar 2 asked Dec 24, 2017
365 views
Doubt in 2nd and 3rd ....
0 votes
0 votes
1 answer
2
cse23 asked Jan 20, 2017
284 views
A graph has a degree sequence <1,1,2,2,3,3,3,3 the number of edges in the graph?a) 18 b)9 c)36 d)8