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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
ClassicalRungeKuttaIntegrator.java 54 private static final double[][] STATIC_A = {
71 super("classical Runge-Kutta", STATIC_C, STATIC_A, STATIC_B,
EulerIntegrator.java 56 private static final double[][] STATIC_A = {
69 super("Euler", STATIC_C, STATIC_A, STATIC_B, new EulerStepInterpolator(), step);
MidpointIntegrator.java 51 private static final double[][] STATIC_A = {
65 super("midpoint", STATIC_C, STATIC_A, STATIC_B, new MidpointStepInterpolator(), step);
ThreeEighthesIntegrator.java 53 private static final double[][] STATIC_A = {
69 super("3/8", STATIC_C, STATIC_A, STATIC_B, new ThreeEighthesStepInterpolator(), step);
GillIntegrator.java 55 private static final double[][] STATIC_A = {
71 super("Gill", STATIC_C, STATIC_A, STATIC_B, new GillStepInterpolator(), step);
DormandPrince54Integrator.java 60 private static final double[][] STATIC_A = {
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 48 private static final double[][] STATIC_A = {
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 70 private static final double[][] STATIC_A = {
218 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B,
235 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B,

Completed in 2080 milliseconds