Lines Matching refs:Upper
38 template<typename _MatrixType, int Options=Upper> class PardisoLLT;
39 template<typename _MatrixType, int Options=Upper> class PardisoLDLT;
473 * \tparam UpLo can be any bitwise combination of Upper, Lower. The default is Upper, meaning only the upper triangular part has to be used.
474 * Upper|Lower can be used to tell both triangular parts can be used as input.
513 // PARDISO supports only upper, row-major matrices
516 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
533 * \tparam Options can be any bitwise combination of Upper, Lower, and Symmetric. The default is Upper, meaning only the upper triangular part has to be used.
535 * Upper|Lower can be used to tell both triangular parts can be used as input.
555 enum { UpLo = Options&(Upper|Lower) };
572 // PARDISO supports only upper, row-major matrices
575 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);