java.lang.Object
omix.util.math.graph.SCC<E,N>
- Type Parameters:
E
- type of the reference edgesN
- type of the reference nodes
public final class SCC<E,N> extends Object
- Author:
- Dr. Peter Droste, Omix Visualization
-
Field Summary
-
Method Summary
Modifier and Type Method Description List<E>
getEdges()
Returns all edges belonging to the SCCList<E>
getInEdges()
Returns all edges coming from outside and connect a node inside the SCCList<N>
getNodes()
Returns all nodes belonging to the SCCList<E>
getOutEdges()
Returns all edges connecting a node inside the SCC and going outside
-
Field Details
-
Method Details
-
getNodes
Returns all nodes belonging to the SCC- Returns:
- all nodes belonging to the SCC
-
getInEdges
Returns all edges coming from outside and connect a node inside the SCC- Returns:
- all edges coming from outside and connect a node inside the SCC
-
getOutEdges
Returns all edges connecting a node inside the SCC and going outside- Returns:
- all edges connecting a node inside the SCC and going outside
-
getEdges
Returns all edges belonging to the SCC- Returns:
- all edges belonging to the SCC
-