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

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
ConvergingAlgorithmImpl.java 34 protected double relativeAccuracy;
67 this.relativeAccuracy = defaultRelativeAccuracy;
120 relativeAccuracy = accuracy;
125 return relativeAccuracy;
130 relativeAccuracy = defaultRelativeAccuracy;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
RombergIntegrator.java 99 final double rLimit = relativeAccuracy * (FastMath.abs(olds) + FastMath.abs(s)) * 0.5;
SimpsonIntegrator.java 89 relativeAccuracy * (FastMath.abs(olds) + FastMath.abs(s)) * 0.5;
TrapezoidIntegrator.java 120 relativeAccuracy * (FastMath.abs(oldt) + FastMath.abs(t)) * 0.5;
LegendreGaussIntegrator.java 185 relativeAccuracy * (FastMath.abs(oldt) + FastMath.abs(t)) * 0.5);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
RiddersSolver.java 209 final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy);
SecantSolver.java 199 FastMath.max(relativeAccuracy * FastMath.abs(x1), absoluteAccuracy)) {
LaguerreSolver.java 266 double tolerance = FastMath.max(relativeAccuracy * z.abs(), absoluteAccuracy);
397 double tolerance = FastMath.max(relativeAccuracy * z.abs(),
MullerSolver.java 240 final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy);
394 final double tolerance = FastMath.max(relativeAccuracy * FastMath.abs(x), absoluteAccuracy);
BrentSolver.java 332 FastMath.max(relativeAccuracy * FastMath.abs(x1), absoluteAccuracy);

Completed in 118 milliseconds