This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
commit 510579a524d2c252a2e943d803f67b19649e96d2 Author: Alex Herbert <aherb...@apache.org> AuthorDate: Mon Mar 24 15:57:09 2025 +0000 Update comments to avoid Sonarcloud code detection --- .../statistics/inference/KolmogorovSmirnovDistributionTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java b/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java index cfd4f0a..18c09bd 100644 --- a/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java +++ b/commons-statistics-inference/src/test/java/org/apache/commons/statistics/inference/KolmogorovSmirnovDistributionTest.java @@ -218,20 +218,20 @@ class KolmogorovSmirnovDistributionTest { @CsvSource({ // Note: f = n*x - floor(n*x). 3 cases are {f = 0, 0 < f <= 0.5, 0.5 < f}. // 1/n < n*x < 1 - 1/n; 0.754693 < n*x*x < 4 - // Values of x for n=10 create f of {0.75, 0, 0.25, 0, 0.5, 0.320} + // Values of x for n=10 create f of: 0.75, 0, 0.25, 0, 0.5, 0.320 "0.275, 10, 0.36721918274907195, 2e-16", "0.3, 10, 0.27053557479999946, 5e-16", "0.325, 10, 0.19329796645948394, 2e-15", "0.5, 10, 0.00777741, 2e-13", "0.55, 10, 0.0022805103214843725, 4e-13", "0.632, 10, 0.00021216261775257054, 8e-14", - // Values of x for n=100 create f of {0.690, 0, 0.5, 0.050, 0.90} + // Values of x for n=100 create f of: 0.690, 0, 0.5, 0.050, 0.90 "0.0869, 100, 0.41345306880916205, 5e-16", "0.12, 100, 0.10330374901819939, 9e-15", "0.125, 100, 0.08050040280210224, 9e-15", "0.1605, 100, 0.010204399956967765, 3e-14", "0.199, 100, 0.0006024947156633567, 2e-12", - // Values of x for n=140 create f of {0.2899, 0.599, 0.40, 0, 0.660} + // Values of x for n=140 create f of: 0.2899, 0.599, 0.40, 0, 0.660 "0.0735, 140, 0.41601087723723057, 5e-16", "0.09, 140, 0.1946946629845738, 2e-16", "0.11, 140, 0.06252511429470399, 7e-15",