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) \
22 template<typename OtherDerived> \
23 EIGEN_STRONG_INLINE Derived& operator Op(const Eigen::SparseMatrixBase<OtherDerived>& other) \
25 return Base::operator Op(other.derived()); \
27 EIGEN_STRONG_INLINE Derived& operator Op(const Derived& other) \
29 return Base::operator Op(other); \
32 #define EIGEN_SPARSE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, Op) \
33 template<typename Other> \
34 EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \
36 return Base::operator Op(scalar); \
39 #define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATORS(Derived) \
40 EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(Derived, =)
43 #define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived) \
44 EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
47 const int CoherentAccessPattern = 0x1;
48 const int InnerRandomAccessPattern = 0x2 | CoherentAccessPattern;
49 const int OuterRandomAccessPattern = 0x4 | CoherentAccessPattern;
50 const int RandomAccessPattern = 0x8 | OuterRandomAccessPattern | InnerRandomAccessPattern;
52 template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class SparseMatrix;
54 template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class SparseVector;
55 template<
typename _Scalar,
int _Flags = 0,
typename _StorageIndex =
int>
class MappedSparseMatrix;
59 template<
typename MatrixType>
class SparseView;
67 template<
typename Lhs,
typename Rhs,
70 template<
typename Lhs,
typename Rhs,
76 template<
typename T,
int Rows,
int Cols,
int Flags>
struct sparse_eval;
79 :
sparse_eval<T, traits<T>::RowsAtCompileTime,traits<T>::ColsAtCompileTime,traits<T>::Flags>
82 template<
typename T,
int Cols,
int Flags>
struct sparse_eval<T,1,Cols,Flags> {
89 template<
typename T,
int Rows,
int Flags>
struct sparse_eval<T,Rows,1,Flags> {
97 template<
typename T,
int Rows,
int Cols,
int Flags>
struct sparse_eval {
122 :
sparse_eval<T, traits<T>::RowsAtCompileTime,traits<T>::ColsAtCompileTime, evaluator<T>::Flags>
125 template<
typename Decomposition,
typename RhsType>
131 template<
typename Derived>
161 template<typename Scalar, typename StorageIndex=typename SparseMatrix<Scalar>::StorageIndex >
165 Triplet() : m_row(0), m_col(0), m_value(0) {}
167 Triplet(
const StorageIndex& i,
const StorageIndex& j,
const Scalar& v = Scalar(0))
168 : m_row(i), m_col(j), m_value(v)
172 const StorageIndex&
row()
const {
return m_row; }
175 const StorageIndex&
col()
const {
return m_col; }
178 const Scalar&
value()
const {
return m_value; }
180 StorageIndex m_row, m_col;
186 #endif // EIGEN_SPARSEUTIL_H
Definition: SparseUtil.h:53
Definition: Constants.h:518
Namespace containing all symbols from the Eigen library.
Definition: LDLT.h:16
A versatible sparse matrix representation.
Definition: SparseMatrix.h:98
Definition: SparseUtil.h:138
Definition: SparseUtil.h:137
Definition: Constants.h:506
const unsigned int RowMajorBit
Definition: Constants.h:65
Definition: SparseUtil.h:64
Definition: SparseUtil.h:68
Definition: XprHelper.h:375
Definition: XprHelper.h:693
@ RowMajor
Definition: Constants.h:320
Definition: XprHelper.h:303
Definition: SparseUtil.h:97
const Scalar & value() const
Definition: SparseUtil.h:178
Definition: SparseUtil.h:66
Definition: Constants.h:533
Definition: XprHelper.h:509
const StorageIndex & col() const
Definition: SparseUtil.h:175
Definition: SparseUtil.h:61
Definition: SparseUtil.h:71
A small structure to hold a non zero as a triplet (i,j,value).
Definition: SparseUtil.h:163
Definition: CoreEvaluators.h:91
Definition: SparseSelfAdjointView.h:598
Definition: ForwardDeclarations.h:17
Definition: SparseUtil.h:63
Definition: SparseUtil.h:58
Definition: SparseUtil.h:62
a sparse vector class
Definition: SparseVector.h:66
Definition: Constants.h:529
Definition: Constants.h:530
Expression of a dense or sparse matrix with zero or too small values removed.
Definition: SparseView.h:46
Definition: SparseUtil.h:144
Base class of any sparse matrices or sparse expressions.
Definition: SparseMatrixBase.h:28
Pseudo expression to manipulate a triangular sparse matrix as a selfadjoint matrix.
Definition: SparseSelfAdjointView.h:45
const StorageIndex & row() const
Definition: SparseUtil.h:172
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:180
@ ColMajor
Definition: Constants.h:318
Definition: XprHelper.h:340
Sparse matrix.
Definition: MappedSparseMatrix.h:34
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:42