Class HITS.Scores

  • Enclosing class:
    HITS<V,​E>

    public static class HITS.Scores
    extends java.lang.Object
    Maintains hub and authority score information for a vertex.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      double authority
      The authority score for a vertex.
      double hub
      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

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.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

      • Scores

        public Scores​(double hub,
                      double authority)
        Creates an instance with the specified hub and authority score.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object