Class EiglspergerRunnable<V,​E>

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

    public class EiglspergerRunnable<V,​E>
    extends Object
    implements LayeredRunnable<E>
    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", "An Efficient Implementation of Sugiyama's Algorithm for Layered Graph Drawing. Markus Eiglsperger, Martin Siebenhaller, Michael Kaufman"
    • 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
      • straightenEdges

        protected boolean straightenEdges
      • postStraighten

        protected boolean postStraighten
      • transpose

        protected boolean transpose
      • maxLevelCross

        protected int maxLevelCross
      • minimizeEdgeLength

        protected boolean minimizeEdgeLength
      • multiComponent

        protected boolean multiComponent
      • cancelled

        protected boolean cancelled
    • Constructor Detail

      • EiglspergerRunnable

        protected EiglspergerRunnable​(LayoutModel<V> layoutModel,
                                      Function<V,​Rectangle> vertexShapeFunction,
                                      boolean straightenEdges,
                                      boolean postStraighten,
                                      boolean transpose,
                                      int maxLevelCross,
                                      boolean minimizeEdgeLength,
                                      Layering layering,
                                      boolean multiComponent)