Class HITS.Scores

java.lang.Object
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

    Fields
    Modifier and Type
    Field
    Description
    double
    The authority score for a vertex.
    double
    The hub score for a vertex.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Scores(double hub, double authority)
    Creates an instance with the specified hub and authority score.
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • hub

      public double hub
      The hub score for a vertex.
    • authority

      public double authority
      The authority score for a vertex.
  • Constructor Details

    • Scores

      public Scores(double hub, double authority)
      Creates an instance with the specified hub and authority score.
      Parameters:
      hub - the hub score
      authority - the authority score
  • Method Details