\brief Reports whether previous computation was successful. * * \returns \c Success if computation was successful, * \c NumericalIssue if the LU factorization reports a problem, zero diagonal for instance * \c InvalidInput if the input matrix is invalid * * \sa iparm() */
| 300 | * \sa iparm() |
| 301 | */ |
| 302 | ComputationInfo info() const |
| 303 | { |
| 304 | eigen_assert(m_isInitialized && "Decomposition is not initialized."); |
| 305 | return m_info; |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * \returns A string describing the type of error |
no outgoing calls
no test coverage detected