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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsIntegrator.java 42 * @param minStep minimal step (must be positive even for backward
51 final double minStep, final double maxStep,
55 super(name, nSteps, order, minStep, maxStep,
65 * @param minStep minimal step (must be positive even for backward
74 final double minStep, final double maxStep,
78 super(name, nSteps, order, minStep, maxStep,
DormandPrince54Integrator.java 96 * @param minStep minimal step (must be positive even for backward
103 public DormandPrince54Integrator(final double minStep, final double maxStep,
107 minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance);
112 * @param minStep minimal step (must be positive even for backward
119 public DormandPrince54Integrator(final double minStep, final double maxStep,
123 minStep, maxStep, vecAbsoluteTolerance, vecRelativeTolerance);
HighamHall54Integrator.java 69 * @param minStep minimal step (must be positive even for backward
76 public HighamHall54Integrator(final double minStep, final double maxStep,
80 minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance);
85 * @param minStep minimal step (must be positive even for backward
92 public HighamHall54Integrator(final double minStep, final double maxStep,
96 minStep, maxStep, vecAbsoluteTolerance, vecRelativeTolerance);
AdaptiveStepsizeIntegrator.java 87 private final double minStep;
95 * @param minStep minimal step (must be positive even for backward
103 final double minStep, final double maxStep,
109 this.minStep = FastMath.abs(minStep);
125 * @param minStep minimal step (must be positive even for backward
133 final double minStep, final double maxStep,
139 this.minStep = minStep;
164 if ((initialStepSize < minStep) || (initialStepSize > maxStep))
    [all...]
DormandPrince853Integrator.java 208 * @param minStep minimal step (must be positive even for backward
215 public DormandPrince853Integrator(final double minStep, final double maxStep,
220 minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance);
225 * @param minStep minimal step (must be positive even for backward
232 public DormandPrince853Integrator(final double minStep, final double maxStep,
237 minStep, maxStep, vecAbsoluteTolerance, vecRelativeTolerance);
AdamsBashforthIntegrator.java 149 * @param minStep minimal step (must be positive even for backward
158 final double minStep, final double maxStep,
162 super(METHOD_NAME, nSteps, nSteps, minStep, maxStep,
169 * @param minStep minimal step (must be positive even for backward
178 final double minStep, final double maxStep,
182 super(METHOD_NAME, nSteps, nSteps, minStep, maxStep,
AdamsMoultonIntegrator.java 165 * @param minStep minimal step (must be positive even for backward
174 final double minStep, final double maxStep,
178 super(METHOD_NAME, nSteps, nSteps + 1, minStep, maxStep,
185 * @param minStep minimal step (must be positive even for backward
194 final double minStep, final double maxStep,
198 super(METHOD_NAME, nSteps, nSteps + 1, minStep, maxStep,
EmbeddedRungeKuttaIntegrator.java 102 * @param minStep minimal step (must be positive even for backward
112 final double minStep, final double maxStep,
116 super(name, minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance);
140 * @param minStep minimal step (must be positive even for backward
150 final double minStep, final double maxStep,
154 super(name, minStep, maxStep, vecAbsoluteTolerance, vecRelativeTolerance);
GraggBulirschStoerIntegrator.java 158 * @param minStep minimal step (must be positive even for backward
165 public GraggBulirschStoerIntegrator(final double minStep, final double maxStep,
168 super(METHOD_NAME, minStep, maxStep,
180 * @param minStep minimal step (must be positive even for backward
187 public GraggBulirschStoerIntegrator(final double minStep, final double maxStep,
190 super(METHOD_NAME, minStep, maxStep,
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
WindowSurface.java 102 void init(int width, int height, float minStep) {
105 dx = (float)(Math.random()*minStep*2) + 1;
106 dy = (float)(Math.random()*minStep*2) + 1;
109 float adjDelta(float cur, float minStep, float maxStep) {
110 cur += (Math.random()*minStep) - (minStep/2);
111 if (cur < 0 && cur > -minStep) cur = -minStep;
112 if (cur >= 0 && cur < minStep) cur = minStep;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
MultistepIntegrator.java 102 * @param minStep minimal step (must be positive even for backward
111 final double minStep, final double maxStep,
115 super(name, minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance);
123 starter = new DormandPrince853Integrator(minStep, maxStep,
149 * @param minStep minimal step (must be positive even for backward
158 final double minStep, final double maxStep,
161 super(name, minStep, maxStep, vecAbsoluteTolerance, vecRelativeTolerance);
162 starter = new DormandPrince853Integrator(minStep, maxStep,
  /external/deqp/framework/randomshaders/
rsgUtils.cpp 226 int minStep = rnd.getInt(0, maxSteps-rangeLen);
228 float minVal = minFloatVal + step*(float)minStep;
rsgExpression.cpp 207 int minStep = rnd.getInt(0, maxSteps-rangeLen);
209 float minVal = minFloatVal + step*(float)minStep;
    [all...]
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 147 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
148 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps));
165 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
166 const float step = de::max(minComp(minStep), 1.0f / float(maxSteps));
176 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
177 const float step = minComp(minStep);
187 const Vec4 minStep = 1.0f / (stepCount + 1.0f);
188 const float step = minComp(minStep);
    [all...]

Completed in 286 milliseconds