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 765afd0 Remove redundant variable assignment new 366f9d5 Remove public from package level utility class new 2e4cbe8 NUMBERS-180: Gamma ratio and delta ratio The 2 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: .../apache/commons/numbers/gamma/BoostGamma.java | 206 ++++++++ .../apache/commons/numbers/gamma/BoostMath.java | 2 +- .../apache/commons/numbers/gamma/BoostTools.java | 2 +- .../apache/commons/numbers/gamma/GammaRatio.java | 73 +++ .../commons/numbers/gamma/BoostGammaTest.java | 116 +++- .../commons/numbers/gamma/GammaRatioTest.java | 140 +++++ .../numbers/gamma/gamma_delta_ratio_data.csv | 582 +++++++++++++++++++++ .../numbers/gamma/gamma_delta_ratio_int2_data.csv | 212 ++++++++ .../numbers/gamma/gamma_delta_ratio_int_data.csv | 366 +++++++++++++ .../commons/numbers/gamma/gamma_ratio_data.csv | 422 +++++++++++++++ .../checkstyle/checkstyle-suppressions.xml | 1 + 11 files changed, 2118 insertions(+), 4 deletions(-) create mode 100644 commons-numbers-gamma/src/main/java/org/apache/commons/numbers/gamma/GammaRatio.java create mode 100644 commons-numbers-gamma/src/test/java/org/apache/commons/numbers/gamma/GammaRatioTest.java create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/gamma_delta_ratio_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/gamma_delta_ratio_int2_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/gamma_delta_ratio_int_data.csv create mode 100644 commons-numbers-gamma/src/test/resources/org/apache/commons/numbers/gamma/gamma_ratio_data.csv