Uses of Class
rgu.transport.algorithms.search.CostMatrix
Packages that use CostMatrix
Package
Description
Contains algorithms for search such as Dijkstra graph search.
-
Uses of CostMatrix in rgu.transport.algorithms.search
Methods in rgu.transport.algorithms.search that return CostMatrixModifier and TypeMethodDescriptionstatic <T,C> CostMatrix <T, C> CostMatrix.construct(Explorable<T, C> graph, Set<T> vertices, ReachabilityAlgorithm<C> algorithm) Constructs a cost matrix by searching the specified graph.static <T,C> CostMatrix <T, C> CostMatrix.construct(Explorable<T, C> graph, Set<T> vertices, ReachabilityAlgorithm<C> algorithm, ProgressListener progress) Constructs a cost matrix by searching the specified graph.static <T,C> CostMatrix <T, C> CostMatrix.construct(Explorable<T, C> graph, Set<T> vertices, ReachabilityAlgorithm<C> algorithm, ProgressListener progress, boolean subStageOnly) Constructs a cost matrix by searching the specified graph.