removed tabs

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@791723 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-07-07 07:07:23 +00:00
parent 71f41f90fe
commit f0ad546c7f
1 changed files with 7 additions and 7 deletions

View File

@ -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;
}