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

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

Completed in 208 milliseconds