11#ifndef EIGEN_RETURNBYVALUE_H
12#define EIGEN_RETURNBYVALUE_H
15#include "./InternalHeaderCheck.h"
21template <
typename Derived>
22struct traits<ReturnByValue<Derived> > :
public traits<typename traits<Derived>::ReturnType> {
27 Flags = (traits<typename traits<Derived>::ReturnType>::Flags |
EvalBeforeNestingBit) & ~DirectAccessBit
38template <
typename Derived,
int n,
typename PlainObject>
39struct nested_eval<ReturnByValue<Derived>, n, PlainObject> {
40 typedef typename traits<Derived>::ReturnType type;
49template <
typename Derived>
50class ReturnByValue :
public internal::dense_xpr_base<ReturnByValue<Derived> >::type, internal::no_assignment_operator {
52 typedef typename internal::traits<Derived>::ReturnType ReturnType;
54 typedef typename internal::dense_xpr_base<ReturnByValue>::type Base;
55 EIGEN_DENSE_PUBLIC_INTERFACE(ReturnByValue)
57 template <
typename Dest>
58 EIGEN_DEVICE_FUNC
inline void evalTo(Dest& dst)
const {
59 static_cast<const Derived*
>(
this)->evalTo(dst);
61 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR
inline Index rows() const EIGEN_NOEXCEPT {
62 return static_cast<const Derived*
>(
this)->rows();
64 EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR
inline Index cols() const EIGEN_NOEXCEPT {
65 return static_cast<const Derived*
>(
this)->cols();
68#ifndef EIGEN_PARSED_BY_DOXYGEN
70 YOU_ARE_TRYING_TO_ACCESS_A_SINGLE_COEFFICIENT_IN_A_SPECIAL_EXPRESSION_WHERE_THAT_IS_NOT_ALLOWED_BECAUSE_THAT_WOULD_BE_INEFFICIENT
72 Unusable(
const Unusable&) {}
73 Unusable& operator=(
const Unusable&) {
return *
this; }
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); }
83template <
typename Derived>
84template <
typename OtherDerived>
85EIGEN_DEVICE_FUNC Derived& DenseBase<Derived>::operator=(
const ReturnByValue<OtherDerived>& other) {
86 other.evalTo(derived());
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;
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);
108 PlainObject m_result;
const unsigned int EvalBeforeNestingBit
Definition Constants.h:74
Namespace containing all symbols from the Eigen library.
Definition Core:137