\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 */
| 241 | * \endcode |
| 242 | */ |
| 243 | SparseLUMatrixLReturnType<SCMatrix> matrixL() const |
| 244 | { |
| 245 | return SparseLUMatrixLReturnType<SCMatrix>(m_Lstore); |
| 246 | } |
| 247 | /** \returns an expression of the matrix U, |
| 248 | * The only operation available with this expression is the triangular solve |
| 249 | * \code |
no outgoing calls
no test coverage detected