Class LexRankResults<T>


  • public class LexRankResults<T>
    extends Object
    A dumb container class that holds results from the LexRank algorithm.
    • Field Detail

      • rankedResults

        public List<T> rankedResults
        The results, sorted in order of LexRank score
      • scores

        public Map<T,​Double> scores
        A mapping from each element to its LexRank score
      • neighbors

        public Map<T,​List<T>> neighbors
        A mapping from each element to its neighbors in the thresholded connectivity graph.
    • Constructor Detail

      • LexRankResults

        public LexRankResults()