iverase commented on a change in pull request #7: URL: https://github.com/apache/lucene/pull/7#discussion_r604801417
########## File path: lucene/core/src/java/org/apache/lucene/util/bkd/BKDReader.java ########## @@ -17,1048 +17,146 @@ package org.apache.lucene.util.bkd; import java.io.IOException; -import java.io.UncheckedIOException; -import java.util.Arrays; -import org.apache.lucene.codecs.CodecUtil; -import org.apache.lucene.index.CorruptIndexException; import org.apache.lucene.index.PointValues; -import org.apache.lucene.search.DocIdSetIterator; -import org.apache.lucene.store.IndexInput; -import org.apache.lucene.util.BytesRef; -import org.apache.lucene.util.MathUtil; /** - * Handles intersection of an multi-dimensional shape in byte[] space with a block KD-tree - * previously written with {@link BKDWriter}. + * A {@link PointValues} wrapper for {@link BKDIndexInput} to handle intersections. * * @lucene.experimental */ public final class BKDReader extends PointValues { Review comment: it makes sense -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org