Package recommender.core.util

Examples of recommender.core.util.RecommendationResultComparator


   * @param numberOfResults - maximal number of top results to keep.
   */
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public TopResultsMapBackedSet(final int numberOfResults) {
    super(new DefaultKeyExtractor());
    this.sortedResults = new TreeSet<R>(new RecommendationResultComparator());
    this.numberOfResults = numberOfResults;
    this.comp = new RecommendationResultComparator();
  }
View Full Code Here

TOP

Related Classes of recommender.core.util.RecommendationResultComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.