The step interpolator should refer to the integrator array.

This behavior will be changed later on to get immutable objects.
For now, we still rely on arrays being shared between the integrator and
the interpolator.
This commit is contained in:
Luc Maisonobe 2016-01-06 12:40:18 +01:00
parent 335e9df408
commit c4dd533843
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public abstract class AbstractFieldStepInterpolator<T extends RealFieldElement<T
softPreviousState = null;
softCurrentState = null;
h = null;
currentState = y.clone();
currentState = y;
finalized = false;
this.forward = isForward;
this.mapper = equationsMapper;