10 #ifndef EIGEN_DYNAMIC_SPARSEMATRIX_H
11 #define EIGEN_DYNAMIC_SPARSEMATRIX_H
36 template<
typename _Scalar,
int _Options,
typename _Index>
37 struct traits<DynamicSparseMatrix<_Scalar, _Options, _Index> >
39 typedef _Scalar Scalar;
41 typedef Sparse StorageKind;
42 typedef MatrixXpr XprKind;
44 RowsAtCompileTime = Dynamic,
45 ColsAtCompileTime = Dynamic,
46 MaxRowsAtCompileTime = Dynamic,
47 MaxColsAtCompileTime = Dynamic,
48 Flags = _Options | NestByRefBit | LvalueBit,
49 CoeffReadCost = NumTraits<Scalar>::ReadCost,
50 SupportedAccessPatterns = OuterRandomAccessPattern
55 template<
typename _Scalar,
int _Options,
typename _Index>
57 :
public SparseMatrixBase<DynamicSparseMatrix<_Scalar, _Options, _Index> >
64 typedef MappedSparseMatrix<Scalar,Flags> Map;
65 using Base::IsRowMajor;
66 using Base::operator=;
76 std::vector<internal::CompressedStorage<Scalar,Index> > m_data;
80 inline Index rows()
const {
return IsRowMajor ? outerSize() : m_innerSize; }
81 inline Index cols()
const {
return IsRowMajor ? m_innerSize : outerSize(); }
82 inline Index innerSize()
const {
return m_innerSize; }
83 inline Index outerSize()
const {
return static_cast<Index
>(m_data.size()); }
84 inline Index innerNonZeros(Index j)
const {
return m_data[j].size(); }
86 std::vector<internal::CompressedStorage<Scalar,Index> >& _data() {
return m_data; }
87 const std::vector<internal::CompressedStorage<Scalar,Index> >& _data()
const {
return m_data; }
92 inline Scalar
coeff(Index row, Index col)
const
94 const Index outer = IsRowMajor ? row : col;
95 const Index inner = IsRowMajor ? col : row;
96 return m_data[outer].at(inner);
105 const Index outer = IsRowMajor ? row : col;
106 const Index inner = IsRowMajor ? col : row;
107 return m_data[outer].atWithInsertion(inner);
111 class ReverseInnerIterator;
115 for (Index j=0; j<outerSize(); ++j)
123 for (Index j=0; j<outerSize(); ++j)
124 res += static_cast<Index>(m_data[j].size());
130 void reserve(Index reserveSize = 1000)
134 Index reserveSizePerVector = (std::max)(reserveSize/outerSize(),Index(4));
135 for (Index j=0; j<outerSize(); ++j)
137 m_data[j].reserve(reserveSizePerVector);
158 eigen_assert(outer<Index(m_data.size()) && inner<m_innerSize &&
"out of range");
159 eigen_assert(((m_data[outer].size()==0) || (m_data[outer].index(m_data[outer].size()-1)<inner))
160 &&
"wrong sorted insertion");
161 m_data[outer].append(0, inner);
162 return m_data[outer].value(m_data[outer].size()-1);
165 inline Scalar& insert(Index row, Index col)
167 const Index outer = IsRowMajor ? row : col;
168 const Index inner = IsRowMajor ? col : row;
171 Index
id =
static_cast<Index
>(m_data[outer].size()) - 1;
172 m_data[outer].resize(
id+2,1);
174 while ( (
id >= startId) && (m_data[outer].index(
id) > inner) )
176 m_data[outer].index(
id+1) = m_data[outer].index(
id);
177 m_data[outer].value(
id+1) = m_data[outer].value(
id);
180 m_data[outer].index(
id+1) = inner;
181 m_data[outer].value(
id+1) = 0;
182 return m_data[outer].value(
id+1);
189 void prune(Scalar reference, RealScalar epsilon = NumTraits<RealScalar>::dummy_precision())
191 for (Index j=0; j<outerSize(); ++j)
192 m_data[j].
prune(reference,epsilon);
199 const Index outerSize = IsRowMajor ? rows : cols;
200 m_innerSize = IsRowMajor ? cols : rows;
202 if (Index(m_data.size()) != outerSize)
204 m_data.resize(outerSize);
208 void resizeAndKeepData(Index rows, Index cols)
210 const Index outerSize = IsRowMajor ? rows : cols;
211 const Index innerSize = IsRowMajor ? cols : rows;
212 if (m_innerSize>innerSize)
219 if (m_data.size() != outerSize)
221 m_data.resize(outerSize);
227 : m_innerSize(0), m_data(0)
229 eigen_assert(innerSize()==0 && outerSize()==0);
240 template<
typename OtherDerived>
244 Base::operator=(other.derived());
248 : Base(), m_innerSize(0)
250 *
this = other.derived();
256 std::swap(m_innerSize, other.m_innerSize);
258 m_data.swap(other.m_data);
263 if (other.isRValue())
265 swap(other.const_cast_derived());
269 resize(other.rows(), other.cols());
270 m_data = other.m_data;
282 EIGEN_DEPRECATED
void startFill(Index reserveSize = 1000)
285 reserve(reserveSize);
297 EIGEN_DEPRECATED Scalar&
fill(Index row, Index col)
299 const Index outer = IsRowMajor ? row : col;
300 const Index inner = IsRowMajor ? col : row;
309 EIGEN_DEPRECATED Scalar&
fillrand(Index row, Index col)
311 return insert(row,col);
318 # ifdef EIGEN_DYNAMICSPARSEMATRIX_PLUGIN
319 # include EIGEN_DYNAMICSPARSEMATRIX_PLUGIN
323 template<
typename Scalar,
int _Options,
typename _Index>
324 class DynamicSparseMatrix<Scalar,_Options,_Index>::InnerIterator :
public SparseVector<Scalar,_Options,_Index>::InnerIterator
326 typedef typename SparseVector<Scalar,_Options,_Index>::InnerIterator Base;
329 : Base(mat.m_data[outer]), m_outer(outer)
332 inline Index row()
const {
return IsRowMajor ? m_outer : Base::index(); }
333 inline Index col()
const {
return IsRowMajor ? Base::index() : m_outer; }
339 template<
typename Scalar,
int _Options,
typename _Index>
340 class DynamicSparseMatrix<Scalar,_Options,_Index>::ReverseInnerIterator :
public SparseVector<Scalar,_Options,_Index>::ReverseInnerIterator
342 typedef typename SparseVector<Scalar,_Options,_Index>::ReverseInnerIterator Base;
345 : Base(mat.m_data[outer]), m_outer(outer)
348 inline Index row()
const {
return IsRowMajor ? m_outer : Base::index(); }
349 inline Index col()
const {
return IsRowMajor ? Base::index() : m_outer; }
357 #endif // EIGEN_DYNAMIC_SPARSEMATRIX_H
Scalar & coeffRef(Index row, Index col)
Definition: DynamicSparseMatrix.h:103
Scalar & insertBack(Index row, Index col)
Definition: DynamicSparseMatrix.h:150
void startVec(Index)
Definition: DynamicSparseMatrix.h:143
EIGEN_DEPRECATED void startFill(Index reserveSize=1000)
Definition: DynamicSparseMatrix.h:282
EIGEN_DEPRECATED DynamicSparseMatrix(Index rows, Index cols)
Definition: DynamicSparseMatrix.h:233
Scalar & insertBackByOuterInner(Index outer, Index inner)
Definition: DynamicSparseMatrix.h:156
EIGEN_DEPRECATED void endFill()
Definition: DynamicSparseMatrix.h:316
void prune(Scalar reference, RealScalar epsilon=NumTraits< RealScalar >::dummy_precision())
Definition: DynamicSparseMatrix.h:189
EIGEN_DEPRECATED DynamicSparseMatrix(const SparseMatrixBase< OtherDerived > &other)
Definition: DynamicSparseMatrix.h:241
Scalar coeff(Index row, Index col) const
Definition: DynamicSparseMatrix.h:92
A sparse matrix class designed for matrix assembly purpose.
Definition: DynamicSparseMatrix.h:56
EIGEN_DEPRECATED Scalar & fillrand(Index row, Index col)
Definition: DynamicSparseMatrix.h:309
EIGEN_DEPRECATED DynamicSparseMatrix()
Definition: DynamicSparseMatrix.h:226
EIGEN_DEPRECATED Scalar & fill(Index row, Index col)
Definition: DynamicSparseMatrix.h:297
void resize(Index rows, Index cols)
Definition: DynamicSparseMatrix.h:197
Index nonZeros() const
Definition: DynamicSparseMatrix.h:120
void finalize()
Definition: DynamicSparseMatrix.h:186
~DynamicSparseMatrix()
Definition: DynamicSparseMatrix.h:276