Lines Matching refs:tolerance
1100 scope DT tolerance) //= (T a, T b) => false)
1103 is(typeof(tolerance(T.init, T.init)) : bool) &&
1113 immutable r = findRoot(f, a, b, fa, fb, tolerance);
1159 scope DT tolerance) // = (T a, T b) => false)
1162 is(typeof(tolerance(T.init, T.init)) : bool) &&
1306 while (!done && (b != nextUp(a)) && !tolerance(a, b))
1369 if (done || ( b == nextUp(a)) || tolerance(a, b))
1416 if (done || (b == nextUp(a)) || tolerance(a, b))
1473 scope bool delegate(T lo, T hi) tolerance = (T a, T b) => false) in findRoot()
1475 return findRoot!(T, R delegate(T), bool delegate(T lo, T hi))(f, a, b, tolerance); in findRoot()
1710 relTolerance = Relative tolerance.
1711 absTolerance = Absolute tolerance.
1761 R tolerance; variable
1801 tolerance = absTolerance * fabs(x) + relTolerance;
1802 immutable t2 = tolerance * 2;
1812 if (fabs(e) > tolerance)
1837 d = x < m ? tolerance : -tolerance;
1846 u = x + (fabs(d) >= tolerance ? d : d > 0 ? tolerance : -tolerance);
1874 return typeof(return)(x, fx, tolerance * 3);