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