Remove extra addition character

This commit is contained in:
Alex Herbert 2022-10-22 07:57:36 +01:00
parent a1ac185ba9
commit 3ddfbd6cf7
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ public class KolmogorovSmirnovTest {
throw new TooManyIterationsException(MAXIMUM_PARTIAL_SUM_COUNT);
}
return ret + (sqrtHalfPi / (sqrtN * n)) * (sum / (3240 * z6 * z4) +
+ sum2 / (108 * z6));
sum2 / (108 * z6));
}
/**