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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
ClassicalRungeKuttaIntegrator.java 49 private static final double[] STATIC_C = {
71 super("classical Runge-Kutta", STATIC_C, STATIC_A, STATIC_B,
EulerIntegrator.java 52 private static final double[] STATIC_C = {
69 super("Euler", STATIC_C, STATIC_A, STATIC_B, new EulerStepInterpolator(), step);
MidpointIntegrator.java 46 private static final double[] STATIC_C = {
65 super("midpoint", STATIC_C, STATIC_A, STATIC_B, new MidpointStepInterpolator(), step);
ThreeEighthesIntegrator.java 48 private static final double[] STATIC_C = {
69 super("3/8", STATIC_C, STATIC_A, STATIC_B, new ThreeEighthesStepInterpolator(), step);
GillIntegrator.java 50 private static final double[] STATIC_C = {
71 super("Gill", STATIC_C, STATIC_A, STATIC_B, new GillStepInterpolator(), step);
DormandPrince54Integrator.java 55 private static final double[] STATIC_C = {
106 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, new DormandPrince54StepInterpolator(),
122 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, new DormandPrince54StepInterpolator(),
HighamHall54Integrator.java 43 private static final double[] STATIC_C = {
79 super(METHOD_NAME, false, STATIC_C, STATIC_A, STATIC_B, new HighamHall54StepInterpolator(),
95 super(METHOD_NAME, false, STATIC_C, STATIC_A, STATIC_B, new HighamHall54StepInterpolator(),
DormandPrince853Integrator.java 63 private static final double[] STATIC_C = {
218 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B,
235 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B,

Completed in 202 milliseconds