Class ISOMLayoutAlgorithm<V>

    • Field Detail

      • maxEpoch

        protected int maxEpoch
      • epoch

        protected int epoch
      • radiusConstantTime

        protected int radiusConstantTime
      • radius

        protected int radius
      • minRadius

        protected int minRadius
      • adaption

        protected double adaption
      • initialAdaption

        protected double initialAdaption
      • minAdaption

        protected double minAdaption
      • coolingFactor

        protected double coolingFactor
      • queue

        protected List<V> queue
      • status

        protected String status
    • Constructor Detail

      • ISOMLayoutAlgorithm

        public ISOMLayoutAlgorithm()
    • Method Detail

      • getStatus

        public String getStatus()
        Returns:
        the current number of epochs and execution status, as a string.
      • visit

        public void visit​(LayoutModel<V> layoutModel)
        Description copied from class: AbstractIterativeLayoutAlgorithm
        because the IterativeLayoutAlgorithms use multithreading to continuously update vertex positions, the layoutModel state is saved (during the visit method) so that it can be used continuously
        Specified by:
        visit in interface LayoutAlgorithm<V>
        Overrides:
        visit in class AbstractIterativeLayoutAlgorithm<V>
        Parameters:
        layoutModel - the mediator between the container for vertices (the Graph) and the mapping from Vertex to Point
      • initialize

        public void initialize()
      • step

        public void step()
        Advances the current positions of the graph elements.
        Specified by:
        step in interface IterativeContext
      • done

        public boolean done()
        Returns true if the vertex positions are no longer being updated. Currently ISOMLayout stops updating vertex positions after a certain number of iterations have taken place.
        Specified by:
        done in interface IterativeContext
        Returns:
        true if the vertex position updates have stopped, false otherwise
      • reset

        public void reset()
        Resets the layout iteration count to 0, which allows the layout algorithm to continue updating vertex positions.