mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Index refactoring: StorageIndex must be used for storage only (and locally when it make sense). In all other cases use the global Index type.
This commit is contained in:
@@ -164,8 +164,8 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
|
||||
if(m_numeric) umfpack_free_numeric(&m_numeric,Scalar());
|
||||
}
|
||||
|
||||
inline StorageIndex rows() const { return m_copyMatrix.rows(); }
|
||||
inline StorageIndex cols() const { return m_copyMatrix.cols(); }
|
||||
inline Index rows() const { return m_copyMatrix.rows(); }
|
||||
inline Index cols() const { return m_copyMatrix.cols(); }
|
||||
|
||||
/** \brief Reports whether previous computation was successful.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user