| 1 | initial version |
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+'.
| 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+'.
| 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+'.
| 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+'.
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.