Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 13 years ago

Jason Grout gravatar image

I believe that nauty is deterministic, so the answer should be "yes". You might ask on the nauty mailing list to be sure, though.

You could always save the list of graphs, to be sure:

save(list(graphs.nauty_geng("5"), DATA+'mygraphs.sobj')

and then 5 days later

load(DATA+'mygraphs.sobj')

(this is assuming you are in the notebook. If you aren't, then don't include the 'DATA+'.

click to hide/show revision 2
No.2 Revision

I believe that nauty is deterministic, so the answer should be "yes". You might ask on the nauty mailing list to be sure, though.

You could always save the list of graphs, to be sure:

save(list(graphs.nauty_geng("5"), DATA+'mygraphs.sobj')

and then 5 a few days later

load(DATA+'mygraphs.sobj')

(this is assuming you are in the notebook. If you aren't, then don't include the 'DATA+'.

click to hide/show revision 3
No.3 Revision

I believe that nauty is deterministic, so the answer should be "yes". You might ask on the nauty mailing list to be sure, though.

You could always save the list of graphs, to be sure:

save(list(graphs.nauty_geng("5"), mygraphlist=list(graphs.nauty_geng("5")
save(mygraphlist, DATA+'mygraphs.sobj')

and then a few days later

load(DATA+'mygraphs.sobj')
mygraphlist=load(DATA+'mygraphs.sobj')

(this is assuming you are in the notebook. If you aren't, then don't include the 'DATA+'.

click to hide/show revision 4
No.4 Revision

I believe that nauty is deterministic, so the answer should be "yes". You might ask on the nauty mailing list to be sure, though.

You could always save the list of graphs, to be sure:

mygraphlist=list(graphs.nauty_geng("5")
mygraphlist=list(graphs.nauty_geng("5"))
save(mygraphlist, DATA+'mygraphs.sobj')

and then a few days later

mygraphlist=load(DATA+'mygraphs.sobj')

(this is assuming you are in the notebook. If you aren't, then don't include the 'DATA+'.