HomeSort by relevance Sort by last modified time
    Searched refs:yDotTmp (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 115 final double[] yDotTmp = new double[y0.length];
172 System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length);
173 stepStart = acceptStep(interpolator, y, yDotTmp, t);
EmbeddedRungeKuttaIntegrator.java 209 final double[] yDotTmp = new double[y0.length];
303 System.arraycopy(yDotK[stages - 1], 0, yDotTmp, 0, y0.length);
304 stepStart = acceptStep(interpolator, y, yDotTmp, t);
313 System.arraycopy(yDotTmp, 0, yDotK[0], 0, y0.length);

Completed in 188 milliseconds