Uses of Class
edu.uci.ics.jung.algorithms.shortestpath.DijkstraDistance.SourceData
-
Packages that use DijkstraDistance.SourceData Package Description edu.uci.ics.jung.algorithms.shortestpath Provides interfaces and classes for calculating (geodesic) distances and shortest paths. -
-
Uses of DijkstraDistance.SourceData in edu.uci.ics.jung.algorithms.shortestpath
Subclasses of DijkstraDistance.SourceData in edu.uci.ics.jung.algorithms.shortestpath Modifier and Type Class Description protected class
DijkstraShortestPath.SourcePathData
For a given source vertex, holds the estimated and final distances, tentative and final assignments of incoming edges on the shortest path from the source vertex, and a priority queue (ordered by estimaed distance) of the vertices for which distances are unknown.Fields in edu.uci.ics.jung.algorithms.shortestpath with type parameters of type DijkstraDistance.SourceData Modifier and Type Field Description protected java.util.Map<V,DijkstraDistance.SourceData>
DijkstraDistance. sourceMap
Methods in edu.uci.ics.jung.algorithms.shortestpath that return DijkstraDistance.SourceData Modifier and Type Method Description protected DijkstraDistance.SourceData
DijkstraDistance. getSourceData(V source)
protected DijkstraDistance.SourceData
DijkstraShortestPath. getSourceData(V source)
-