We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb71bc commit 3e208cbCopy full SHA for 3e208cb
server/src/main/java/org/elasticsearch/index/codec/vectors/DefaultIVFVectorsReader.java
@@ -252,7 +252,7 @@ public CentroidOffsetAndLength nextPostingListOffsetAndLength() throws IOExcepti
252
253
private int nextCentroid() throws IOException {
254
if (currentParentQueue.size() > 0) {
255
- // return next centroid and add a children from the current parent queue
+ // return next centroid and maybe add a children from the current parent queue
256
return neighborQueue.popAndAddRaw(currentParentQueue.popRaw());
257
} else if (parentsQueue.size() > 0) {
258
// current parent queue is empty, populate it again with the next parent
0 commit comments