TopologicalSort instead.@Deprecated public final class TopologicalSort extends Object
| Modifier and Type | Class and Description |
|---|---|
static interface |
TopologicalSort.Edge
Deprecated.
Interface for edges in graph that can be sorted topologically
|
static class |
TopologicalSort.EdgeImpl
Deprecated.
Basic Edge implementation
|
static interface |
TopologicalSort.Node
Deprecated.
Interface for nodes in graph that can be sorted topologically
|
static class |
TopologicalSort.NodeImpl
Deprecated.
Basic Node implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static List<TopologicalSort.Node> |
sort(Set<TopologicalSort.Node> nodes)
Deprecated.
Topological sort of dependent nodes in acyclic graphs.
|
public static List<TopologicalSort.Node> sort(Set<TopologicalSort.Node> nodes)
nodes - graph nodesList of TopologicalSort.Nodes. Order: Nodes with no
dependencies starting.IllegalStateException - when cycle is present in the graphCopyright © 2018 OpenDaylight. All rights reserved.