HomeSort by relevance Sort by last modified time
    Searched defs:handleStep (Results 1 - 9 of 9) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
StepHandlerWithJacobians.java 95 void handleStep(StepInterpolatorWithJacobians interpolator, boolean isLast) throws DerivativeException;
FirstOrderIntegratorWithJacobians.java 572 public void handleStep(StepInterpolator interpolator, boolean isLast)
574 handler.handleStep(new StepInterpolatorWrapper(interpolator, n, k), isLast);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
FixedStepHandler.java 60 void handleStep(double t, double[] y, double[] yDot, boolean isLast) throws DerivativeException;
StepHandler.java 48 * #handleStep} method with a {@link DummyStepInterpolator} rather
76 void handleStep(StepInterpolator interpolator, boolean isLast) throws DerivativeException;
StepNormalizer.java 33 * FixedStepHandler#handleStep handleStep} method of the underlying
115 public void handleStep(final StepInterpolator interpolator, final boolean isLast)
138 handler.handleStep(lastTime, lastState, lastDerivatives, false);
156 handler.handleStep(lastTime, lastState, lastDerivatives, true);
DummyStepHandler.java 25 * intermediate steps. Its handleStep method does nothing.</p>
80 public void handleStep(final StepInterpolator interpolator, final boolean isLast) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 200 public void handleStep(final StepInterpolator interpolator, final boolean isLast)
MultistepIntegrator.java 324 public void handleStep(StepInterpolator interpolator, boolean isLast)
AbstractIntegrator.java 291 handler.handleStep(interpolator, isLastStep);
332 handler.handleStep(interpolator, isLastStep);

Completed in 872 milliseconds