\brief Give the matrixL * * \returns an expression of the matrix L, internally stored as supernodes * The only operation available with this expression is the triangular solve * \code * y = b; matrixL().solveInPlace(y); * \endcode */
| 273 | * \endcode |
| 274 | */ |
| 275 | SparseLUMatrixLReturnType<SCMatrix> matrixL() const { return SparseLUMatrixLReturnType<SCMatrix>(m_Lstore); } |
| 276 | /** \brief Give the MatrixU |
| 277 | * |
| 278 | * \returns an expression of the matrix U, |
no outgoing calls
no test coverage detected