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 5e54406a Combine sums in double-double precision new a514149a NUMBERS-205: Introduces isZero to Addition and isOne to Multiplication new ebddc1b8 Track changes 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: .../org/apache/commons/numbers/core/Addition.java | 16 +++++ .../java/org/apache/commons/numbers/core/DD.java | 13 ++++ .../commons/numbers/core/Multiplication.java | 16 +++++ .../apache/commons/numbers/core/AdditionTest.java | 71 ++++++++++++++++++++++ .../org/apache/commons/numbers/core/DDTest.java | 25 ++++++++ .../commons/numbers/core/MultiplicationTest.java | 71 ++++++++++++++++++++++ .../org/apache/commons/numbers/field/FP64.java | 12 ++++ .../org/apache/commons/numbers/field/FP64Test.java | 22 +++++++ .../commons/numbers/fraction/BigFraction.java | 21 ++++--- .../apache/commons/numbers/fraction/Fraction.java | 21 ++++--- .../commons/numbers/fraction/BigFractionTest.java | 16 +++++ .../commons/numbers/fraction/FractionTest.java | 24 ++++++++ src/changes/changes.xml | 5 ++ 13 files changed, 315 insertions(+), 18 deletions(-) create mode 100644 commons-numbers-core/src/test/java/org/apache/commons/numbers/core/AdditionTest.java create mode 100644 commons-numbers-core/src/test/java/org/apache/commons/numbers/core/MultiplicationTest.java