OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rhsNorm2
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h
45
RealScalar
rhsNorm2
= rhs.squaredNorm();
46
if(
rhsNorm2
== 0)
53
RealScalar threshold = tol*tol*
rhsNorm2
;
58
tol_error = sqrt(residualNorm2 /
rhsNorm2
);
88
tol_error = sqrt(residualNorm2 /
rhsNorm2
);
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h
41
const RealScalar
rhsNorm2
(rhs.squaredNorm());
42
if(
rhsNorm2
== 0)
53
const RealScalar threshold2(tol_error*tol_error*
rhsNorm2
); // convergence threshold (compared to residualNorm2)
140
tol_error = std::sqrt(residualNorm2 /
rhsNorm2
);
Completed in 110 milliseconds