Home
last modified time | relevance | path

Searched refs:residualNorm2 (Results 1 – 3 of 3) sorted by relevance

/external/eigen/Eigen/src/IterativeLinearSolvers/
DLeastSquareConjugateGradient.h55 RealScalar residualNorm2 = normal_residual.squaredNorm(); in least_square_conjugate_gradient() local
56 if (residualNorm2 < threshold) in least_square_conjugate_gradient()
59 tol_error = sqrt(residualNorm2 / rhsNorm2); in least_square_conjugate_gradient()
78 residualNorm2 = normal_residual.squaredNorm(); in least_square_conjugate_gradient()
79 if(residualNorm2 < threshold) in least_square_conjugate_gradient()
90 tol_error = sqrt(residualNorm2 / rhsNorm2); in least_square_conjugate_gradient()
DConjugateGradient.h54 RealScalar residualNorm2 = residual.squaredNorm(); in conjugate_gradient() local
55 if (residualNorm2 < threshold) in conjugate_gradient()
58 tol_error = sqrt(residualNorm2 / rhsNorm2); in conjugate_gradient()
76 residualNorm2 = residual.squaredNorm(); in conjugate_gradient()
77 if(residualNorm2 < threshold) in conjugate_gradient()
88 tol_error = sqrt(residualNorm2 / rhsNorm2); in conjugate_gradient()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DMINRES.h59 RealScalar residualNorm2(v_new.squaredNorm()); in minres()
127 residualNorm2 *= s*s; in minres()
129 if ( residualNorm2 < threshold2) in minres()
140 tol_error = std::sqrt(residualNorm2 / rhsNorm2); in minres()