Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/IterativeLinearSolvers/
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()
103 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 int &iters, const int &restart, typename Dest::RealScalar & tol_error) { in gmres() argument
67 RealScalar tol = tol_error; in gmres()