connected graphs    
   How to list all the nonishomorphic connected graphs with 9 vertices?
add a comment
Following the link given by @kcrisman you learn about nauty_geng.
sage: gen = graphs.nauty_geng("9 -c")
sage: sum(1 for g in gen)
261080
You may find this link helpful. Though perhaps connectedness isn't heritable, so be warned:
Remember that the property argument does not behave as a filter, except for appropriately inheritable properties:
Still, on that page you should find a syntax that helps you.
Asked: 2016-07-13 18:46:18 +0100
Seen: 1,027 times
Last updated: Jul 14 '16
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.