eulerize¶
- eulerize(G)[source]¶
Transforms a graph into an Eulerian graph
- Parameters
- GNetworkX graph
An undirected graph
- Returns
- GNetworkX multigraph
- Raises
- NetworkXError
If the graph is not connected.
See also
References
- 1
J. Edmonds, E. L. Johnson. Matching, Euler tours and the Chinese postman. Mathematical programming, Volume 5, Issue 1 (1973), 111-114.
- 2
- 3
Examples
>>> G = nx.complete_graph(10) >>> H = nx.eulerize(G) >>> nx.is_eulerian(H) True