graphs of order n
How to generate all the graphs of particular order $n$ in sage?
is it possible to do the same up to isomorphism at least for small $n$?
Thank you.
How to generate all the graphs of particular order $n$ in sage?
is it possible to do the same up to isomorphism at least for small $n$?
Thank you.
The documentation is at
and especially
In particular the following generators exist:
sage: graphs(5)
<generator object GraphGenerators.__call__ at 0x...>
sage: graphs.nauty_geng("5")
<generator object GraphGenerators.nauty_geng at 0x...>
sage: graphs.nauty_geng("5 -c")
<generator object GraphGenerators.nauty_geng at 0x...>
and there are many more options to nauty's geng.
The documentation can be accessed with ?
:
sage: graphs?
and it says this generator produces one representative for each isomorphism class.
To get "all graphs", run through all subsets of the set of unordered pairs of integers among the first n integers and construct the corresponding graphs.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2019-08-03 15:13:02 +0100
Seen: 546 times
Last updated: Aug 03 '19
Determining Complete Bipartite Graphs
Determining Complete Multipartite Graphs (Specifically Tripartite)
Iterating over all non isomorphic connected graphs of given order
Non-orientable genus of a graph
I keep losing my node labels on graph export
Compute perfect matchings in a graph