MultiGraph.to_undirected#

MultiGraph.to_undirected(as_view=False)[source]#

返回图的无向副本。

Returns:
GGraph/MultiGraph

图的深拷贝。

Notes

这返回边、节点和图属性的“深拷贝”,试图完全复制所有数据和引用。

这与类似的 G = nx.MultiGraph(D) 不同,后者返回数据的浅拷贝。

有关浅拷贝和深拷贝的更多信息,请参阅 Python 的 copy 模块,https://docs.python.org/3/library/copy.html

警告:如果你子类化了 MultiGraph 以在数据结构中使用类似字典的对象,这些更改不会通过此方法传递给创建的 MultiGraph。

Examples

>>> G = nx.MultiGraph([(0, 1), (0, 1), (1, 2)])
>>> H = G.to_directed()
>>> list(H.edges)
[(0, 1, 0), (0, 1, 1), (1, 0, 0), (1, 0, 1), (1, 2, 0), (2, 1, 0)]
>>> G2 = H.to_undirected()
>>> list(G2.edges)
[(0, 1, 0), (0, 1, 1), (1, 2, 0)]