Class ContractionHierarchyPrecomputation.VertexStatistics
java.lang.Object
org.jgrapht.alg.shortestpath.ContractionHierarchyPrecomputation.VertexStatistics
- Enclosing class:
ContractionHierarchyPrecomputation<V,E>
Contains statistics corresponding to a vertex in
contractionGraph needed to compute
its priority.-
Field Summary
FieldsModifier and TypeFieldDescription(package private) intNumber of edges added to thecontractionGraphin case this vertex is contracted.(package private) intSum of the complexities of edges added to thecontractionGraphin case this vertex is contracted.(package private) intNumber of edges removed to thecontractionGraphin case this vertex is contracted.(package private) intSum of the complexities of edges removed from thecontractionGraphin case this vertex is contracted. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
addedContractionEdges
int addedContractionEdgesNumber of edges added to thecontractionGraphin case this vertex is contracted. -
removedContractionEdges
int removedContractionEdgesNumber of edges removed to thecontractionGraphin case this vertex is contracted. -
addedOriginalEdges
int addedOriginalEdgesSum of the complexities of edges added to thecontractionGraphin case this vertex is contracted. The complexity of an edge as the number of edges it represents in the originalgraph. -
removedOriginalEdges
int removedOriginalEdgesSum of the complexities of edges removed from thecontractionGraphin case this vertex is contracted. The complexity of an edge as the number of edges it represents in the originalgraph.
-
-
Constructor Details
-
VertexStatistics
private VertexStatistics()
-