You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2016/02/15 18:49:20 UTC

[1/2] [math] Fixed missing dependency.

Repository: commons-math
Updated Branches:
  refs/heads/master dd426acc5 -> 050dfa6f0


Fixed missing dependency.

Thanks to Jörg Schaible.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/0af5f146
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/0af5f146
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/0af5f146

Branch: refs/heads/master
Commit: 0af5f146f2da389f0be28cfbe9b841b11f633a9b
Parents: dd426ac
Author: Gilles <er...@apache.org>
Authored: Mon Feb 15 18:18:37 2016 +0100
Committer: Gilles <er...@apache.org>
Committed: Mon Feb 15 18:18:37 2016 +0100

----------------------------------------------------------------------
 src/userguide/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/0af5f146/src/userguide/pom.xml
----------------------------------------------------------------------
diff --git a/src/userguide/pom.xml b/src/userguide/pom.xml
index 2a52445..2f8ac91 100644
--- a/src/userguide/pom.xml
+++ b/src/userguide/pom.xml
@@ -53,6 +53,12 @@
       <dependency>
           <groupId>org.apache.commons</groupId>
           <artifactId>commons-math4</artifactId>
+          <classifier>tools</classifier>
+          <version>4.0-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+          <groupId>org.apache.commons</groupId>
+          <artifactId>commons-math4</artifactId>
           <version>4.0-SNAPSHOT</version>
       </dependency>
       <dependency>


[2/2] [math] Fixed calls to methods that now have an additional parameter.

Posted by er...@apache.org.
Fixed calls to methods that now have an additional parameter.


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/050dfa6f
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/050dfa6f
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/050dfa6f

Branch: refs/heads/master
Commit: 050dfa6f0850174fdf958ce6751d2f06900201f8
Parents: 0af5f14
Author: Gilles <er...@apache.org>
Authored: Mon Feb 15 18:22:45 2016 +0100
Committer: Gilles <er...@apache.org>
Committed: Mon Feb 15 18:22:45 2016 +0100

----------------------------------------------------------------------
 .../userguide/FastMathTestPerformance.java      | 21 ++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/050dfa6f/src/userguide/java/org/apache/commons/math4/userguide/FastMathTestPerformance.java
----------------------------------------------------------------------
diff --git a/src/userguide/java/org/apache/commons/math4/userguide/FastMathTestPerformance.java b/src/userguide/java/org/apache/commons/math4/userguide/FastMathTestPerformance.java
index 697bd60..f5d1722 100644
--- a/src/userguide/java/org/apache/commons/math4/userguide/FastMathTestPerformance.java
+++ b/src/userguide/java/org/apache/commons/math4/userguide/FastMathTestPerformance.java
@@ -651,6 +651,7 @@ public class FastMathTestPerformance {
         final String M = "Math";
         final String FM = "FastMath";
 
+        final int maxWidth = 15;
         final int numStat = 100;
         final int numCall = RUNS / numStat;
 
@@ -658,6 +659,7 @@ public class FastMathTestPerformance {
         final double y = Math.random();
 
         PerfTestUtils.timeAndReport("log",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -681,6 +683,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("log10",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -704,6 +707,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("log1p",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -727,6 +731,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("pow",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -750,6 +755,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("exp",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -773,6 +779,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("sin",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -796,6 +803,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("asin",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -819,6 +827,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("cos",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -842,6 +851,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("acos",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -865,6 +875,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("tan",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -888,6 +899,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("atan",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -911,6 +923,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("atan2",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -934,6 +947,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("hypot",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -958,6 +972,7 @@ public class FastMathTestPerformance {
 
 
         PerfTestUtils.timeAndReport("cbrt",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -981,6 +996,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("sqrt",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -1004,6 +1020,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("cosh",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -1027,6 +1044,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("sinh",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -1050,6 +1068,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("tanh",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -1073,6 +1092,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("expm1",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,
@@ -1096,6 +1116,7 @@ public class FastMathTestPerformance {
                                     });
 
         PerfTestUtils.timeAndReport("abs",
+                                    maxWidth,
                                     numCall,
                                     numStat,
                                     false,