SparseView.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) 2011-2014 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2010 Daniel Lowengrub <lowdanie@gmail.com>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 #ifndef EIGEN_SPARSEVIEW_H
12 #define EIGEN_SPARSEVIEW_H
13 
14 namespace Eigen {
15 
16 namespace internal {
17 
18 template<typename MatrixType>
19 struct traits<SparseView<MatrixType> > : traits<MatrixType>
20 {
21  typedef typename MatrixType::StorageIndex StorageIndex;
23  enum {
25  };
26 };
27 
28 } // end namespace internal
29 
44 template<typename MatrixType>
45 class SparseView : public SparseMatrixBase<SparseView<MatrixType> >
46 {
47  typedef typename MatrixType::Nested MatrixTypeNested;
50 public:
52  typedef typename internal::remove_all<MatrixType>::type NestedExpression;
53 
54  explicit SparseView(const MatrixType& mat, const Scalar& reference = Scalar(0),
55  const RealScalar &epsilon = NumTraits<Scalar>::dummy_precision())
57 
58  inline Index rows() const { return m_matrix.rows(); }
59  inline Index cols() const { return m_matrix.cols(); }
60 
61  inline Index innerSize() const { return m_matrix.innerSize(); }
62  inline Index outerSize() const { return m_matrix.outerSize(); }
63 
66  nestedExpression() const { return m_matrix; }
67 
68  Scalar reference() const { return m_reference; }
69  RealScalar epsilon() const { return m_epsilon; }
70 
71 protected:
75 };
76 
77 namespace internal {
78 
79 // TODO find a way to unify the two following variants
80 // This is tricky because implementing an inner iterator on top of an IndexBased evaluator is
81 // not easy because the evaluators do not expose the sizes of the underlying expression.
82 
83 template<typename ArgType>
85  : public evaluator_base<SparseView<ArgType> >
86 {
88  public:
90 
91  class InnerIterator : public EvalIterator
92  {
93  typedef typename XprType::Scalar Scalar;
94  public:
95 
97  : EvalIterator(sve.m_argImpl,outer), m_view(sve.m_view)
98  {
99  incrementToNonZero();
100  }
101 
103  {
104  EvalIterator::operator++();
105  incrementToNonZero();
106  return *this;
107  }
108 
109  using EvalIterator::value;
110 
111  protected:
112  const XprType &m_view;
113 
114  private:
116  {
117  while((bool(*this)) && internal::isMuchSmallerThan(value(), m_view.reference(), m_view.epsilon()))
118  {
119  EvalIterator::operator++();
120  }
121  }
122  };
123 
124  enum {
126  Flags = XprType::Flags
127  };
128 
129  explicit unary_evaluator(const XprType& xpr) : m_argImpl(xpr.nestedExpression()), m_view(xpr) {}
130 
131  protected:
133  const XprType &m_view;
134 };
135 
136 template<typename ArgType>
138  : public evaluator_base<SparseView<ArgType> >
139 {
140  public:
142  protected:
143  enum { IsRowMajor = (XprType::Flags&RowMajorBit)==RowMajorBit };
144  typedef typename XprType::Scalar Scalar;
145  typedef typename XprType::StorageIndex StorageIndex;
146  public:
147 
149  {
150  public:
151 
153  : m_sve(sve), m_inner(0), m_outer(outer), m_end(sve.m_view.innerSize())
154  {
155  incrementToNonZero();
156  }
157 
159  {
160  m_inner++;
161  incrementToNonZero();
162  return *this;
163  }
164 
166  {
167  return (IsRowMajor) ? m_sve.m_argImpl.coeff(m_outer, m_inner)
168  : m_sve.m_argImpl.coeff(m_inner, m_outer);
169  }
170 
171  EIGEN_STRONG_INLINE StorageIndex index() const { return m_inner; }
172  inline Index row() const { return IsRowMajor ? m_outer : index(); }
173  inline Index col() const { return IsRowMajor ? index() : m_outer; }
174 
175  EIGEN_STRONG_INLINE operator bool() const { return m_inner < m_end && m_inner>=0; }
176 
177  protected:
180  const Index m_outer;
181  const Index m_end;
182 
183  private:
185  {
186  while((bool(*this)) && internal::isMuchSmallerThan(value(), m_sve.m_view.reference(), m_sve.m_view.epsilon()))
187  {
188  m_inner++;
189  }
190  }
191  };
192 
193  enum {
195  Flags = XprType::Flags
196  };
197 
198  explicit unary_evaluator(const XprType& xpr) : m_argImpl(xpr.nestedExpression()), m_view(xpr) {}
199 
200  protected:
202  const XprType &m_view;
203 };
204 
205 } // end namespace internal
206 
224 template<typename Derived>
226  const typename NumTraits<Scalar>::Real& epsilon) const
227 {
228  return SparseView<Derived>(derived(), reference, epsilon);
229 }
230 
243 template<typename Derived>
246  const RealScalar& epsilon) const
247 {
248  return SparseView<Derived>(derived(), reference, epsilon);
249 }
250 
251 } // end namespace Eigen
252 
253 #endif
Eigen::SparseView::_MatrixTypeNested
internal::remove_all< MatrixTypeNested >::type _MatrixTypeNested
Definition: SparseView.h:48
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator &sve, Index outer)
Definition: SparseView.h:96
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::m_inner
Index m_inner
Definition: SparseView.h:179
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::m_argImpl
evaluator< ArgType > m_argImpl
Definition: SparseView.h:132
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::InnerIterator::m_view
const XprType & m_view
Definition: SparseView.h:112
Eigen
Definition: common.h:73
Eigen::SparseView::innerSize
Index innerSize() const
Definition: SparseView.h:61
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::m_view
const XprType & m_view
Definition: SparseView.h:133
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::value
EIGEN_STRONG_INLINE Scalar value() const
Definition: SparseView.h:165
Eigen::SparseView::m_epsilon
RealScalar m_epsilon
Definition: SparseView.h:74
Eigen::Sparse
Definition: Constants.h:494
Eigen::DenseBase< Solve< Decomposition, RhsType > >::Scalar
internal::traits< Solve< Decomposition, RhsType > >::Scalar Scalar
Definition: DenseBase.h:66
RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: common.h:85
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::InnerIterator::incrementToNonZero
void incrementToNonZero()
Definition: SparseView.h:115
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:61
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::m_argImpl
evaluator< ArgType > m_argImpl
Definition: SparseView.h:201
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::unary_evaluator
unary_evaluator(const XprType &xpr)
Definition: SparseView.h:198
Eigen::internal::traits< SparseView< MatrixType > >::StorageKind
Sparse StorageKind
Definition: SparseView.h:22
Eigen::SparseView::nestedExpression
const internal::remove_all< MatrixTypeNested >::type & nestedExpression() const
Definition: SparseView.h:66
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::MatrixBase::sparseView
const SparseView< Derived > sparseView(const Scalar &m_reference=Scalar(0), const typename NumTraits< Scalar >::Real &m_epsilon=NumTraits< Scalar >::dummy_precision()) const
Definition: SparseView.h:225
Eigen::internal::isMuchSmallerThan
EIGEN_DEVICE_FUNC bool isMuchSmallerThan(const Scalar &x, const OtherScalar &y, const typename NumTraits< Scalar >::Real &precision=NumTraits< Scalar >::dummy_precision())
Definition: Eigen/src/Core/MathFunctions.h:1354
Eigen::internal::evaluator_base
Definition: CoreEvaluators.h:109
Eigen::SparseView::rows
Index rows() const
Definition: SparseView.h:58
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::col
Index col() const
Definition: SparseView.h:173
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::InnerIterator::Scalar
XprType::Scalar Scalar
Definition: SparseView.h:93
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::row
Index row() const
Definition: SparseView.h:172
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::StorageIndex
XprType::StorageIndex StorageIndex
Definition: SparseView.h:145
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseView.h:102
Eigen::SparseView::outerSize
Index outerSize() const
Definition: SparseView.h:62
Eigen::SparseView::m_reference
Scalar m_reference
Definition: SparseView.h:73
EIGEN_SPARSE_PUBLIC_INTERFACE
#define EIGEN_SPARSE_PUBLIC_INTERFACE(Derived)
Definition: SparseUtil.h:43
Eigen::internal::traits< SparseView< MatrixType > >::StorageIndex
MatrixType::StorageIndex StorageIndex
Definition: SparseView.h:21
Eigen::SparseMatrixBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >::Scalar
internal::traits< Derived >::Scalar Scalar
Definition: SparseMatrixBase.h:31
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::unary_evaluator
unary_evaluator(const XprType &xpr)
Definition: SparseView.h:129
Eigen::SparseView::cols
Index cols() const
Definition: SparseView.h:59
EIGEN_STRONG_INLINE
#define EIGEN_STRONG_INLINE
Definition: Macros.h:494
Eigen::internal::IteratorBased
Definition: Constants.h:529
Eigen::SparseView::Base
SparseMatrixBase< SparseView > Base
Definition: SparseView.h:49
Eigen::SparseView::MatrixTypeNested
MatrixType::Nested MatrixTypeNested
Definition: SparseView.h:47
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::operator++
EIGEN_STRONG_INLINE InnerIterator & operator++()
Definition: SparseView.h:158
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::XprType
SparseView< ArgType > XprType
Definition: SparseView.h:141
Eigen::internal::evaluator
Definition: CoreEvaluators.h:90
Eigen::Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> >
Eigen::InnerIterator
An InnerIterator allows to loop over the element of any matrix expression.
Definition: CoreIterators.h:33
Eigen::SparseView::reference
Scalar reference() const
Definition: SparseView.h:68
int
return int(ret)+1
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::InnerIterator
EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator &sve, Index outer)
Definition: SparseView.h:152
Eigen::SparseView::m_matrix
MatrixTypeNested m_matrix
Definition: SparseView.h:72
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::EvalIterator
evaluator< ArgType >::InnerIterator EvalIterator
Definition: SparseView.h:87
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::unary_evaluator
Definition: CoreEvaluators.h:65
Eigen::SparseView
Expression of a dense or sparse matrix with zero or too small values removed.
Definition: ForwardDeclarations.h:126
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::index
EIGEN_STRONG_INLINE StorageIndex index() const
Definition: SparseView.h:171
Eigen::SparseMatrixBase
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:281
Eigen::internal::unary_evaluator< SparseView< ArgType >, IteratorBased >::XprType
SparseView< ArgType > XprType
Definition: SparseView.h:89
Eigen::SparseMatrixBase< CwiseBinaryOp< BinaryOp, Lhs, Rhs > >::RealScalar
NumTraits< Scalar >::Real RealScalar
Definition: SparseMatrixBase.h:123
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::m_outer
const Index m_outer
Definition: SparseView.h:180
internal
Definition: BandTriangularSolver.h:13
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::Scalar
XprType::Scalar Scalar
Definition: SparseView.h:144
Eigen::internal::IndexBased
Definition: Constants.h:526
Eigen::SparseView::NestedExpression
internal::remove_all< MatrixType >::type NestedExpression
Definition: SparseView.h:52
Eigen::NumTraits
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
Definition: NumTraits.h:150
Eigen::SparseView::epsilon
RealScalar epsilon() const
Definition: SparseView.h:69
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::incrementToNonZero
void incrementToNonZero()
Definition: SparseView.h:184
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::m_view
const XprType & m_view
Definition: SparseView.h:202
Eigen::SparseMatrixBase::pruned
const SparseView< Derived > pruned(const Scalar &reference=Scalar(0), const RealScalar &epsilon=NumTraits< Scalar >::dummy_precision()) const
Definition: SparseView.h:245
mat
else mat
Definition: eigenvalues.cpp:43
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::m_sve
const unary_evaluator & m_sve
Definition: SparseView.h:178
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33
Eigen::internal::unary_evaluator< SparseView< ArgType >, IndexBased >::InnerIterator::m_end
const Index m_end
Definition: SparseView.h:181


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:27