This is an automated email from the ASF dual-hosted git repository. aherbert pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
from 493fafa Correct import order in examples new c9ed0a6 STATISTICS-71: Add base interface for statistic implementations new 9ea1c58 Track changes new a1094d6 Add TODO tag to future task The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: commons-statistics-descriptive/pom.xml | 13 ++ .../statistics/descriptive/DoubleStatistic.java | 12 +- .../descriptive/DoubleStatisticAccumulator.java | 21 ++- .../apache/commons/statistics/descriptive/Min.java | 134 +++++++++++++++ .../statistics/descriptive}/package-info.java | 4 +- .../commons/statistics/descriptive/MinTest.java | 187 +++++++++++++++++++++ .../commons/statistics/descriptive/TestHelper.java | 71 ++++++++ src/changes/changes.xml | 13 +- src/conf/pmd/pmd-ruleset.xml | 2 +- 9 files changed, 440 insertions(+), 17 deletions(-) copy commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/package-info.java => commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/DoubleStatistic.java (67%) copy commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference/DataDispersion.java => commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/DoubleStatisticAccumulator.java (62%) create mode 100644 commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Min.java copy {commons-statistics-inference/src/main/java/org/apache/commons/statistics/inference => commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive}/package-info.java (89%) create mode 100644 commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/MinTest.java create mode 100644 commons-statistics-descriptive/src/test/java/org/apache/commons/statistics/descriptive/TestHelper.java