Class GreedyCycleRemoval<V,​E>

  • Type Parameters:
    V - vertex type
    E - edge type

    public class GreedyCycleRemoval<V,​E>
    extends Object
    Remove cycles in the graph and place them in a collection of feedback edges. A later operation will reverse the direction of the feedback arcs for DAG processing. Once complete, the feedback arcs will be restored to their original direction.
    • Constructor Detail

      • GreedyCycleRemoval

        public GreedyCycleRemoval​(org.jgrapht.Graph<V,​E> graph)
    • Method Detail

      • getFeedbackArcs

        public Collection<E> getFeedbackArcs()
        Returns:
      • isLoopVertex

        public static <V,​E> boolean isLoopVertex​(org.jgrapht.Graph<V,​E> graph,
                                                       V v)
      • isIsolatedVertex

        public static <V,​E> boolean isIsolatedVertex​(org.jgrapht.Graph<V,​E> graph,
                                                           V v)
      • reverseFeedbackArcs

        public void reverseFeedbackArcs()