Package | Description |
---|---|
eu.bandm.tools.graph |
Mathematical graph tools.
|
Modifier and Type | Method and Description |
---|---|
static TraversalOrder |
TraversalOrder.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalOrder |
TraversalOrder.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalOrder[] |
TraversalOrder.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static TraversalOrder[] |
TraversalOrder.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <V> TopologicalSorter<V> |
GraphModels.topsort(RootedGraphModel<V> model,
TraversalOrder order,
boolean weak) |
static <V> TopologicalSorter<V> |
GraphModels.topsort(RootedGraphModel<V> model,
TraversalOrder order,
boolean weak) |
Constructor and Description |
---|
TopologicalSorter(RootedGraphModel<V> model,
TraversalOrder order,
boolean weak)
Create an object that imposes an order on the nodes of a graph.
|
TopologicalSorter(RootedGraphModel<V> model,
TraversalOrder order,
boolean weak)
Create an object that imposes an order on the nodes of a graph.
|
see also the complete user documentation .