Graph theory exporting problems
I type in the following SAGE code and get the graph on the screen that I would expect to get.
g = Graph({0,[1,2,2]}); g
g.plot(graph_border = True)
When I try to export this to a file with the following code I get an "AssertionError" message.
g = Graph({0,[1,2,2]}); g
g.plot(graph_border = True).save('graph.pdf')
How can I fix this so that I can output this graph as a pdf file. I love how easy I can make nice looking graphs in SAGE, but it is useless if I can't export them to use in Latex.