abstractindexscorer.java

来自「MG4J (Managing Gigabytes for Java) is a 」· Java 代码 · 共 58 行

JAVA
58
字号
package it.unimi.dsi.mg4j.search.score;/*		  * MG4J: Managing Gigabytes for Java * * Copyright (C) 2004-2007 Paolo Boldi and Sebastiano Vigna * *  This library is free software; you can redistribute it and/or modify it *  under the terms of the GNU Lesser General Public License as published by the Free *  Software Foundation; either version 2.1 of the License, or (at your option) *  any later version. * *  This library is distributed in the hope that it will be useful, but *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *  or FITfNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License *  for more details. * *  You should have received a copy of the GNU Lesser 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. * */import java.io.IOException;import it.unimi.dsi.mg4j.index.Index;import it.unimi.dsi.mg4j.search.DocumentIterator;/** An abstract subclass of {@link it.unimi.dsi.mg4j.search.score.AbstractScorer}. * It provides additionally caching of the {@linkplain #currIndex indices used by the current iterator} for * scorers that actually use multiple indices. */public abstract class AbstractIndexScorer extends AbstractScorer {	/** The current number of elements in {@link #currIndex}. */	protected int n;	/** An array containing the indices in {@link DocumentIterator#indices()} for {@link #documentIterator}; 	 * it is set up by {@link #wrap(DocumentIterator)}. */	protected Index currIndex[];				/** Wraps the given document iterator.	 * 	 * <p>Besides the services provided by {@link AbstractScorer#wrap(DocumentIterator)},	 * this method sets up {@link #currIndex} so that it refers to the indices	 * actually used in <code>documentIterator</code>.	 * 	 * @param documentIterator the document iterator that will be used in subsequent calls to	 * {@link #score()} and {@link #score(Index)}. 	 */		public void wrap( final DocumentIterator documentIterator ) throws IOException {		super.wrap( documentIterator );		n = documentIterator.indices().size();		currIndex = new Index[ n ];		int j = 0;		for( Index i: documentIterator.indices() ) currIndex[ j++ ] = i;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?