public class KShortestPathsSearch<V extends Vertex,E extends Edge<V>> extends AbstractGraphPathSearch<V,E>
Modifier and Type | Class and Description |
---|---|
protected class |
KShortestPathsSearch.InnerOrderedResult
A result modified to return paths ordered according to the provided comparator.
|
AbstractGraphPathSearch.DefaultResult
GraphPathSearch.Result<V extends Vertex,E extends Edge<V>>
ALL_PATHS
Constructor and Description |
---|
KShortestPathsSearch() |
Modifier and Type | Method and Description |
---|---|
protected GraphPathSearch.Result<V,E> |
internalSearch(Graph<V,E> graph,
V src,
V dst,
EdgeWeigher<V,E> weigher,
int maxPaths) |
checkArguments, search
protected GraphPathSearch.Result<V,E> internalSearch(Graph<V,E> graph, V src, V dst, EdgeWeigher<V,E> weigher, int maxPaths)
internalSearch
in class AbstractGraphPathSearch<V extends Vertex,E extends Edge<V>>