From f0ad546c7fdd5be8b9e4368e1aacba2a96fae3a8 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Tue, 7 Jul 2009 07:07:23 +0000 Subject: [PATCH] removed tabs git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@791723 13f79535-47bb-0310-9956-ffa450edef68 --- .../ode/sampling/NordsieckStepInterpolator.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java b/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java index e55de86ee..b3dd6a8f0 100644 --- a/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java +++ b/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java @@ -88,7 +88,7 @@ public class NordsieckStepInterpolator extends AbstractStepInterpolator { nordsieck = new Array2DRowRealMatrix(interpolator.nordsieck.getDataRef(), true); } if (interpolator.stateVariation != null) { - stateVariation = interpolator.stateVariation.clone(); + stateVariation = interpolator.stateVariation.clone(); } } @@ -174,10 +174,10 @@ public class NordsieckStepInterpolator extends AbstractStepInterpolator { */ public double[] getInterpolatedStateVariation() throws DerivativeException { - // compute and ignore interpolated state - // to make sure state variation is computed as a side effect - getInterpolatedState(); - return stateVariation; + // compute and ignore interpolated state + // to make sure state variation is computed as a side effect + getInterpolatedState(); + return stateVariation; } /** {@inheritDoc} */ @@ -205,8 +205,8 @@ public class NordsieckStepInterpolator extends AbstractStepInterpolator { } for (int j = 0; j < currentState.length; ++j) { - stateVariation[j] += scaled[j] * normalizedAbscissa; - interpolatedState[j] = currentState[j] + stateVariation[j]; + stateVariation[j] += scaled[j] * normalizedAbscissa; + interpolatedState[j] = currentState[j] + stateVariation[j]; interpolatedDerivatives[j] = (interpolatedDerivatives[j] + scaled[j] * normalizedAbscissa) / x; }