All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.repir.Retriever.DocumentComparatorScore Maven / Gradle / Ivy

The newest version!
package io.github.repir.Retriever;
import java.util.Comparator;

/**
 * Sorts documents descending on score. Sorting is stabilized for Documents
 * that obtain the same score, by sorting these on partition and docid. 
 * @author Jeroen Vuurens
 */
public class DocumentComparatorScore implements Comparator {

   @Override
   public int compare(Document o1, Document o2) {
       return (o1.score > o2.score) ? -1 : 1;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy