ReturnByValue.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) 2009-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2009-2010 Benoit Jacob <jacob.benoit.1@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_RETURNBYVALUE_H
12 #define EIGEN_RETURNBYVALUE_H
13 
14 // IWYU pragma: private
15 #include "./InternalHeaderCheck.h"
16 
17 namespace Eigen {
18 
19 namespace internal {
20 
21 template <typename Derived>
22 struct traits<ReturnByValue<Derived> > : public traits<typename traits<Derived>::ReturnType> {
23  enum {
24  // We're disabling the DirectAccess because e.g. the constructor of
25  // the Block-with-DirectAccess expression requires to have a coeffRef method.
26  // Also, we don't want to have to implement the stride stuff.
28  };
29 };
30 
31 /* The ReturnByValue object doesn't even have a coeff() method.
32  * So the only way that nesting it in an expression can work, is by evaluating it into a plain matrix.
33  * So internal::nested always gives the plain return matrix type.
34  *
35  * FIXME: I don't understand why we need this specialization: isn't this taken care of by the EvalBeforeNestingBit ??
36  * Answer: EvalBeforeNestingBit should be deprecated since we have the evaluators
37  */
38 template <typename Derived, int n, typename PlainObject>
39 struct nested_eval<ReturnByValue<Derived>, n, PlainObject> {
41 };
42 
43 } // end namespace internal
44 
49 template <typename Derived>
51  public:
53 
56 
57  template <typename Dest>
58  EIGEN_DEVICE_FUNC inline void evalTo(Dest& dst) const {
59  static_cast<const Derived*>(this)->evalTo(dst);
60  }
62  return static_cast<const Derived*>(this)->rows();
63  }
65  return static_cast<const Derived*>(this)->cols();
66  }
67 
68 #ifndef EIGEN_PARSED_BY_DOXYGEN
69 #define Unusable \
70  YOU_ARE_TRYING_TO_ACCESS_A_SINGLE_COEFFICIENT_IN_A_SPECIAL_EXPRESSION_WHERE_THAT_IS_NOT_ALLOWED_BECAUSE_THAT_WOULD_BE_INEFFICIENT
71  class Unusable {
72  Unusable(const Unusable&) {}
73  Unusable& operator=(const Unusable&) { return *this; }
74  };
75  const Unusable& coeff(Index) const { return *reinterpret_cast<const Unusable*>(this); }
76  const Unusable& coeff(Index, Index) const { return *reinterpret_cast<const Unusable*>(this); }
77  Unusable& coeffRef(Index) { return *reinterpret_cast<Unusable*>(this); }
78  Unusable& coeffRef(Index, Index) { return *reinterpret_cast<Unusable*>(this); }
79 #undef Unusable
80 #endif
81 };
82 
83 template <typename Derived>
84 template <typename OtherDerived>
86  other.evalTo(derived());
87  return derived();
88 }
89 
90 namespace internal {
91 
92 // Expression is evaluated in a temporary; default implementation of Assignment is bypassed so that
93 // when a ReturnByValue expression is assigned, the evaluator is not constructed.
94 // TODO: Finalize port to new regime; ReturnByValue should not exist in the expression world
95 
96 template <typename Derived>
97 struct evaluator<ReturnByValue<Derived> > : public evaluator<typename internal::traits<Derived>::ReturnType> {
101 
102  EIGEN_DEVICE_FUNC explicit evaluator(const XprType& xpr) : m_result(xpr.rows(), xpr.cols()) {
103  internal::construct_at<Base>(this, m_result);
104  xpr.evalTo(m_result);
105  }
106 
107  protected:
109 };
110 
111 } // end namespace internal
112 
113 } // end namespace Eigen
114 
115 #endif // EIGEN_RETURNBYVALUE_H
const unsigned n
Definition: CG3DPackingUnitTest.cpp:11
#define EIGEN_NOEXCEPT
Definition: Macros.h:1267
#define EIGEN_CONSTEXPR
Definition: Macros.h:758
#define EIGEN_DEVICE_FUNC
Definition: Macros.h:892
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
Definition: Macros.h:1171
int rows
Definition: Tutorial_commainit_02.cpp:1
int cols
Definition: Tutorial_commainit_02.cpp:1
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator=(const DenseBase< OtherDerived > &other)
Definition: Assign.h:39
Definition: ReturnByValue.h:71
Unusable(const Unusable &)
Definition: ReturnByValue.h:72
Unusable & operator=(const Unusable &)
Definition: ReturnByValue.h:73
Definition: ReturnByValue.h:50
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows() const EIGEN_NOEXCEPT
Definition: ReturnByValue.h:61
const Unusable & coeff(Index, Index) const
Definition: ReturnByValue.h:76
Unusable & coeffRef(Index, Index)
Definition: ReturnByValue.h:78
internal::dense_xpr_base< ReturnByValue >::type Base
Definition: ReturnByValue.h:54
internal::traits< Derived >::ReturnType ReturnType
Definition: ReturnByValue.h:52
Unusable & coeffRef(Index)
Definition: ReturnByValue.h:77
const Unusable & coeff(Index) const
Definition: ReturnByValue.h:75
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols() const EIGEN_NOEXCEPT
Definition: ReturnByValue.h:64
EIGEN_DEVICE_FUNC void evalTo(Dest &dst) const
Definition: ReturnByValue.h:58
Definition: XprHelper.h:134
const unsigned int EvalBeforeNestingBit
Definition: Constants.h:74
const unsigned int DirectAccessBit
Definition: Constants.h:159
Namespace containing all symbols from the Eigen library.
Definition: bench_norm.cpp:70
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:83
Extend namespace for flags.
Definition: fsi_chan_precond_driver.cc:56
type
Definition: compute_granudrum_aor.py:141
Definition: Eigen_Colamd.h:49
Definition: XprHelper.h:558
ReturnByValue< Derived > XprType
Definition: ReturnByValue.h:98
evaluator< PlainObject > Base
Definition: ReturnByValue.h:100
EIGEN_DEVICE_FUNC evaluator(const XprType &xpr)
Definition: ReturnByValue.h:102
PlainObject m_result
Definition: ReturnByValue.h:108
internal::traits< Derived >::ReturnType PlainObject
Definition: ReturnByValue.h:99
Definition: CoreEvaluators.h:104
traits< Derived >::ReturnType type
Definition: ReturnByValue.h:40
Definition: XprHelper.h:533
Definition: ForwardDeclarations.h:21