10#ifndef EIGEN_SPARSEUTIL_H
11#define EIGEN_SPARSEUTIL_H
16#define EIGEN_DBG_SPARSE(X)
18#define EIGEN_DBG_SPARSE(X) X
21#define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(Derived, Op) \
22template<typename OtherDerived> \
23EIGEN_STRONG_INLINE Derived& operator Op(const Eigen::SparseMatrixBase<OtherDerived>& other) \
25 return Base::operator Op(other.derived()); \
27EIGEN_STRONG_INLINE Derived& operator Op(const Derived& other) \
29 return Base::operator Op(other); \
32#define EIGEN_SPARSE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, Op) \
33template<typename Other> \
34EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \
36 return Base::operator Op(scalar); \
39#define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATORS(Derived) \
40EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(Derived, =)
43#define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived) \
44 EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
47const int CoherentAccessPattern = 0x1;
48const int InnerRandomAccessPattern = 0x2 | CoherentAccessPattern;
49const int OuterRandomAccessPattern = 0x4 | CoherentAccessPattern;
50const int RandomAccessPattern = 0x8 | OuterRandomAccessPattern | InnerRandomAccessPattern;
52template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class SparseMatrix;
54template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class SparseVector;
55template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class MappedSparseMatrix;
67template<
typename Lhs,
typename Rhs,
70template<
typename Lhs,
typename Rhs,
76template<
typename T,
int Rows,
int Cols,
int Flags>
struct sparse_eval;
79 :
sparse_eval<T, traits<T>::RowsAtCompileTime,traits<T>::ColsAtCompileTime,traits<T>::Flags>
82template<
typename T,
int Cols,
int Flags>
struct sparse_eval<T,1,Cols,Flags> {
89template<
typename T,
int Rows,
int Flags>
struct sparse_eval<T,Rows,1,Flags> {
97template<
typename T,
int Rows,
int Cols,
int Flags>
struct sparse_eval {
122 :
sparse_eval<T, traits<T>::RowsAtCompileTime,traits<T>::ColsAtCompileTime, evaluator<T>::Flags>
125template<
typename Decomposition,
typename RhsType>
131template<
typename Derived>
157 Triplet() : m_row(0), m_col(0), m_value(0) {}
159 Triplet(
const StorageIndex& i,
const StorageIndex&
j,
const Scalar& v = Scalar(0))
160 : m_row(i), m_col(
j), m_value(v)
164 const StorageIndex&
row()
const {
return m_row; }
167 const StorageIndex&
col()
const {
return m_col; }
170 const Scalar&
value()
const {
return m_value; }
172 StorageIndex m_row, m_col;
Definition SparseUtil.h:63
Definition SparseUtil.h:53
Sparse matrix.
Definition MappedSparseMatrix.h:34
Pseudo expression representing a solving operation.
Definition Solve.h:63
Definition SparseUtil.h:64
Definition SparseUtil.h:58
Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
Definition SparseSelfAdjointView.h:45
Definition SparseUtil.h:61
Definition SparseSelfAdjointView.h:549
Definition SparseUtil.h:62
a sparse vector class
Definition SparseVector.h:66
Definition SparseView.h:32
A small structure to hold a non zero as a triplet (i,j,value).
Definition SparseUtil.h:155
const StorageIndex & col() const
Definition SparseUtil.h:167
const Scalar & value() const
Definition SparseUtil.h:170
const StorageIndex & row() const
Definition SparseUtil.h:164
@ ColMajor
Storage order is column major (see TopicStorageOrders).
Definition Constants.h:320
@ RowMajor
Storage order is row major (see TopicStorageOrders).
Definition Constants.h:322
const unsigned int RowMajorBit
for a matrix, this means that the storage order is row-major.
Definition Constants.h:61
Definition SparseUtil.h:68
The type used to identify a matrix expression.
Definition Constants.h:505
Definition Constants.h:517
Definition SparseUtil.h:71
Definition Constants.h:520
Definition SparseUtil.h:66
The type used to identify a general sparse storage.
Definition Constants.h:493
Definition Constants.h:516
Definition SparseUtil.h:138
Definition SparseUtil.h:137
Definition XprHelper.h:272
Definition CoreEvaluators.h:82
Definition XprHelper.h:445
Definition XprHelper.h:645
Definition XprHelper.h:235
Definition XprHelper.h:307
Definition SparseUtil.h:97
Definition ForwardDeclarations.h:17