Eigen  3.4.90 (git rev 5a9f66fb35d03a4da9ef8976e67a61b30aa16dcf)
 
Loading...
Searching...
No Matches
ReturnByValue.h
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2009-2010 Gael Guennebaud <[email protected]>
5// Copyright (C) 2009-2010 Benoit Jacob <[email protected]>
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
17namespace Eigen {
18
19namespace internal {
20
21template <typename Derived>
22struct 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.
27 Flags = (traits<typename traits<Derived>::ReturnType>::Flags | EvalBeforeNestingBit) & ~DirectAccessBit
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 */
38template <typename Derived, int n, typename PlainObject>
39struct nested_eval<ReturnByValue<Derived>, n, PlainObject> {
40 typedef typename traits<Derived>::ReturnType type;
41};
42
43} // end namespace internal
44
49template <typename Derived>
50class ReturnByValue : public internal::dense_xpr_base<ReturnByValue<Derived> >::type, internal::no_assignment_operator {
51 public:
52 typedef typename internal::traits<Derived>::ReturnType ReturnType;
53
54 typedef typename internal::dense_xpr_base<ReturnByValue>::type Base;
55 EIGEN_DENSE_PUBLIC_INTERFACE(ReturnByValue)
56
57 template <typename Dest>
58 EIGEN_DEVICE_FUNC inline void evalTo(Dest& dst) const {
59 static_cast<const Derived*>(this)->evalTo(dst);
60 }
61 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR inline Index rows() const EIGEN_NOEXCEPT {
62 return static_cast<const Derived*>(this)->rows();
63 }
64 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR inline Index cols() const EIGEN_NOEXCEPT {
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
83template <typename Derived>
84template <typename OtherDerived>
85EIGEN_DEVICE_FUNC Derived& DenseBase<Derived>::operator=(const ReturnByValue<OtherDerived>& other) {
86 other.evalTo(derived());
87 return derived();
88}
89
90namespace 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
96template <typename Derived>
97struct evaluator<ReturnByValue<Derived> > : public evaluator<typename internal::traits<Derived>::ReturnType> {
98 typedef ReturnByValue<Derived> XprType;
99 typedef typename internal::traits<Derived>::ReturnType PlainObject;
100 typedef evaluator<PlainObject> Base;
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:
108 PlainObject m_result;
109};
110
111} // end namespace internal
112
113} // end namespace Eigen
114
115#endif // EIGEN_RETURNBYVALUE_H
const unsigned int EvalBeforeNestingBit
Definition Constants.h:74
Namespace containing all symbols from the Eigen library.
Definition Core:137