Searched refs:converged (Results 1 – 10 of 10) sorted by relevance
125 bool converged() const { return m_res <= m_rhsn * m_resmax; } in converged() function126 bool converged(double nr) in converged() function131 return converged(); in converged()133 template<typename VectorType> bool converged(const VectorType &v) in converged() function134 { return converged(v.squaredNorm()); } in converged()141 converged(nr); in finished()144 return (m_nit >= m_maxiter || converged(nr)); in finished()
41 bool converged; in chopMonoCubicAtY() local53 converged = SkScalarAbs(t1 - t0) <= tol; // NaN-safe in chopMonoCubicAtY()55 } while (!converged && (iters < maxiters)); in chopMonoCubicAtY()62 return converged; in chopMonoCubicAtY()
89 int converged = 0; in icvSnake8uC1R() local167 while( !converged ) in icvSnake8uC1R()172 converged = 0; in icvSnake8uC1R()387 converged = (moved == 0); in icvSnake8uC1R()389 converged = 1; in icvSnake8uC1R()391 converged = 1; in icvSnake8uC1R()
117 int count = 0, converged = 0; in icvPOSIT() local146 while( !converged ) in icvPOSIT()233 converged = ((criteria.type & CV_TERMCRIT_EPS) && (diff < criteria.epsilon)); in icvPOSIT()234 converged |= ((criteria.type & CV_TERMCRIT_ITER) && (count == criteria.max_iter)); in icvPOSIT()
539 bool converged = false; in tool_main() local639 converged = HasConverged(previous, current, timer.fWall); in tool_main()641 } while (!FLAGS_runOnce && !converged); in tool_main()
33 static const int converged = 250; variable
96 gradient tolerance. i.e., The solver converged when
1885 converged by meeting one of the convergence tolerances or because1886 the user indicated that it had converged or it ran to the maximum
1526 After trying several different approaches, we've finally converged on a design