Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
1

graphs of order n

asked 5 years ago

GA316 gravatar image

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.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 5 years ago

slelievre gravatar image

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.

Preview: (hide)
link

Comments

Thank you. one doubt. graphs(5) gives the list of graphs up to isomorphism?

GA316 gravatar imageGA316 ( 5 years ago )

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.

slelievre gravatar imageslelievre ( 5 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 5 years ago

Seen: 710 times

Last updated: Aug 03 '19