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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsBashforthIntegrator.java 222 double hNew = stepSize;
223 interpolator.rescale(hNew);
232 stepSize = hNew;
249 hNew = filterStep(stepSize * factor, forward, false);
250 interpolator.rescale(hNew);
297 hNew = filterStep(scaledH, forward, nextIsLast);
299 final double filteredNextT = stepStart + hNew;
302 hNew = t - stepStart;
305 interpolator.rescale(hNew);
AdamsMoultonIntegrator.java 240 double hNew = stepSize;
241 interpolator.rescale(hNew);
249 stepSize = hNew;
272 hNew = filterStep(stepSize * factor, forward, false);
273 interpolator.rescale(hNew);
316 hNew = filterStep(scaledH, forward, nextIsLast);
318 final double filteredNextT = stepStart + hNew;
321 hNew = t - stepStart;
324 interpolator.rescale(hNew);
EmbeddedRungeKuttaIntegrator.java 224 double hNew = 0;
257 hNew = initializeStep(equations, forward, getOrder(), scale,
262 stepSize = hNew;
295 hNew = filterStep(stepSize * factor, forward, false);
322 hNew = filterStep(scaledH, forward, nextIsLast);
324 final double filteredNextT = stepStart + hNew;
327 hNew = t - stepStart;
GraggBulirschStoerIntegrator.java 234 * <p>The new step size hNew is computed from the old one h by:
236 * hNew = h * stepControl2 / (err/stepControl1)^(1/(2k+1))
243 * stepControl3^(1/(2k+1))/stepControl4 <= hNew/h <= 1/stepControl3^(1/(2k+1))
626 double hNew = 0;
653 hNew = initializeStep(equations, forward,
662 stepSize = hNew;
685 hNew = FastMath.abs(filterStep(stepSize * stabilityReduction, forward, false));
709 hNew = FastMath.abs(filterStep(stepSize * stabilityReduction, forward, false));
751 hNew = optimalStep[targetIter];
776 hNew = optimalStep[targetIter]
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsnamed.c 924 cmsHANDLE hNew;
929 hNew = cmsDictAlloc(old_dict ->ContextID);
930 if (hNew == NULL) return NULL;
936 if (!cmsDictAddEntry(hNew, entry ->Name, entry ->Value, entry ->DisplayName, entry ->DisplayValue)) {
938 cmsDictFree(hNew);
945 return hNew;

Completed in 407 milliseconds