Go to the documentation of this file.
11 #ifndef EIGEN_SPARSELU_SUPERNODAL_MATRIX_H
12 #define EIGEN_SPARSELU_SUPERNODAL_MATRIX_H
32 template <
typename _Scalar,
typename _StorageIndex>
48 setInfos(m,
n, nzval, nzval_colptr, rowind, rowind_colptr, col_to_sup, sup_to_col);
157 template<
typename Dest>
181 template<
typename Scalar,
typename StorageIndex>
190 m_startidval(m_idval),
201 inline Scalar value()
const {
return m_matrix.valuePtr()[m_idval]; }
205 inline Index index()
const {
return m_matrix.rowIndex()[m_idrow]; }
211 inline operator bool()
const
213 return ( (m_idval < m_endidval) && (m_idval >= m_startidval)
214 && (m_idrow < m_endidrow) );
232 template<
typename Scalar,
typename Index_>
233 template<
typename Dest>
241 const Scalar * Lval = valuePtr();
244 for (
Index k = 0; k <= nsuper(); k ++)
246 Index fsupc = supToCol()[k];
247 Index istart = rowIndexPtr()[fsupc];
248 Index nsupr = rowIndexPtr()[fsupc+1] - istart;
249 Index nsupc = supToCol()[k+1] - fsupc;
250 Index nrow = nsupr - nsupc;
255 for (
Index j = 0; j < nrhs; j++)
262 X(irow, j) -=
X(fsupc, j) * it.
value();
269 Index luptr = colIndexPtr()[fsupc];
270 Index lda = colIndexPtr()[fsupc+1] - luptr;
275 U =
A.template triangularView<UnitLower>().solve(U);
279 work.topRows(nrow).noalias() =
A * U;
282 for (
Index j = 0; j < nrhs; j++)
284 Index iptr = istart + nsupc;
285 for (
Index i = 0; i < nrow; i++)
287 irow = rowIndex()[iptr];
288 X(irow, j) -= work(i, j);
301 #endif // EIGEN_SPARSELU_MATRIX_H
EIGEN_STRONG_INLINE Index row() const
~MappedSuperNodalMatrix()
Matrix< Scalar, Dynamic, 1 > ScalarVector
StorageIndex * colToSup()
StorageIndex * m_nzval_colptr
InnerIterator(const MappedSuperNodalMatrix &mat, Index outer)
StorageIndex * m_sup_to_col
void solveInPlace(MatrixBase< Dest > &X) const
Solve with the supernode triangular matrix.
StorageIndex * m_rowind_colptr
StorageIndex * colIndexPtr()
const MappedSuperNodalMatrix & m_matrix
StorageIndex * rowIndex()
EIGEN_STRONG_INLINE Scalar value() const
Matrix< StorageIndex, Dynamic, 1 > IndexVector
const StorageIndex * rowIndex() const
MappedSuperNodalMatrix(Index m, Index n, ScalarVector &nzval, IndexVector &nzval_colptr, IndexVector &rowind, IndexVector &rowind_colptr, IndexVector &col_to_sup, IndexVector &sup_to_col)
A matrix or vector expression mapping an existing array of data.
An InnerIterator allows to loop over the element of any matrix expression.
const StorageIndex * rowIndexPtr() const
void setInfos(Index m, Index n, ScalarVector &nzval, IndexVector &nzval_colptr, IndexVector &rowind, IndexVector &rowind_colptr, IndexVector &col_to_sup, IndexVector &sup_to_col)
InnerIterator & operator++()
const Scalar * valuePtr() const
const StorageIndex * supToCol() const
const StorageIndex * colToSup() const
a class to manipulate the L supernodal factor from the SparseLU factorization
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Scalar * data() const
const StorageIndex * colIndexPtr() const
StorageIndex * rowIndexPtr()
StorageIndex * m_col_to_sup
EIGEN_DEVICE_FUNC Matrix< _Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols > & setZero(Index size)
InnerIterator class to iterate over nonzero values of the current column in the supernodal matrix L.
Base class for all dense matrices, vectors, and expressions.
MatrixType A(a, *n, *n, *lda)
StorageIndex * supToCol()
_StorageIndex StorageIndex
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:19