mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-29 23:34:12 +08:00
renamed methods umfpackReportControl(), umfpackReportInfo(), and umfpackReportStatus() from UmfPackLU to printUmfpackControl(), printUmfpackInfo(), and printUmfpackStatus()
This commit is contained in:
parent
95b804c0fe
commit
c8c89b5e19
@ -320,7 +320,7 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
|
|||||||
*
|
*
|
||||||
* \sa umfpackControl()
|
* \sa umfpackControl()
|
||||||
*/
|
*/
|
||||||
void umfpackReportControl()
|
void printUmfpackControl()
|
||||||
{
|
{
|
||||||
umfpack_report_control(m_control.data(), Scalar());
|
umfpack_report_control(m_control.data(), Scalar());
|
||||||
}
|
}
|
||||||
@ -329,7 +329,7 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
|
|||||||
*
|
*
|
||||||
* \sa analyzePattern(), compute()
|
* \sa analyzePattern(), compute()
|
||||||
*/
|
*/
|
||||||
void umfpackReportInfo()
|
void printUmfpackInfo()
|
||||||
{
|
{
|
||||||
eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
|
eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
|
||||||
umfpack_report_info(m_control.data(), m_umfpackInfo.data(), Scalar());
|
umfpack_report_info(m_control.data(), m_umfpackInfo.data(), Scalar());
|
||||||
@ -339,7 +339,7 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
|
|||||||
*
|
*
|
||||||
* \sa analyzePattern(), compute()
|
* \sa analyzePattern(), compute()
|
||||||
*/
|
*/
|
||||||
void umfpackReportStatus() {
|
void printUmfpackStatus() {
|
||||||
eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
|
eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
|
||||||
umfpack_report_status(m_control.data(), m_fact_errorCode, Scalar());
|
umfpack_report_status(m_control.data(), m_fact_errorCode, Scalar());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user