Class SugiyamaRunnable<V,​E>

  • Type Parameters:
    V - vertex type
    E - edge type
    All Implemented Interfaces:
    Runnable, LayeredRunnable<E>
    Direct Known Subclasses:
    TestSugiyamaRunnable

    public class SugiyamaRunnable<V,​E>
    extends Object
    implements LayeredRunnable<E>
    Runnable part of the SugiyamaLayoutAlgorithm The Sugiyama Hierarchical Minimum-Cross layout algorithm
    See Also:
    "Methods for Visual Understanding Hierarchical System Structures. KOZO SUGIYAMA, MEMBER, IEEE, SHOJIRO TAGAWA, AND MITSUHIKO TODA, MEMBER, IEEE", "An E log E Line Crossing Algorithm for Levelled Graphs. Vance Waddle and Ashok Malhotra IBM Thomas J. Watson Research Center", "Simple and Efficient Bilayer Cross Counting. Wilhelm Barth, Petra Mutzel, Institut für Computergraphik und Algorithmen Technische Universität Wien, Michael Jünger, Institut für Informatik Universität zu Köln", "Fast and Simple Horizontal Coordinate Assignment, Ulrik Brandes and Boris Köpf, Department of Computer & Information Science, University of Konstanz"
    • Field Detail

      • graph

        protected org.jgrapht.Graph<V,​E> graph
      • svGraph

        protected org.jgrapht.Graph<LV<V>,​LE<V,​E>> svGraph
      • neighborCache

        protected org.jgrapht.alg.util.NeighborCache<LV<V>,​LE<V,​E>> neighborCache
      • vertexPredicate

        protected Predicate<V> vertexPredicate
      • edgePredicate

        protected Predicate<E> edgePredicate
      • vertexComparator

        protected Comparator<V> vertexComparator
      • edgeComparator

        protected Comparator<E> edgeComparator
      • straightenEdges

        protected boolean straightenEdges
      • postStraighten

        protected boolean postStraighten
      • transpose

        protected boolean transpose
      • transposeLimit

        protected int transposeLimit
      • maxLevelCross

        protected int maxLevelCross
      • multiComponent

        protected boolean multiComponent
      • cancelled

        protected boolean cancelled
    • Method Detail

      • builder

        public static <V,​E> SugiyamaRunnable.Builder<V,​E,​?,​?> builder()
        Type Parameters:
        V - vertex type
        E - edge type
        Returns:
        a Builder ready to configure
      • run

        public void run()
        Specified by:
        run in interface Runnable
      • transposeDownwards

        protected void transposeDownwards​(LV<V>[][] ranks,
                                          Map<Integer,​List<LE<V,​E>>> reducedEdgeMap)
      • transposeUpwards

        protected void transposeUpwards​(LV<V>[][] ranks,
                                        Map<Integer,​List<LE<V,​E>>> reducedEdgeMap)
      • medianDownwards

        protected void medianDownwards​(LV<V>[][] layers,
                                       org.jgrapht.Graph<LV<V>,​LE<V,​E>> svGraph)
      • medianUpwards

        protected void medianUpwards​(LV<V>[][] layers,
                                     org.jgrapht.Graph<LV<V>,​LE<V,​E>> svGraph)
      • copy

        protected LV<V>[][] copy​(LV<V>[][] in)