Uses of Class
de.upb.swtpra05.group03.shuttle.DijkstraNode

Packages that use DijkstraNode
de.upb.swtpra05.group03.shuttle   
 

Uses of DijkstraNode in de.upb.swtpra05.group03.shuttle
 

Subclasses of DijkstraNode in de.upb.swtpra05.group03.shuttle
 class GraphNode
           
 

Fields in de.upb.swtpra05.group03.shuttle declared as DijkstraNode
protected  DijkstraNode DijkstraEdge.destination
          The destination station of the edge
 

Methods in de.upb.swtpra05.group03.shuttle with parameters of type DijkstraNode
protected  java.util.Vector Dijkstra.getShortestPaths(DijkstraNode start, DijkstraEdge dontUse)
          Gets a spanning tree for the start node which represent the shortest paths from start to any other node
private  void Dijkstra.relax(DijkstraNode u, DijkstraNode v, long w, int indexOfPredecessor)
          The relax method of the dijkstra algorithm
 

Constructors in de.upb.swtpra05.group03.shuttle with parameters of type DijkstraNode
DijkstraEdge(DijkstraNode dest, long w)
          Constructor for class DijkstraEdge