WPILibC++ 2023.4.3
SparseRef.h
Go to the documentation of this file.
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2015 Gael Guennebaud <gael.guennebaud@inria.fr>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#ifndef EIGEN_SPARSE_REF_H
11#define EIGEN_SPARSE_REF_H
12
13namespace Eigen {
14
15enum {
16 StandardCompressedFormat = 2 /**< used by Ref<SparseMatrix> to specify whether the input storage must be in standard compressed form */
17};
18
19namespace internal {
20
21template<typename Derived> class SparseRefBase;
22
23template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
24struct traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
25 : public traits<SparseMatrix<MatScalar,MatOptions,MatIndex> >
26{
28 enum {
29 Options = _Options,
31 };
32
33 template<typename Derived> struct match {
34 enum {
35 StorageOrderMatch = PlainObjectType::IsVectorAtCompileTime || Derived::IsVectorAtCompileTime || ((PlainObjectType::Flags&RowMajorBit)==(Derived::Flags&RowMajorBit)),
36 MatchAtCompileTime = (Derived::Flags&CompressedAccessBit) && StorageOrderMatch
37 };
39 };
40
41};
42
43template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
44struct traits<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
45 : public traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
46{
47 enum {
49 };
50};
51
52template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
53struct traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
54 : public traits<SparseVector<MatScalar,MatOptions,MatIndex> >
55{
57 enum {
58 Options = _Options,
60 };
61
62 template<typename Derived> struct match {
63 enum {
64 MatchAtCompileTime = (Derived::Flags&CompressedAccessBit) && Derived::IsVectorAtCompileTime
65 };
67 };
68
69};
70
71template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
72struct traits<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
73 : public traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
74{
75 enum {
77 };
78};
79
80template<typename Derived>
81struct traits<SparseRefBase<Derived> > : public traits<Derived> {};
82
83template<typename Derived> class SparseRefBase
84 : public SparseMapBase<Derived>
85{
86public:
87
90
92 : Base(RowsAtCompileTime==Dynamic?0:RowsAtCompileTime,ColsAtCompileTime==Dynamic?0:ColsAtCompileTime, 0, 0, 0, 0, 0)
93 {}
94
95protected:
96
97 template<typename Expression>
98 void construct(Expression& expr)
99 {
100 if(expr.outerIndexPtr()==0)
101 ::new (static_cast<Base*>(this)) Base(expr.size(), expr.nonZeros(), expr.innerIndexPtr(), expr.valuePtr());
102 else
103 ::new (static_cast<Base*>(this)) Base(expr.rows(), expr.cols(), expr.nonZeros(), expr.outerIndexPtr(), expr.innerIndexPtr(), expr.valuePtr(), expr.innerNonZeroPtr());
104 }
105};
106
107} // namespace internal
108
109
110/**
111 * \ingroup SparseCore_Module
112 *
113 * \brief A sparse matrix expression referencing an existing sparse expression
114 *
115 * \tparam SparseMatrixType the equivalent sparse matrix type of the referenced data, it must be a template instance of class SparseMatrix.
116 * \tparam Options specifies whether the a standard compressed format is required \c Options is \c #StandardCompressedFormat, or \c 0.
117 * The default is \c 0.
118 *
119 * \sa class Ref
120 */
121#ifndef EIGEN_PARSED_BY_DOXYGEN
122template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
123class Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType >
124 : public internal::SparseRefBase<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType > >
125#else
126template<typename SparseMatrixType, int Options>
127class Ref<SparseMatrixType, Options>
128 : public SparseMapBase<Derived,WriteAccessors> // yes, that's weird to use Derived here, but that works!
129#endif
130{
133 template<int OtherOptions>
135 template<int OtherOptions>
137 public:
138
141
142
143 #ifndef EIGEN_PARSED_BY_DOXYGEN
144 template<int OtherOptions>
146 {
147 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseMatrix<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
148 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) );
149 Base::construct(expr.derived());
150 }
151
152 template<int OtherOptions>
154 {
155 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseMatrix<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
156 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) );
157 Base::construct(expr.derived());
158 }
159
160 template<typename Derived>
162 #else
163 /** Implicit constructor from any sparse expression (2D matrix or 1D vector) */
164 template<typename Derived>
166 #endif
167 {
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);
170 eigen_assert( ((Options & int(StandardCompressedFormat))==0) || (expr.isCompressed()) );
172 }
173};
174
175// this is the const ref version
176template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
177class Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType>
178 : public internal::SparseRefBase<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
179{
182 public:
183
186
187 template<typename Derived>
188 inline Ref(const SparseMatrixBase<Derived>& expr) : m_hasCopy(false)
189 {
190 construct(expr.derived(), typename Traits::template match<Derived>::type());
191 }
192
193 inline Ref(const Ref& other) : Base(other), m_hasCopy(false) {
194 // copy constructor shall not copy the m_object, to avoid unnecessary malloc and copy
195 }
196
197 template<typename OtherRef>
198 inline Ref(const RefBase<OtherRef>& other) : m_hasCopy(false) {
199 construct(other.derived(), typename Traits::template match<OtherRef>::type());
200 }
201
203 if(m_hasCopy) {
204 TPlainObjectType* obj = reinterpret_cast<TPlainObjectType*>(&m_storage);
205 obj->~TPlainObjectType();
206 }
207 }
208
209 protected:
210
211 template<typename Expression>
212 void construct(const Expression& expr,internal::true_type)
213 {
214 if((Options & int(StandardCompressedFormat)) && (!expr.isCompressed()))
215 {
216 TPlainObjectType* obj = reinterpret_cast<TPlainObjectType*>(&m_storage);
217 ::new (obj) TPlainObjectType(expr);
218 m_hasCopy = true;
219 Base::construct(*obj);
220 }
221 else
222 {
223 Base::construct(expr);
224 }
225 }
226
227 template<typename Expression>
228 void construct(const Expression& expr, internal::false_type)
229 {
230 TPlainObjectType* obj = reinterpret_cast<TPlainObjectType*>(&m_storage);
231 ::new (obj) TPlainObjectType(expr);
232 m_hasCopy = true;
233 Base::construct(*obj);
234 }
235
236 protected:
239};
240
241
242
243/**
244 * \ingroup SparseCore_Module
245 *
246 * \brief A sparse vector expression referencing an existing sparse vector expression
247 *
248 * \tparam SparseVectorType the equivalent sparse vector type of the referenced data, it must be a template instance of class SparseVector.
249 *
250 * \sa class Ref
251 */
252#ifndef EIGEN_PARSED_BY_DOXYGEN
253template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
254class Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType >
255 : public internal::SparseRefBase<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType > >
256#else
257template<typename SparseVectorType>
258class Ref<SparseVectorType>
259 : public SparseMapBase<Derived,WriteAccessors>
260#endif
261{
264 template<int OtherOptions>
266 public:
267
270
271 #ifndef EIGEN_PARSED_BY_DOXYGEN
272 template<int OtherOptions>
274 {
275 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseVector<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
276 Base::construct(expr.derived());
277 }
278
279 template<typename Derived>
281 #else
282 /** Implicit constructor from any 1D sparse vector expression */
283 template<typename Derived>
285 #endif
286 {
287 EIGEN_STATIC_ASSERT(bool(internal::is_lvalue<Derived>::value), THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY);
288 EIGEN_STATIC_ASSERT(bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
290 }
291};
292
293// this is the const ref version
294template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
295class Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType>
296 : public internal::SparseRefBase<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
297{
300 public:
301
304
305 template<typename Derived>
306 inline Ref(const SparseMatrixBase<Derived>& expr) : m_hasCopy(false)
307 {
308 construct(expr.derived(), typename Traits::template match<Derived>::type());
309 }
310
311 inline Ref(const Ref& other) : Base(other), m_hasCopy(false) {
312 // copy constructor shall not copy the m_object, to avoid unnecessary malloc and copy
313 }
314
315 template<typename OtherRef>
316 inline Ref(const RefBase<OtherRef>& other) : m_hasCopy(false) {
317 construct(other.derived(), typename Traits::template match<OtherRef>::type());
318 }
319
321 if(m_hasCopy) {
322 TPlainObjectType* obj = reinterpret_cast<TPlainObjectType*>(&m_storage);
323 obj->~TPlainObjectType();
324 }
325 }
326
327 protected:
328
329 template<typename Expression>
330 void construct(const Expression& expr,internal::true_type)
331 {
332 Base::construct(expr);
333 }
334
335 template<typename Expression>
336 void construct(const Expression& expr, internal::false_type)
337 {
338 TPlainObjectType* obj = reinterpret_cast<TPlainObjectType*>(&m_storage);
339 ::new (obj) TPlainObjectType(expr);
340 m_hasCopy = true;
341 Base::construct(*obj);
342 }
343
344 protected:
347};
348
349namespace internal {
350
351// FIXME shall we introduce a general evaluatior_ref that we can specialize for any sparse object once, and thus remove this copy-pasta thing...
352
353template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
354struct evaluator<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
355 : evaluator<SparseCompressedBase<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
356{
360 explicit evaluator(const XprType &mat) : Base(mat) {}
361};
362
363template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
364struct evaluator<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
365 : evaluator<SparseCompressedBase<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
366{
370 explicit evaluator(const XprType &mat) : Base(mat) {}
371};
372
373template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
374struct evaluator<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
375 : evaluator<SparseCompressedBase<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
376{
380 explicit evaluator(const XprType &mat) : Base(mat) {}
381};
382
383template<typename MatScalar, int MatOptions, typename MatIndex, int Options, typename StrideType>
384struct evaluator<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> >
385 : evaluator<SparseCompressedBase<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> > >
386{
390 explicit evaluator(const XprType &mat) : Base(mat) {}
391};
392
393}
394
395} // end namespace Eigen
396
397#endif // EIGEN_SPARSE_REF_H
#define eigen_assert(x)
Definition: Macros.h:1047
#define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived)
Definition: SparseUtil.h:43
#define EIGEN_STATIC_ASSERT(CONDITION, MSG)
Definition: StaticAssert.h:127
Sparse matrix.
Definition: MappedSparseMatrix.h:34
A sparse matrix expression referencing an existing sparse expression.
Definition: SparseRef.h:130
Ref(const SparseCompressedBase< Derived > &expr)
Definition: SparseRef.h:161
Ref(SparseMatrix< MatScalar, OtherOptions, MatIndex > &expr)
Definition: SparseRef.h:145
internal::SparseRefBase< Ref > Base
Definition: SparseRef.h:139
Ref(MappedSparseMatrix< MatScalar, OtherOptions, MatIndex > &expr)
Definition: SparseRef.h:153
A sparse vector expression referencing an existing sparse vector expression.
Definition: SparseRef.h:261
internal::SparseRefBase< Ref > Base
Definition: SparseRef.h:268
Ref(const SparseCompressedBase< Derived > &expr)
Definition: SparseRef.h:280
Ref(SparseVector< MatScalar, OtherOptions, MatIndex > &expr)
Definition: SparseRef.h:273
Ref(const SparseMatrixBase< Derived > &expr)
Definition: SparseRef.h:188
void construct(const Expression &expr, internal::true_type)
Definition: SparseRef.h:212
internal::aligned_storage< sizeof(TPlainObjectType), EIGEN_ALIGNOF(TPlainObjectType)>::type m_storage
Definition: SparseRef.h:237
Ref(const RefBase< OtherRef > &other)
Definition: SparseRef.h:198
void construct(const Expression &expr, internal::false_type)
Definition: SparseRef.h:228
Ref(const SparseMatrixBase< Derived > &expr)
Definition: SparseRef.h:306
internal::aligned_storage< sizeof(TPlainObjectType), EIGEN_ALIGNOF(TPlainObjectType)>::type m_storage
Definition: SparseRef.h:345
Ref(const RefBase< OtherRef > &other)
Definition: SparseRef.h:316
void construct(const Expression &expr, internal::false_type)
Definition: SparseRef.h:336
void construct(const Expression &expr, internal::true_type)
Definition: SparseRef.h:330
Definition: Ref.h:61
EIGEN_DEVICE_FUNC bool construct(Expression &expr)
Definition: Ref.h:109
A matrix or vector expression mapping an existing expression.
Definition: Ref.h:283
Common base class for sparse [compressed]-{row|column}-storage format.
Definition: SparseCompressedBase.h:38
bool isCompressed() const
Definition: SparseCompressedBase.h:107
Definition: SparseMap.h:43
Base class of any sparse matrices or sparse expressions.
Definition: SparseMatrixBase.h:28
const Derived & derived() const
Definition: SparseMatrixBase.h:143
Derived & const_cast_derived() const
Definition: SparseMatrixBase.h:145
A versatible sparse matrix representation.
Definition: SparseMatrix.h:98
bool isCompressed() const
Definition: SparseCompressedBase.h:107
a sparse vector class
Definition: SparseVector.h:66
Definition: SparseRef.h:85
SparseMapBase< Derived > Base
Definition: SparseRef.h:88
void construct(Expression &expr)
Definition: SparseRef.h:98
type
Definition: core.h:575
const unsigned int LvalueBit
Means the expression has a coeffRef() method, i.e.
Definition: Constants.h:144
const unsigned int RowMajorBit
for a matrix, this means that the storage order is row-major.
Definition: Constants.h:66
const unsigned int CompressedAccessBit
Means that the underlying coefficients can be accessed through pointers to the sparse (un)compressed ...
Definition: Constants.h:191
Namespace containing all symbols from the Eigen library.
Definition: MatrixExponential.h:16
const unsigned int NestByRefBit
Definition: Constants.h:169
@ StandardCompressedFormat
used by Ref<SparseMatrix> to specify whether the input storage must be in standard compressed form
Definition: SparseRef.h:16
const int Dynamic
This value means that a positive quantity (e.g., a size) is not known at compile-time,...
Definition: Constants.h:22
Definition: Eigen_Colamd.h:50
Definition: Meta.h:753
evaluator< SparseCompressedBase< Ref< SparseMatrix< MatScalar, MatOptions, MatIndex >, Options, StrideType > > > Base
Definition: SparseRef.h:357
Ref< SparseMatrix< MatScalar, MatOptions, MatIndex >, Options, StrideType > XprType
Definition: SparseRef.h:358
Ref< SparseVector< MatScalar, MatOptions, MatIndex >, Options, StrideType > XprType
Definition: SparseRef.h:378
evaluator< SparseCompressedBase< Ref< SparseVector< MatScalar, MatOptions, MatIndex >, Options, StrideType > > > Base
Definition: SparseRef.h:377
Ref< const SparseMatrix< MatScalar, MatOptions, MatIndex >, Options, StrideType > XprType
Definition: SparseRef.h:368
evaluator< SparseCompressedBase< Ref< const SparseMatrix< MatScalar, MatOptions, MatIndex >, Options, StrideType > > > Base
Definition: SparseRef.h:367
evaluator< SparseCompressedBase< Ref< const SparseVector< MatScalar, MatOptions, MatIndex >, Options, StrideType > > > Base
Definition: SparseRef.h:387
Ref< const SparseVector< MatScalar, MatOptions, MatIndex >, Options, StrideType > XprType
Definition: SparseRef.h:388
Definition: CoreEvaluators.h:91
Definition: Meta.h:97
Definition: XprHelper.h:660
SparseMatrix< MatScalar, MatOptions, MatIndex > PlainObjectType
Definition: SparseRef.h:27
internal::conditional< MatchAtCompileTime, internal::true_type, internal::false_type >::type type
Definition: SparseRef.h:38
internal::conditional< MatchAtCompileTime, internal::true_type, internal::false_type >::type type
Definition: SparseRef.h:66
SparseVector< MatScalar, MatOptions, MatIndex > PlainObjectType
Definition: SparseRef.h:56
Definition: ForwardDeclarations.h:17
Definition: Meta.h:96