Searched refs:integrator (Results 1 - 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaStepInterpolator.java43 /** Reference to the integrator. */
44 protected AbstractIntegrator integrator; field in class:RungeKuttaStepInterpolator
59 integrator = null;
99 integrator = null;
117 * @param rkIntegrator integrator being used
118 * @param y reference to the integrator array holding the state at
120 * @param yDotArray reference to the integrator array holding all the
128 this.integrator = rkIntegrator;
172 integrator = null;
H A DDormandPrince853StepInterpolator.java30 * ODE integration for the 8(5,3) Dormand-Prince integrator.
283 public void reinitialize(final AbstractIntegrator integrator, argument
286 super.reinitialize(integrator, y, yDotK, forward);
407 integrator.computeDerivatives(pT + C14 * h, yTmp, yDotKLast[0]);
417 integrator.computeDerivatives(pT + C15 * h, yTmp, yDotKLast[1]);
427 integrator.computeDerivatives(pT + C16 * h, yTmp, yDotKLast[2]);
H A DDormandPrince54StepInterpolator.java26 * ODE integration for the 5(4) Dormand-Prince integrator.
148 public void reinitialize(final AbstractIntegrator integrator, argument
150 super.reinitialize(integrator, y, yDotK, forward);
/external/slf4j/integration/src/test/java/integrator/
H A DActivator.java25 package integrator; package
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java39 /** This class enhances a first order integrator for differential equations to
57 /** Underlying integrator for compound problem. */
58 private final FirstOrderIntegrator integrator; field in class:FirstOrderIntegratorWithJacobians
69 /** Build an enhanced integrator using internal differentiation to compute jacobians.
70 * @param integrator underlying integrator to solve the compound problem
82 public FirstOrderIntegratorWithJacobians(final FirstOrderIntegrator integrator, argument
88 this.integrator = integrator;
93 /** Build an enhanced integrator usin
99 FirstOrderIntegratorWithJacobians(final FirstOrderIntegrator integrator, final ODEWithJacobians ode) argument
[all...]

Completed in 145 milliseconds