Module omix.api

Class SCC<E,​N>

java.lang.Object
omix.util.math.graph.SCC<E,​N>
Type Parameters:
E - type of the reference edges
N - type of the reference nodes

public final class SCC<E,​N>
extends Object
Author:
Dr. Peter Droste, Omix Visualization
  • Field Details

  • Method Details

    • getNodes

      public List<N> getNodes()
      Returns all nodes belonging to the SCC
      Returns:
      all nodes belonging to the SCC
    • getInEdges

      public List<E> 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

      public List<E> 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

      public List<E> getEdges()
      Returns all edges belonging to the SCC
      Returns:
      all edges belonging to the SCC