Returns the treewidth of the chordal graph G.
Parameters : | G : graph
|
---|---|
Returns : | treewidth : int
|
Raises : | NetworkXError :
|
References
[R135] | http://en.wikipedia.org/wiki/Tree_decomposition#Treewidth |
Examples
>>> import networkx as nx
>>> e = [(1,2),(1,3),(2,3),(2,4),(3,4),(3,5),(3,6),(4,5),(4,6),(5,6),(7,8)]
>>> G = nx.Graph(e)
>>> G.add_node(9)
>>> nx.chordal_graph_treewidth(G)
3