OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs: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);
LeastSquareConjugateGradient.h
55
RealScalar
residualNorm2
= normal_residual.squaredNorm();
56
if (
residualNorm2
< threshold)
59
tol_error = sqrt(
residualNorm2
/ rhsNorm2);
78
residualNorm2
= normal_residual.squaredNorm();
79
if(
residualNorm2
< threshold)
90
tol_error = sqrt(
residualNorm2
/ rhsNorm2);
Completed in 64 milliseconds