diff options
Diffstat (limited to 'networkx/algorithms/tree/mst.py')
-rw-r--r-- | networkx/algorithms/tree/mst.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/networkx/algorithms/tree/mst.py b/networkx/algorithms/tree/mst.py index 20a2df42..b7b8c1d9 100644 --- a/networkx/algorithms/tree/mst.py +++ b/networkx/algorithms/tree/mst.py @@ -537,6 +537,8 @@ def minimum_spanning_tree(G, weight='weight', algorithm='kruskal', There may be more than one tree with the same minimum or maximum weight. See :mod:`networkx.tree.recognition` for more detailed definitions. + Isolated nodes with self-loops are in the tree as edgeless isolated nodes. + """ edges = minimum_spanning_edges(G, algorithm, weight, keys=True, data=True, ignore_nan=ignore_nan) @@ -596,6 +598,8 @@ def maximum_spanning_tree(G, weight='weight', algorithm='kruskal', There may be more than one tree with the same minimum or maximum weight. See :mod:`networkx.tree.recognition` for more detailed definitions. + Isolated nodes with self-loops are in the tree as edgeless isolated nodes. + """ edges = maximum_spanning_edges(G, algorithm, weight, keys=True, data=True, ignore_nan=ignore_nan) |