Uses of Class
org.jgrapht.alg.RankingPathElement
-
Packages that use RankingPathElement Package Description org.jgrapht.alg Algorithms provided with JGraphT. -
-
Uses of RankingPathElement in org.jgrapht.alg
Fields in org.jgrapht.alg declared as RankingPathElement Modifier and Type Field Description private RankingPathElement<V,E>
KShortestPaths.PathWrapper. rankingPathElement
Fields in org.jgrapht.alg with type parameters of type RankingPathElement Modifier and Type Field Description private java.util.Map<RankingPathElement<V,E>,java.lang.Boolean>
RankingPathElementList. path2disconnect
Deprecated.Methods in org.jgrapht.alg that return RankingPathElement Modifier and Type Method Description RankingPathElement<V,E>
RankingPathElement. getPrevPathElement()
Deprecated.Returns the previous path element.Methods in org.jgrapht.alg that return types with arguments of type RankingPathElement Modifier and Type Method Description (package private) java.util.List<RankingPathElement<V,E>>
RankingPathElementList. getPathElements()
Deprecated.Methods in org.jgrapht.alg with parameters of type RankingPathElement Modifier and Type Method Description private double
RankingPathElementList. calculatePathWeight(RankingPathElement<V,E> pathElement, E edge)
Deprecated.Costs taken into account are the weights stored inEdge
objects.private boolean
RankingPathElementList. isGuardVertexDisconnected(RankingPathElement<V,E> prevPathElement)
Deprecated.Ensures that paths of the list do not disconnect the guard-vertex.private boolean
RankingPathElementList. isNotValidPath(RankingPathElement<V,E> prevPathElement, E edge)
Deprecated.private boolean
RankingPathElementList. isSimplePath(RankingPathElement<V,E> prevPathElement, E edge)
Deprecated.Ensures that paths of the list are simple (check that the vertex was not already in the path element).Constructors in org.jgrapht.alg with parameters of type RankingPathElement Constructor Description PathMask(RankingPathElement<V,E> pathElement)
Creates a mask for all the edges and the vertices of the path (including the 2 extremity vertices).PathWrapper(RankingPathElement<V,E> rankingPathElement)
RankingPathElement(Graph<V,E> graph, RankingPathElement<V,E> pathElement, E edge, double weight)
Deprecated.Creates a path element by concatenation of an edge to a path element.RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElement<V,E> pathElement)
Deprecated.Creates a list with an empty path.RankingPathElementList(Graph<V,E> graph, int maxSize, RankingPathElement<V,E> pathElement, PathValidator<V,E> pathValidator)
Deprecated.Creates a list with an empty path.
-