Package org.jgrapht.alg.interfaces
Interface VertexScoringAlgorithm<V,D>
-
- Type Parameters:
V
- the vertex typeD
- the score type
- All Known Implementing Classes:
AlphaCentrality
,BetweennessCentrality
,ClosenessCentrality
,ClusteringCoefficient
,Coreness
,HarmonicCentrality
,PageRank
public interface VertexScoringAlgorithm<V,D>
An interface for all algorithms which assign scores to vertices of a graph.- Author:
- Dimitrios Michail
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<V,D>
getScores()
Get a map with the scores of all verticesD
getVertexScore(V v)
Get a vertex score
-