Skip to content

Commit 34cf456

Browse files
committed
spotless
1 parent c658856 commit 34cf456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/search/vectors/AbstractIVFKnnVectorQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ private int adjustNProbeForSegment(double affinityScore, double affinityTreshold
194194

195195
// for low affinity scores, decrease nProbe
196196
if (affinityScore <= affinityTreshold) {
197-
//int adjustment = (int) Math.ceil((affinityTreshold - affinityScore) * maxAdjustment);
197+
// int adjustment = (int) Math.ceil((affinityTreshold - affinityScore) * maxAdjustment);
198198
return Math.max(baseNProbe / 3, 1);
199199
}
200200

0 commit comments

Comments
 (0)