Home | History | Annotate | Download | only in nonstiff

Lines Matching refs:interpolator

29  * This class represents an interpolator over the last step during an
238 * @param interpolator interpolator to copy from. The copy is a deep
242 public DormandPrince853StepInterpolator(final DormandPrince853StepInterpolator interpolator) {
244 super(interpolator);
246 if (interpolator.currentState == null) {
254 final int dimension = interpolator.currentState.length;
259 System.arraycopy(interpolator.yDotKLast[k], 0, yDotKLast[k], 0,
266 System.arraycopy(interpolator.v[k], 0, v[k], 0, dimension);
269 vectorsInitialized = interpolator.vectorsInitialized;