Uses of Interface
org.jgrapht.alg.PathValidator
-
Packages that use PathValidator Package Description org.jgrapht.alg Algorithms provided with JGraphT. -
-
Uses of PathValidator in org.jgrapht.alg
Fields in org.jgrapht.alg declared as PathValidator Modifier and Type Field Description private PathValidator<V,E>
RankingPathElementList. externalPathValidator
Deprecated.To be used on top of general path validations.private PathValidator<V,E>
KShortestPaths. pathValidator
Deprecated.private PathValidator<V,E>
KShortestPathsIterator. pathValidator
Deprecated.Performs path validations in addition to the basics (source and target are connected w/o loops)Constructors in org.jgrapht.alg with parameters of type PathValidator Constructor Description KShortestPaths(Graph<V,E> graph, V startVertex, int nPaths, int nMaxHops, PathValidator<V,E> pathValidator)
Deprecated.Creates an object to calculate ranking shortest paths between the start vertex and others vertices.KShortestPaths(Graph<V,E> graph, V startVertex, int k, PathValidator<V,E> pathValidator)
Deprecated.Creates an object to compute ranking shortest paths between the start vertex and others vertices.KShortestPathsIterator(Graph<V,E> graph, V startVertex, V endVertex, int maxSize, PathValidator<V,E> pathValidator)
Deprecated.RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElement<V,E> pathElement, PathValidator<V,E> pathValidator)
Deprecated.Creates a list with an empty path.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.RankingPathElementList(Graph<V,E> graph, int maxSize, V vertex, PathValidator<V,E> pathValidator)
Deprecated.Creates an empty list.
-