You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/12/07 02:44:05 UTC

[commons-numbers] branch master updated (69a69af -> ae70ab2)

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 69a69af  Update tanh() to perform edge checks on twice the imaginary value.
     new 84e3b21  Fix trailing spaces
     new ae70ab2  Ignore pom.properties

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:
 .../java/org/apache/commons/numbers/complex/CReferenceTest.java     | 6 ++++++
 pom.xml                                                             | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)


[commons-numbers] 01/02: Fix trailing spaces

Posted by ah...@apache.org.
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-numbers.git

commit 84e3b21d4c2645a6a2faf42e08fc4878174d815c
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat Dec 7 02:41:55 2019 +0000

    Fix trailing spaces
---
 .../java/org/apache/commons/numbers/complex/CReferenceTest.java     | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/CReferenceTest.java b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/CReferenceTest.java
index 5ec32da..4bb9a31 100644
--- a/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/CReferenceTest.java
+++ b/commons-numbers-complex/src/test/java/org/apache/commons/numbers/complex/CReferenceTest.java
@@ -148,6 +148,12 @@ public class CReferenceTest {
         assertEquals(() -> c1 + " op " + c2 + ": imaginary", y, z.getImaginary(), maxUlps);
     }
 
+    // Fix:
+    // acos
+    // acosh
+    // asinh
+    // Q. Are these the function in boost?
+
     @Test
     public void testAcos() {
 //        assertComplex(-1e+308, 0.0, Complex::acos, nan, -inf);


[commons-numbers] 02/02: Ignore pom.properties

Posted by ah...@apache.org.
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-numbers.git

commit ae70ab2504dcc79fa4e820446a65ab3acd4338c9
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat Dec 7 02:44:01 2019 +0000

    Ignore pom.properties
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a7a1f54..3bff646 100644
--- a/pom.xml
+++ b/pom.xml
@@ -255,7 +255,7 @@
           <!-- Output the detected violations to the console (for checkstyle:check). -->
           <logViolationsToConsole>true</logViolationsToConsole>
           <failOnViolation>true</failOnViolation>
-          <resourceExcludes>NOTICE.txt,LICENSE.txt,**/maven-archiver/pom.properties,**/resolver-status.properties</resourceExcludes>
+          <resourceExcludes>NOTICE.txt,LICENSE.txt,**/pom.properties,**/resolver-status.properties</resourceExcludes>
           <excludes>**/generated/**.java</excludes>
         </configuration>
         <executions>