📄 documentscoreinfo.java
字号:
package it.unimi.dsi.mg4j.search.score;import java.util.Comparator;/* * MG4J: Managing Gigabytes for Java * * Copyright (C) 2005-2007 Sebastiano Vigna * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * *//** A container used to return scored results with additional information. */public final class DocumentScoreInfo<T> { /** The index of the document. */ public int document; /** Its score. */ public double score; /** Optional additional information. */ public T info; public DocumentScoreInfo( final int document, final double score, final T info ) { this.document = document; this.score = score; this.info = info; } public DocumentScoreInfo( final int document, final double score ) { this.document = document; this.score = score; } public DocumentScoreInfo( final int document ) { this.document = document; this.score = -1; } public String toString() { return "[Document: " + document + "; score: " + score + "; info: " + info + "]"; } /** A comparator that sorts {@link DocumentScoreInfo} instances by <em>increasing</em> document number. */ public static final Comparator<DocumentScoreInfo<?>> DOCUMENT_COMPARATOR = new Comparator<DocumentScoreInfo<?>>() { public int compare( final DocumentScoreInfo<?> dsi0, final DocumentScoreInfo<?> dsi1 ) { return dsi0.document - dsi1.document; } }; /** A comparator that sorts {@link DocumentScoreInfo} instances by increasing score order and then by <em>decreasing</em> document order. */ public static final Comparator<DocumentScoreInfo<?>> SCORE_DOCUMENT_COMPARATOR = new Comparator<DocumentScoreInfo<?>>() { public int compare( final DocumentScoreInfo<?> x, final DocumentScoreInfo<?> y ) { if ( x.score < y.score ) return -1; if ( x.score > y.score ) return 1; // Note that we want document in *increasing* score, but *decreasing* document number. return y.document - x.document; } };}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -