Class DeltaSteppingShortestPath.HeavyRelaxTask

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.Queue<V> vertices
      Vertices which edges will be relaxed.
    • Constructor Summary

      Constructors 
      Constructor Description
      HeavyRelaxTask​(java.util.Queue<V> vertices)
      Constructs instance of a new task.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void run()
      Performs relaxation of edges emanating from vertices.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • vertices

        private java.util.Queue<V> vertices
        Vertices which edges will be relaxed.
    • Constructor Detail

      • HeavyRelaxTask

        HeavyRelaxTask​(java.util.Queue<V> vertices)
        Constructs instance of a new task.
        Parameters:
        vertices - vertices
    • Method Detail

      • run

        public void run()
        Performs relaxation of edges emanating from vertices.
        Specified by:
        run in interface java.lang.Runnable