Removed trailing spaces.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1385315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-09-16 16:37:34 +00:00
parent b694b79c60
commit 1f914f9917
1 changed files with 1 additions and 3 deletions

View File

@ -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, ...