You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/09/16 18:37:35 UTC

svn commit: r1385315 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java

Author: tn
Date: Sun Sep 16 16:37:34 2012
New Revision: 1385315

URL: http://svn.apache.org/viewvc?rev=1385315&view=rev
Log:
Removed trailing spaces.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java?rev=1385315&r1=1385314&r2=1385315&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/DSCompiler.java Sun Sep 16 16:37:34 2012
@@ -1034,7 +1034,6 @@ public class DSCompiler {
      */
     public void log1p(final double[] operand, final int operandOffset,
                       final double[] result, final int resultOffset) {
-        
 
         // create the function value and derivatives
         double[] function = new double[1 + order];
@@ -1062,7 +1061,6 @@ public class DSCompiler {
      */
     public void log10(final double[] operand, final int operandOffset,
                       final double[] result, final int resultOffset) {
-        
 
         // create the function value and derivatives
         double[] function = new double[1 + order];
@@ -1713,7 +1711,7 @@ public class DSCompiler {
     }
 
     /** Evaluate Taylor expansion of a derivative structure.
-     * @param ds array holding the derivative structure 
+     * @param ds array holding the derivative structure
      * @param dsOffset offset of the derivative structure in its array
      * @param delta parameters offsets (Δx, Δy, ...)
      * @return value of the Taylor expansion at x + Δx, y + Δy, ...