Skip to content

Commit fc7994f

Browse files
committed
rabitq works inside of HNSW
1 parent cb4b44a commit fc7994f

File tree

5 files changed

+195
-320
lines changed

5 files changed

+195
-320
lines changed

fdb-extensions/src/main/java/com/apple/foundationdb/async/hnsw/AbstractNode.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,4 @@ public Tuple getPrimaryKey() {
8181
public List<N> getNeighbors() {
8282
return neighbors;
8383
}
84-
85-
/**
86-
* Gets the neighbor at the specified index.
87-
* <p>
88-
* This method provides access to a specific neighbor by its zero-based position
89-
* in the internal list of neighbors.
90-
* @param index the zero-based index of the neighbor to retrieve.
91-
* @return the neighbor at the specified index, guaranteed to be non-null.
92-
*/
93-
@Nonnull
94-
@Override
95-
public N getNeighbor(final int index) {
96-
return neighbors.get(index);
97-
}
9884
}

0 commit comments

Comments
 (0)