edu.uci.ics.jung.algorithms.scoring
Interface VertexScorer<V,S>

Type Parameters:
V - the vertex type
S - the score type
All Known Implementing Classes:
AbstractIterativeScorer, AbstractIterativeScorerWithPriors, BarycenterScorer, BetweennessCentrality, ClosenessCentrality, DegreeScorer, DistanceCentralityScorer, EigenvectorCentrality, HITS, HITSWithPriors, KStepMarkov, PageRank, PageRankWithPriors, VoltageScorer

public interface VertexScorer<V,S>

An interface for algorithms that assign scores to vertices.


Method Summary
 S getVertexScore(V v)
          Returns the algorithm's score for this vertex.
 

Method Detail

getVertexScore

S getVertexScore(V v)
Returns the algorithm's score for this vertex.

Returns:
the algorithm's score for this vertex


Copyright © 2009. All Rights Reserved.