Uses of Interface
net.walend.measured.ShortestGEDistances

Packages that use ShortestGEDistances
net.walend.measured This package contains a kit for working with measured paths on directed graphs. 
net.walend.measured.test This package contains a kit for testing measuring paths. 
 

Uses of ShortestGEDistances in net.walend.measured
 

Classes in net.walend.measured that implement ShortestGEDistances
 class AbstractShortestGEDistances
          AbstractShortestGEDistances contains a 2D array of distances between nodes in a directed graph.
 class DijkstraShortestGEDistances
          DijkstraShortestGEDistances is an abstract class that holds Dijkstra's algorithm.
 class FloydWarshallShortestGEDistances
          FloydWarshallShortestGEDistances uses the very simple Floyd-Warshall algorithm to find the shortest distances.
 class JITShortestGEDistances
          JITShortestGEDistances is an implementation of ShortestGEDistances that uses Dijkstra's algorithm to find the shortest distances just in time.
 class JohnsonShortestGEDistances
          JohnsonShortestGEDistances uses Johnson's algorithm to find the shortest distances during construction.
 

Uses of ShortestGEDistances in net.walend.measured.test
 

Methods in net.walend.measured.test that return ShortestGEDistances
protected  ShortestGEDistances FloydWarshallGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph)
           
protected  ShortestGEDistances FloydWarshallGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph, GEPathMeter pathMeter)
           
protected abstract  ShortestGEDistances ShortestGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph)
           
protected abstract  ShortestGEDistances ShortestGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph, GEPathMeter pathMeter)
           
protected  ShortestGEDistances JohnsonGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph)
           
protected  ShortestGEDistances JohnsonGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph, GEPathMeter pathMeter)
           
protected  ShortestGEDistances JITGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph)
           
protected  ShortestGEDistances JITGEDistancesTest.createShortestGEDistances(IndexedGEDigraph digraph, GEPathMeter pathMeter)
           
 

Methods in net.walend.measured.test with parameters of type ShortestGEDistances
 void ShortestGEDistancesTest.testGetLength(ShortestGEDistances shortestDistances, java.lang.Object head, java.lang.Object tail, int expected, boolean nodeMissing)
           
 



Copyright (c) 2001, 2002, David Walend