edu.uci.ics.jung.algorithms.scoring
Class HITS.Scores

java.lang.Object
  extended by edu.uci.ics.jung.algorithms.scoring.HITS.Scores
Enclosing class:
HITS<V,E>

public static class HITS.Scores
extends Object

Maintains hub and authority score information for a vertex.


Field Summary
 double authority
          The authority score for a vertex.
 double hub
          The hub score for a vertex.
 
Constructor Summary
HITS.Scores(double hub, double authority)
          Creates an instance with the specified hub and authority score.
 
Method Summary
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

hub

public double hub
The hub score for a vertex.


authority

public double authority
The authority score for a vertex.

Constructor Detail

HITS.Scores

public HITS.Scores(double hub,
                   double authority)
Creates an instance with the specified hub and authority score.

Method Detail

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2009. All Rights Reserved.