Home
last modified time | relevance | path

Searched refs:tol_error (Results 1 – 5 of 5) sorted by relevance

/external/eigen/Eigen/src/IterativeLinearSolvers/
DLeastSquareConjugateGradient.h30 typename Dest::RealScalar& tol_error) in least_square_conjugate_gradient() argument
38 RealScalar tol = tol_error; in least_square_conjugate_gradient()
51 tol_error = 0; in least_square_conjugate_gradient()
59 tol_error = sqrt(residualNorm2 / rhsNorm2); in least_square_conjugate_gradient()
90 tol_error = sqrt(residualNorm2 / rhsNorm2); in least_square_conjugate_gradient()
DConjugateGradient.h30 typename Dest::RealScalar& tol_error) in conjugate_gradient() argument
38 RealScalar tol = tol_error; in conjugate_gradient()
50 tol_error = 0; in conjugate_gradient()
58 tol_error = sqrt(residualNorm2 / rhsNorm2); in conjugate_gradient()
88 tol_error = sqrt(residualNorm2 / rhsNorm2); in conjugate_gradient()
DBiCGSTAB.h31 typename Dest::RealScalar& tol_error) in bicgstab() argument
38 RealScalar tol = tol_error; in bicgstab()
104 tol_error = sqrt(r.squaredNorm()/rhs_sqnorm); in bicgstab()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DMINRES.h33 typename Dest::RealScalar& tol_error) in minres() argument
46 tol_error = 0; in minres()
53 …const RealScalar threshold2(tol_error*tol_error*rhsNorm2); // convergence threshold (compared to r… in minres()
140 tol_error = std::sqrt(residualNorm2 / rhsNorm2); in minres()
DGMRES.h57 Index &iters, const Index &restart, typename Dest::RealScalar & tol_error) { in gmres() argument
67 RealScalar tol = tol_error; in gmres()
82 tol_error = 0; in gmres()
160 tol_error = abs(w(k)) / r0Norm; in gmres()
161 bool stop = (k==m || tol_error < tol || iters == maxIters); in gmres()