mayya-sharipova commented on a change in pull request #267: URL: https://github.com/apache/lucene/pull/267#discussion_r700572938
########## File path: lucene/core/src/java/org/apache/lucene/util/hnsw/HnswGraph.java ########## @@ -188,15 +244,28 @@ public int size() { } // TODO: optimize RAM usage so not to store references for all nodes for levels > 0 + // TODO: add extra levels if level >= numLevels public void addNode(int level, int node) { if (level > 0) { + // if the new node introduces a new level, make this node the graph's new entry point + if (level > curMaxLevel) { + curMaxLevel = level; + entryNode = node; + // add more levels if needed + if (level >= graph.size()) { Review comment: I've modified the code to use `curMaxLevel` instead of `graph.size()`. -- 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. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org 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