HomeSort by relevance Sort by last modified time
    Searched defs:tol2 (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
BrentOptimizer.java 117 final double tol2 = 2 * tol1; local
120 if (FastMath.abs(x - m) > tol2 - 0.5 * (b - a)) {
149 if (u - a < tol2 || b - u < tol2) {
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BiCGSTAB.h 62 RealScalar tol2 = tol*tol; local
67 while ( r.squaredNorm()/rhs_sqnorm > tol2 && i<maxIters )

Completed in 110 milliseconds