Home | History | Annotate | Download | only in PardisoSupport

Lines Matching refs:Upper

38 template<typename _MatrixType, int Options=Upper> class PardisoLLT;
39 template<typename _MatrixType, int Options=Upper> class PardisoLDLT;
431 * \tparam UpLo can be any bitwise combination of Upper, Lower. The default is Upper, meaning only the upper triangular part has to be used.
432 * Upper|Lower can be used to tell both triangular parts can be used as input.
472 // PARDISO supports only upper, row-major matrices
475 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);
493 * \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.
495 * Upper|Lower can be used to tell both triangular parts can be used as input.
516 enum { UpLo = Options&(Upper|Lower) };
533 // PARDISO supports only upper, row-major matrices
536 m_matrix.template selfadjointView<Upper>() = matrix.template selfadjointView<UpLo>().twistedBy(p_null);