OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_transpose
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h
266
SPQR_QProduct(const SPQRType& spqr, const Derived& other, bool transpose) : m_spqr(spqr),m_other(other),
m_transpose
(transpose) {}
268
inline Index rows() const { return
m_transpose
? m_spqr.rows() : m_spqr.cols(); }
276
int method =
m_transpose
? SPQR_QTX : SPQR_QX;
285
bool
m_transpose
;
member in struct:Eigen::SPQR_QProduct
/external/eigen/Eigen/src/SparseQR/
SparseQR.h
611
m_qr(qr),m_other(other),
m_transpose
(transpose) {}
612
inline Index rows() const { return
m_transpose
? m_qr.rows() : m_qr.cols(); }
623
if (
m_transpose
)
658
bool
m_transpose
;
member in struct:Eigen::SparseQR_QProduct
Completed in 159 milliseconds