Skip to content

Commit

Permalink
Fix root-node precision problems
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed Jun 30, 2024
1 parent 97d1f45 commit 538302e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/tinspin/index/util/MathTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static double[] floorPowerOfTwoCopy(double[] d) {
* Returns the maximal delta between any pair of scalars in the vector.
* @param v1 vector 1
* @param v2 vector 2
* @return maximal delta (always >= 0).
* @return maximal delta (positive or zero).
*/
public static double maxDelta(double[] v1, double[] v2) {
double dMax = 0;
Expand Down

0 comments on commit 538302e

Please sign in to comment.