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:
parent
335e9df408
commit
c4dd533843
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue