OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_maxpivot
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/QR/
ColPivHouseholderQR_MKL.h
65
m_maxpivot
= RealScalar(0);\
73
m_maxpivot
=m_qr.diagonal().cwiseAbs().maxCoeff(); \
75
RealScalar premultiplied_threshold = abs(
m_maxpivot
) * threshold(); \
ColPivHouseholderQR.h
225
RealScalar premultiplied_threshold = abs(
m_maxpivot
) * threshold();
372
RealScalar maxPivot() const { return
m_maxpivot
; }
400
RealScalar m_prescribedThreshold,
m_maxpivot
;
member in class:Eigen::ColPivHouseholderQR
456
m_maxpivot
= RealScalar(0);
495
if(abs(beta) >
m_maxpivot
)
m_maxpivot
= abs(beta);
FullPivHouseholderQR.h
222
RealScalar premultiplied_threshold = abs(
m_maxpivot
) * threshold();
368
RealScalar maxPivot() const { return
m_maxpivot
; }
384
RealScalar m_prescribedThreshold,
m_maxpivot
;
member in class:Eigen::FullPivHouseholderQR
437
m_maxpivot
= RealScalar(0);
480
if(abs(beta) >
m_maxpivot
)
m_maxpivot
= abs(beta);
/external/eigen/Eigen/src/LU/
FullPivLU.h
126
RealScalar maxPivot() const { return
m_maxpivot
; }
299
RealScalar premultiplied_threshold = abs(
m_maxpivot
) * threshold();
389
RealScalar
m_maxpivot
, m_prescribedThreshold;
member in class:Eigen::FullPivLU
446
m_maxpivot
= RealScalar(0);
474
if(biggest_in_corner >
m_maxpivot
)
m_maxpivot
= biggest_in_corner;
Completed in 42 milliseconds