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-numbers.git.
from e250014 Exclude spot bugs false positives new a0e56e1 NUMBERS-172: Use Boost Error function implementation new 62588a9 Increase test coverage for RegularizedGamma new 1347107 Update test tolerances for Erf and Erfc tests new 95329dd Track changes The 4 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: .../org/apache/commons/numbers/gamma/BoostErf.java | 301 ++++++++++++ .../java/org/apache/commons/numbers/gamma/Erf.java | 39 +- .../org/apache/commons/numbers/gamma/Erfc.java | 44 +- .../apache/commons/numbers/gamma/BoostErfTest.java | 159 ++++++- .../org/apache/commons/numbers/gamma/ErfTest.java | 2 +- .../org/apache/commons/numbers/gamma/ErfcTest.java | 5 +- .../numbers/gamma/RegularizedGammaTest.java | 143 ++++-- .../commons/numbers/gamma/erf_close_to_1_data.csv | 159 +++++++ .../org/apache/commons/numbers/gamma/erf_data.csv | 522 +++++++++++++++++++++ .../commons/numbers/gamma/erf_large_data.csv | 92 ++++ .../commons/numbers/gamma/erf_small_data.csv | 172 +++++++ src/changes/changes.xml | 11 + src/main/resources/pmd/pmd-ruleset.xml | 13 + 13 files changed, 1568 insertions(+), 94 deletions(-) create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/erf_close_to_1_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/erf_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/erf_large_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/erf_small_data.csv