\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 */
| 132 | * \endcode |
| 133 | */ |
| 134 | SparseLUMatrixLReturnType<SCMatrix> matrixL() const |
| 135 | { |
| 136 | return SparseLUMatrixLReturnType<SCMatrix>(m_Lstore); |
| 137 | } |
| 138 | /** \returns an expression of the matrix U, |
| 139 | * The only operation available with this expression is the triangular solve |
| 140 | * \code |