Mathematica combinatorica package: avoid graphs rendering
I'm working with quite large graphs in notebook (I'm not a Mathematica expert).
Every time I load or manipulate a graph with instructions like these:
g = Import["out.graphml", "Graph"] or
g = VertexAdd[g, "aux"]
the graph is displayed in the result but the rendering is very very slow.
Is there a way to disable graph rendering in notebook?
任何Mathematica输出的图形部分都可以通过在行尾放置分号来抑制。
g = Import["out.graphml", "Graph"];
g = VertexAdd(g, "aux");
链接地址: http://www.djcxy.com/p/20256.html