Home | History | Annotate | Download | only in nonstiff

Lines Matching refs:currentState

246     if (interpolator.currentState == null) {
254 final int dimension = interpolator.currentState.length;
288 final int dimension = currentState.length;
371 interpolatedState[i] = currentState[i] -
391 if (currentState == null) {
397 final double[] yTmp = new double[currentState.length];
401 for (int j = 0; j < currentState.length; ++j) {
405 yTmp[j] = currentState[j] + h * s;
410 for (int j = 0; j < currentState.length; ++j) {
415 yTmp[j] = currentState[j] + h * s;
420 for (int j = 0; j < currentState.length; ++j) {
425 yTmp[j] = currentState[j] + h * s;
444 final int dimension = (currentState == null) ? -1 : currentState.length;