Searched refs:tol_error (Results 1 – 5 of 5) sorted by relevance
30 typename Dest::RealScalar& tol_error) in least_square_conjugate_gradient() argument38 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()
30 typename Dest::RealScalar& tol_error) in conjugate_gradient() argument38 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()
31 typename Dest::RealScalar& tol_error) in bicgstab() argument38 RealScalar tol = tol_error; in bicgstab()104 tol_error = sqrt(r.squaredNorm()/rhs_sqnorm); in bicgstab()
33 typename Dest::RealScalar& tol_error) in minres() argument46 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()
57 Index &iters, const Index &restart, typename Dest::RealScalar & tol_error) { in gmres() argument67 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()