Uses of Class
sbrt.kernel.math.graph_theory.Path

Packages that use Path
sbrt.kernel.math.graph_theory.comp Provides classes and interfaces for performing graph theoretical computations. 
sbrt.kernel.math.graph_theory.proc Provides classes and interfaces for performing graph theoretical processes. 
 

Uses of Path in sbrt.kernel.math.graph_theory.comp
 

Methods in sbrt.kernel.math.graph_theory.comp that return types with arguments of type Path
 java.util.List<Path<N>> PathFinder.getPaths()
          Returns a list of all paths.
 java.util.List<Path<N>> PathFinder.getPaths(java.util.Collection<? extends N> sources, java.util.Collection<? extends N> sinks)
          Returns a list of all paths between the provided source and sink nodes.
<T extends N,S extends N>
java.util.List<Path<N>>
PathFinder.getPaths(T source, S sink)
          Returns a list of all paths between the provided source and sink nodes.
 

Uses of Path in sbrt.kernel.math.graph_theory.proc
 

Method parameters in sbrt.kernel.math.graph_theory.proc with type arguments of type Path
 void CycleIdProcess.run(ResultsManager<Path<N>> resultsManager)
          Adds to the provided results manager each identified cycle in the current graph.
 void PathIdProcess.run(ResultsManager<Path<N>> resultsManager)
          Adds to the provided results manager each computed path in the current graph.