Class DAGLayoutAlgorithm<V,​E>

  • All Implemented Interfaces:
    IterativeLayoutAlgorithm<V>, LayoutAlgorithm<V>, AfterRunnable, ExecutorConsumer, IterativeContext, Threaded

    public class DAGLayoutAlgorithm<V,​E>
    extends SpringLayoutAlgorithm<V,​E>
    An implementation of Layout suitable for tree-like directed acyclic graphs. Parts of it will probably not terminate if the graph is cyclic! The layout will result in directed edges pointing generally upwards. Any vertices with no successors are considered to be level 0, and tend towards the top of the layout. Any vertex has a level one greater than the maximum level of all its successors.
    Author:
    John Yesberg
    • Field Detail

    • Constructor Detail

      • DAGLayoutAlgorithm

        public DAGLayoutAlgorithm()
    • Method Detail

      • setRoot

        public void setRoot()
        Calculates the level of each vertex in the graph. Level 0 is allocated to each vertex with no successors. Level n+1 is allocated to any vertex whose successors' maximum level is n.
      • setRoot

        public void setRoot​(V vertex)
        Set vertex v to be level 0.
        Parameters:
        vertex - the vertex to set as root
      • propagateMinimumLevel

        public void propagateMinimumLevel​(V vertex)
        A recursive method for allocating the level for each vertex. Ensures that all predecessors of v have a level which is at least one greater than the level of v.
        Parameters:
        vertex - the vertex whose minimum level is to be calculated
      • initialize

        public void initialize()
        Had to override this one as well, to ensure that setRoot() is called.
        Overrides:
        initialize in class SpringLayoutAlgorithm<V,​E>
      • moveVertices

        protected void moveVertices()
        Override the moveVertices() method from SpringLayout. The only change we need to make is to make sure that vertices don't float higher than the minY coordinate, as calculated by their minimumLevel.
        Overrides:
        moveVertices in class SpringLayoutAlgorithm<V,​E>
      • setLocation

        public void setLocation​(V picked,
                                double x,
                                double y)
        Override forceMove so that if someone moves a vertex, we can re-layout everything.
        Parameters:
        picked - the vertex whose location is to be set
        x - the x coordinate of the location to set
        y - the y coordinate of the location to set
      • setLocation

        public void setLocation​(V picked,
                                Point p)
        Override forceMove so that if someone moves a vertex, we can re-layout everything.
        Parameters:
        picked - the vertex whose location is to be set
        p - the location to set
      • relaxEdges

        protected void relaxEdges()
        Overridden relaxEdges. This one reduces the effect of edges between greatly different levels.
        Overrides:
        relaxEdges in class SpringLayoutAlgorithm<V,​E>