10 #ifndef EIGEN_SPARSE_REF_H 11 #define EIGEN_SPARSE_REF_H 21 template<
typename Derived>
class SparseRefBase;
23 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int _Options,
typename _Str
ideType>
24 struct traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
25 :
public traits<SparseMatrix<MatScalar,MatOptions,MatIndex> >
33 template<
typename Derived>
struct match {
35 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&
RowMajorBit)==(Derived::Flags&
RowMajorBit)),
38 typedef typename internal::conditional<MatchAtCompileTime,internal::true_type,internal::false_type>::type type;
43 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int _Options,
typename _Str
ideType>
44 struct traits<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
45 :
public traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
52 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int _Options,
typename _Str
ideType>
53 struct traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
54 :
public traits<SparseVector<MatScalar,MatOptions,MatIndex> >
62 template<
typename Derived>
struct match {
66 typedef typename internal::conditional<MatchAtCompileTime,internal::true_type,internal::false_type>::type type;
71 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int _Options,
typename _Str
ideType>
72 struct traits<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
73 :
public traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
80 template<
typename Derived>
81 struct traits<SparseRefBase<Derived> > :
public traits<Derived> {};
83 template<
typename Derived>
class SparseRefBase
84 :
public SparseMapBase<Derived>
88 typedef SparseMapBase<Derived> Base;
89 EIGEN_SPARSE_PUBLIC_INTERFACE(SparseRefBase)
92 : Base(RowsAtCompileTime==
Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==
Dynamic?0:ColsAtCompileTime, 0, 0, 0, 0, 0)
97 template<
typename Expression>
98 void construct(Expression& expr)
100 if(expr.outerIndexPtr()==0)
101 ::
new (static_cast<Base*>(
this)) Base(expr.size(), expr.nonZeros(), expr.innerIndexPtr(), expr.valuePtr());
103 ::new (static_cast<Base*>(
this)) Base(expr.rows(), expr.cols(), expr.nonZeros(), expr.outerIndexPtr(), expr.innerIndexPtr(), expr.valuePtr(), expr.innerNonZeroPtr());
121 #ifndef EIGEN_PARSED_BY_DOXYGEN 122 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
123 class Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType >
124 :
public internal::SparseRefBase<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType > >
126 template<typename SparseMatrixType, int Options>
127 class
Ref<SparseMatrixType, Options>
128 :
public SparseMapBase<Derived,WriteAccessors>
132 typedef internal::traits<Ref> Traits;
133 template<
int OtherOptions>
135 template<
int OtherOptions>
139 typedef internal::SparseRefBase<Ref>
Base;
140 EIGEN_SPARSE_PUBLIC_INTERFACE(Ref)
143 #ifndef EIGEN_PARSED_BY_DOXYGEN 144 template<
int OtherOptions>
149 Base::construct(expr.
derived());
152 template<
int OtherOptions>
157 Base::construct(expr.derived());
160 template<
typename Derived>
164 template<
typename Derived>
168 EIGEN_STATIC_ASSERT(
bool(internal::is_lvalue<Derived>::value), THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY);
169 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
171 Base::construct(expr.const_cast_derived());
176 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
177 class Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType>
178 :
public internal::SparseRefBase<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
181 typedef internal::traits<Ref> Traits;
184 typedef internal::SparseRefBase<Ref> Base;
185 EIGEN_SPARSE_PUBLIC_INTERFACE(Ref)
187 template<
typename Derived>
190 construct(expr.
derived(),
typename Traits::template match<Derived>::type());
193 inline Ref(
const Ref& other) : Base(other) {
197 template<
typename OtherRef>
198 inline Ref(
const RefBase<OtherRef>& other) {
199 construct(other.derived(),
typename Traits::template match<OtherRef>::type());
204 template<
typename Expression>
205 void construct(
const Expression& expr,internal::true_type)
209 TPlainObjectType* obj =
reinterpret_cast<TPlainObjectType*
>(m_object_bytes);
210 ::new (obj) TPlainObjectType(expr);
211 Base::construct(*obj);
215 Base::construct(expr);
219 template<
typename Expression>
220 void construct(
const Expression& expr, internal::false_type)
222 TPlainObjectType* obj =
reinterpret_cast<TPlainObjectType*
>(m_object_bytes);
223 ::new (obj) TPlainObjectType(expr);
224 Base::construct(*obj);
228 char m_object_bytes[
sizeof(TPlainObjectType)];
242 #ifndef EIGEN_PARSED_BY_DOXYGEN 243 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
244 class Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType >
245 :
public internal::SparseRefBase<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType > >
247 template<typename SparseVectorType>
248 class Ref<SparseVectorType>
249 :
public SparseMapBase<Derived,WriteAccessors>
253 typedef internal::traits<Ref> Traits;
254 template<
int OtherOptions>
258 typedef internal::SparseRefBase<Ref> Base;
259 EIGEN_SPARSE_PUBLIC_INTERFACE(Ref)
261 #ifndef EIGEN_PARSED_BY_DOXYGEN 262 template<
int OtherOptions>
266 Base::construct(expr.
derived());
269 template<
typename Derived>
273 template<
typename Derived>
277 EIGEN_STATIC_ASSERT(
bool(internal::is_lvalue<Derived>::value), THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY);
278 EIGEN_STATIC_ASSERT(
bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
279 Base::construct(expr.const_cast_derived());
284 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
285 class Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType>
286 :
public internal::SparseRefBase<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
289 typedef internal::traits<Ref> Traits;
292 typedef internal::SparseRefBase<Ref> Base;
293 EIGEN_SPARSE_PUBLIC_INTERFACE(Ref)
295 template<
typename Derived>
298 construct(expr.
derived(),
typename Traits::template match<Derived>::type());
301 inline Ref(
const Ref& other) : Base(other) {
305 template<
typename OtherRef>
306 inline Ref(
const RefBase<OtherRef>& other) {
307 construct(other.derived(),
typename Traits::template match<OtherRef>::type());
312 template<
typename Expression>
313 void construct(
const Expression& expr,internal::true_type)
315 Base::construct(expr);
318 template<
typename Expression>
319 void construct(
const Expression& expr, internal::false_type)
321 TPlainObjectType* obj =
reinterpret_cast<TPlainObjectType*
>(m_object_bytes);
322 ::new (obj) TPlainObjectType(expr);
323 Base::construct(*obj);
327 char m_object_bytes[
sizeof(TPlainObjectType)];
334 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
335 struct evaluator<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
336 : evaluator<SparseCompressedBase<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
338 typedef evaluator<SparseCompressedBase<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > > Base;
340 evaluator() : Base() {}
341 explicit evaluator(
const XprType &mat) : Base(mat) {}
344 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
345 struct evaluator<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
346 : evaluator<SparseCompressedBase<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
348 typedef evaluator<SparseCompressedBase<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > > Base;
350 evaluator() : Base() {}
351 explicit evaluator(
const XprType &mat) : Base(mat) {}
354 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
355 struct evaluator<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
356 : evaluator<SparseCompressedBase<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
358 typedef evaluator<SparseCompressedBase<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > > Base;
360 evaluator() : Base() {}
361 explicit evaluator(
const XprType &mat) : Base(mat) {}
364 template<
typename MatScalar,
int MatOptions,
typename MatIndex,
int Options,
typename Str
ideType>
365 struct evaluator<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
366 : evaluator<SparseCompressedBase<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
368 typedef evaluator<SparseCompressedBase<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > > Base;
370 evaluator() : Base() {}
371 explicit evaluator(
const XprType &mat) : Base(mat) {}
378 #endif // EIGEN_SPARSE_REF_H bool isCompressed() const
Definition: SparseCompressedBase.h:107
const unsigned int CompressedAccessBit
Definition: Constants.h:186
A versatible sparse matrix representation.
Definition: SparseMatrix.h:92
const unsigned int LvalueBit
Definition: Constants.h:139
Namespace containing all symbols from the Eigen library.
Definition: Core:287
SparseMatrix< _Scalar, _Options, _Index > & derived()
Definition: EigenBase.h:44
const unsigned int RowMajorBit
Definition: Constants.h:61
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:281
Definition: SparseRef.h:16
a sparse vector class
Definition: SparseUtil.h:54
A matrix or vector expression mapping an existing expression.
Definition: Ref.h:190
Ref(SparseCompressedBase< Derived > &expr)
Definition: SparseRef.h:165
Definition: Eigen_Colamd.h:50
const int Dynamic
Definition: Constants.h:21
Common base class for sparse [compressed]-{row|column}-storage format.
Definition: SparseCompressedBase.h:15
Sparse matrix.
Definition: MappedSparseMatrix.h:32
Ref(SparseCompressedBase< Derived > &expr)
Definition: SparseRef.h:274