OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:residualNorm2
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h
54
RealScalar
residualNorm2
= residual.squaredNorm();
55
if (
residualNorm2
< threshold)
58
tol_error = sqrt(
residualNorm2
/ rhsNorm2);
76
residualNorm2
= residual.squaredNorm();
77
if(
residualNorm2
< threshold)
88
tol_error = sqrt(
residualNorm2
/ rhsNorm2);
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h
53
const RealScalar threshold2(tol_error*tol_error*rhsNorm2); // convergence threshold (compared to
residualNorm2
)
59
RealScalar
residualNorm2
(v_new.squaredNorm());
127
residualNorm2
*= s*s;
129
if (
residualNorm2
< threshold2)
140
tol_error = std::sqrt(
residualNorm2
/ rhsNorm2);
Completed in 173 milliseconds