Inverse.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) 2014 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_INVERSE_H
11 #define EIGEN_INVERSE_H
12 
13 namespace Eigen {
14 
15 template<typename XprType,typename StorageKind> class InverseImpl;
16 
17 namespace internal {
18 
19 template<typename XprType>
20 struct traits<Inverse<XprType> >
21  : traits<typename XprType::PlainObject>
22 {
23  typedef typename XprType::PlainObject PlainObject;
25  enum {
26  Flags = BaseTraits::Flags & RowMajorBit
27  };
28 };
29 
30 } // end namespace internal
31 
42 template<typename XprType>
43 class Inverse : public InverseImpl<XprType,typename internal::traits<XprType>::StorageKind>
44 {
45 public:
46  typedef typename XprType::StorageIndex StorageIndex;
47  typedef typename XprType::PlainObject PlainObject;
48  typedef typename XprType::Scalar Scalar;
53 
54  explicit EIGEN_DEVICE_FUNC Inverse(const XprType &xpr)
55  : m_xpr(xpr)
56  {}
57 
58  EIGEN_DEVICE_FUNC Index rows() const { return m_xpr.rows(); }
59  EIGEN_DEVICE_FUNC Index cols() const { return m_xpr.cols(); }
60 
61  EIGEN_DEVICE_FUNC const XprTypeNestedCleaned& nestedExpression() const { return m_xpr; }
62 
63 protected:
65 };
66 
67 // Generic API dispatcher
68 template<typename XprType, typename StorageKind>
69 class InverseImpl
70  : public internal::generic_xpr_base<Inverse<XprType> >::type
71 {
72 public:
74  typedef typename XprType::Scalar Scalar;
75 private:
76 
77  Scalar coeff(Index row, Index col) const;
78  Scalar coeff(Index i) const;
79 };
80 
81 namespace internal {
82 
93 template<typename ArgType>
94 struct unary_evaluator<Inverse<ArgType> >
95  : public evaluator<typename Inverse<ArgType>::PlainObject>
96 {
100 
101  enum { Flags = Base::Flags | EvalBeforeNestingBit };
102 
103  unary_evaluator(const InverseType& inv_xpr)
104  : m_result(inv_xpr.rows(), inv_xpr.cols())
105  {
106  ::new (static_cast<Base*>(this)) Base(m_result);
107  internal::call_assignment_no_alias(m_result, inv_xpr);
108  }
109 
110 protected:
112 };
113 
114 } // end namespace internal
115 
116 } // end namespace Eigen
117 
118 #endif // EIGEN_INVERSE_H
Eigen::Inverse
Expression of the inverse of another expression.
Definition: Inverse.h:43
Eigen
Definition: common.h:73
Eigen::internal::unary_evaluator< Inverse< ArgType > >::unary_evaluator
unary_evaluator(const InverseType &inv_xpr)
Definition: Inverse.h:103
Eigen::internal::traits< Inverse< XprType > >::BaseTraits
traits< PlainObject > BaseTraits
Definition: Inverse.h:24
Eigen::Inverse::PlainObject
XprType::PlainObject PlainObject
Definition: Inverse.h:47
Eigen::Inverse::XprTypeNestedCleaned
internal::remove_all< XprTypeNested >::type XprTypeNestedCleaned
Definition: Inverse.h:50
col
EIGEN_DEVICE_FUNC ColXpr col(Index i)
This is the const version of col().
Definition: BlockMethods.h:838
Eigen::RowMajorBit
const unsigned int RowMajorBit
Definition: Constants.h:61
Eigen::internal::remove_all::type
T type
Definition: Meta.h:78
Scalar
SCALAR Scalar
Definition: common.h:84
Eigen::Inverse::Scalar
XprType::Scalar Scalar
Definition: Inverse.h:48
Eigen::internal::call_assignment_no_alias
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void call_assignment_no_alias(Dst &dst, const Src &src, const Func &func)
Definition: AssignEvaluator.h:819
Eigen::Inverse::XprTypeNested
internal::ref_selector< XprType >::type XprTypeNested
Definition: Inverse.h:49
Eigen::InverseImpl
Definition: Inverse.h:15
Eigen::Inverse::Nested
internal::ref_selector< Inverse >::type Nested
Definition: Inverse.h:51
Eigen::internal::true_type
Definition: Meta.h:54
Eigen::InverseImpl::Scalar
XprType::Scalar Scalar
Definition: Inverse.h:74
Eigen::Inverse::StorageIndex
XprType::StorageIndex StorageIndex
Definition: Inverse.h:46
Eigen::internal::generic_xpr_base
Definition: XprHelper.h:481
Eigen::internal::unary_evaluator< Inverse< ArgType > >::m_result
PlainObject m_result
Definition: Inverse.h:111
row
EIGEN_DEVICE_FUNC RowXpr row(Index i)
This is the const version of row(). *‍/.
Definition: BlockMethods.h:859
Eigen::Inverse::nestedExpression
const EIGEN_DEVICE_FUNC XprTypeNestedCleaned & nestedExpression() const
Definition: Inverse.h:61
Eigen::Inverse::Inverse
EIGEN_DEVICE_FUNC Inverse(const XprType &xpr)
Definition: Inverse.h:54
Eigen::internal::evaluator
Definition: CoreEvaluators.h:90
Eigen::internal::unary_evaluator< Inverse< ArgType > >::PlainObject
InverseType::PlainObject PlainObject
Definition: Inverse.h:98
Eigen::Inverse::m_xpr
XprTypeNested m_xpr
Definition: Inverse.h:64
Eigen::Inverse::cols
EIGEN_DEVICE_FUNC Index cols() const
Definition: Inverse.h:59
Eigen::InverseImpl::coeff
Scalar coeff(Index row, Index col) const
Eigen::internal::traits
Definition: ForwardDeclarations.h:17
Eigen::internal::unary_evaluator< Inverse< ArgType > >::Base
evaluator< PlainObject > Base
Definition: Inverse.h:99
Eigen::InverseImpl::Base
internal::generic_xpr_base< Inverse< XprType > >::type Base
Definition: Inverse.h:73
Eigen::internal::unary_evaluator
Definition: CoreEvaluators.h:65
Eigen::internal::unary_evaluator< Inverse< ArgType > >::InverseType
Inverse< ArgType > InverseType
Definition: Inverse.h:97
internal
Definition: BandTriangularSolver.h:13
Eigen::Inverse::NestedExpression
internal::remove_all< XprType >::type NestedExpression
Definition: Inverse.h:52
Eigen::internal::traits< Inverse< XprType > >::PlainObject
XprType::PlainObject PlainObject
Definition: Inverse.h:23
Eigen::EvalBeforeNestingBit
const unsigned int EvalBeforeNestingBit
Definition: Constants.h:65
Eigen::Inverse::rows
EIGEN_DEVICE_FUNC Index rows() const
Definition: Inverse.h:58
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:33


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