\brief Give the MatrixU * * \returns an expression of the matrix U, * The only operation available with this expression is the triangular solve * \code * y = b; matrixU().solveInPlace(y); * \endcode */
| 282 | * \endcode |
| 283 | */ |
| 284 | SparseLUMatrixUReturnType<SCMatrix, Map<SparseMatrix<Scalar, ColMajor, StorageIndex>>> matrixU() const { |
| 285 | return SparseLUMatrixUReturnType<SCMatrix, Map<SparseMatrix<Scalar, ColMajor, StorageIndex>>>(m_Lstore, m_Ustore); |
| 286 | } |
| 287 | |
| 288 | /** \brief Give the row matrix permutation. |
| 289 | * |
no outgoing calls
no test coverage detected