Uses of Class
org.jgrapht.alg.RankingPathElementList
-
Packages that use RankingPathElementList Package Description org.jgrapht.alg Algorithms provided with JGraphT. -
-
Uses of RankingPathElementList in org.jgrapht.alg
Fields in org.jgrapht.alg with type parameters of type RankingPathElementList Modifier and Type Field Description private java.util.Map<V,RankingPathElementList<V,E>>
KShortestPathsIterator. prevSeenDataContainer
Deprecated.Stores the paths that improved the vertex in the previous pass.private java.util.Map<V,RankingPathElementList<V,E>>
KShortestPathsIterator. seenDataContainer
Deprecated.Stores the vertices that have been seen during iteration and (optionally) some additional traversal info regarding each vertex.Methods in org.jgrapht.alg that return RankingPathElementList Modifier and Type Method Description private RankingPathElementList<V,E>
KShortestPathsIterator. createSeenData(V vertex, E edge)
Deprecated.The first time we see a vertex, make up a new entry for it.(package private) RankingPathElementList<V,E>
KShortestPathsIterator. getPathElements(V endVertex)
Deprecated.Returns the path elements of the ranking shortest paths with less thannMaxHops
edges between the start vertex and the end vertex.Methods in org.jgrapht.alg with parameters of type RankingPathElementList Modifier and Type Method Description boolean
RankingPathElementList. addPathElements(RankingPathElementList<V,E> elementList, E edge)
Deprecated.Adds paths in the list at vertex y.Constructors in org.jgrapht.alg with parameters of type RankingPathElementList Constructor Description RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElementList<V,E> elementList, E edge)
Deprecated.Creates paths obtained by concatenating the specified edge to the specified paths.RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElementList<V,E> elementList, E edge, V guardVertexToNotDisconnect)
Deprecated.Creates paths obtained by concatenating the specified edge to the specified paths.RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElementList<V,E> elementList, E edge, V guardVertexToNotDisconnect, PathValidator<V,E> pathValidator)
Deprecated.Creates paths obtained by concatenating the specified edge to the specified paths.
-