Go to the documentation of this file.
10 #ifndef EIGEN_AUTODIFF_SCALAR_H
11 #define EIGEN_AUTODIFF_SCALAR_H
17 template<
typename A,
typename B>
23 template<
typename A,
typename B>
35 template<
typename NewDerType>
66 template<
typename _DerType>
68 :
public internal::auto_diff_special_op
69 <_DerType, !internal::is_same<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar,
70 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value>
73 typedef internal::auto_diff_special_op
74 <_DerType, !internal::is_same<typename internal::traits<typename internal::remove_all<_DerType>::type>
::Scalar,
80 using Base::operator+;
81 using Base::operator*;
108 template<
typename OtherDerType>
110 #ifndef EIGEN_PARSED_BY_DOXYGEN
121 return s <<
a.value();
128 template<
typename OtherDerType>
207 template<
typename OtherDerType>
217 template<
typename OtherDerType>
221 (*this) = (*this) + other;
234 (
a -
b.value(), -
b.derivatives());
243 template<
typename OtherDerType>
253 template<
typename OtherDerType>
257 *
this = *
this - other;
325 template<
typename OtherDerType>
336 * (
Scalar(1)/(other.value()*other.value())));
339 template<
typename OtherDerType>
353 *
this = *
this * other;
357 template<
typename OtherDerType>
360 *
this = *
this * other;
366 *
this = *
this / other;
370 template<
typename OtherDerType>
373 *
this = *
this / other;
385 template<
typename _DerType>
420 derived().value() += other;
429 derived().value() * other,
430 derived().derivatives() * other);
438 a.derivatives() * other);
443 *
this = *
this * other;
448 template<
typename _DerType>
456 template<
typename A_Scalar,
int A_Rows,
int A_Cols,
int A_Options,
int A_MaxRows,
int A_MaxCols,
typename B>
468 template<
typename A,
typename B_Scalar,
int B_Rows,
int B_Cols,
int B_Options,
int B_MaxRows,
int B_MaxCols>
480 template<
typename A_Scalar,
int A_Rows,
int A_Cols,
int A_Options,
int A_MaxRows,
int A_MaxCols,
481 typename B_Scalar,
int B_Rows,
int B_Cols,
int B_Options,
int B_MaxRows,
int B_MaxCols>
483 Matrix<B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols> > {
502 template<
typename DerType,
typename BinOp>
508 template<
typename DerType,
typename BinOp>
531 #define EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(FUNC,CODE) \
532 template<typename DerType> \
533 inline const Eigen::AutoDiffScalar< \
534 EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(typename Eigen::internal::remove_all<DerType>::type, typename Eigen::internal::traits<typename Eigen::internal::remove_all<DerType>::type>::Scalar, product) > \
535 FUNC(const Eigen::AutoDiffScalar<DerType>& x) { \
536 using namespace Eigen; \
537 typedef typename Eigen::internal::traits<typename Eigen::internal::remove_all<DerType>::type>::Scalar Scalar; \
538 EIGEN_UNUSED_VARIABLE(sizeof(Scalar)); \
542 template<
typename DerType>
544 template<
typename DerType>
546 template<
typename DerType>
548 template<
typename DerType,
typename T>
551 return (
x <=
y ? ADS(
x) : ADS(
y));
553 template<
typename DerType,
typename T>
554 inline AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> (
max)(
const AutoDiffScalar<DerType>&
x,
const T&
y) {
555 typedef AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> ADS;
556 return (
x >=
y ? ADS(
x) : ADS(
y));
558 template<
typename DerType,
typename T>
559 inline AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> (
min)(
const T&
x,
const AutoDiffScalar<DerType>&
y) {
560 typedef AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> ADS;
561 return (
x <
y ? ADS(
x) : ADS(
y));
563 template<
typename DerType,
typename T>
564 inline AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> (
max)(
const T&
x,
const AutoDiffScalar<DerType>&
y) {
565 typedef AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> ADS;
566 return (
x >
y ? ADS(
x) : ADS(
y));
568 template<
typename DerType>
569 inline AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> (
min)(
const AutoDiffScalar<DerType>&
x,
const AutoDiffScalar<DerType>&
y) {
570 return (
x.value() <
y.value() ?
x :
y);
572 template<
typename DerType>
573 inline AutoDiffScalar<typename Eigen::internal::remove_all<DerType>::type::PlainObject> (
max)(
const AutoDiffScalar<DerType>&
x,
const AutoDiffScalar<DerType>&
y) {
574 return (
x.value() >=
y.value() ?
x :
y);
610 template<typename DerType>
615 using namespace Eigen;
621 template<
typename DerTypeA,
typename DerTypeB>
631 Scalar squared_hypot =
a.value() *
a.value() +
b.value() *
b.value();
634 ret.derivatives() = (
a.derivatives() *
b.value() -
a.value() *
b.derivatives()) / squared_hypot;
676 0, DerTypeCleaned::MaxRowsAtCompileTime, DerTypeCleaned::MaxColsAtCompileTime> >
Real;
681 RequireInitialization = 1
688 template <
typename T>
690 :
public numeric_limits<typename T::Scalar> {};
694 #endif // EIGEN_AUTODIFF_SCALAR_H
const AutoDiffScalar< DerType & > operator+(const Real &other) const
const AutoDiffScalar< DerType > & conj(const AutoDiffScalar< DerType > &x)
const AutoDiffScalar< CwiseUnaryOp< internal::scalar_opposite_op< Scalar >, const DerType > > operator-() const
const EIGEN_DEVICE_FUNC SqrtReturnType sqrt() const
const EIGEN_DEVICE_FUNC SinReturnType sin() const
internal::remove_all< _DerType >::type DerType
const AutoDiffScalar< Matrix< typename internal::traits< typename internal::remove_all< DerTypeA >::type >::Scalar, Dynamic, 1 > > atan2(const AutoDiffScalar< DerTypeA > &a, const AutoDiffScalar< DerTypeB > &b)
A scalar type replacement with automatic differentation capability.
Generic expression where a coefficient-wise binary operator is applied to two expressions.
Matrix< A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols > A
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half pow(const half &a, const half &b)
Eigen::internal::make_coherent_impl< Matrix< A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols >, Matrix< B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols > >::run static void run(A &a, B &b)
AutoDiffScalar(const AutoDiffScalar< OtherDerType > &other, typename internal::enable_if< internal::is_same< Scalar, typename internal::traits< typename internal::remove_all< OtherDerType >::type >::Scalar >::value &&internal::is_convertible< OtherDerType, DerType >::value, void * >::type=0)
const friend AutoDiffScalar< DerType & > operator+(const Real &a, const AutoDiffScalar< _DerType > &b)
bool operator!=(const Scalar &other) const
const AutoDiffScalar< CwiseBinaryOp< internal::scalar_sum_op< Scalar >, const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product), const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(typename internal::remove_all< OtherDerType >::type, Scalar, product) > > operator*(const AutoDiffScalar< OtherDerType > &other) const
AutoDiffScalar & operator/=(const Scalar &other)
bool operator<=(const Scalar &other) const
AutoDiffScalar< Matrix< typename NumTraits< typename DerTypeCleaned::Scalar >::Real, DerTypeCleaned::RowsAtCompileTime, DerTypeCleaned::ColsAtCompileTime, 0, DerTypeCleaned::MaxRowsAtCompileTime, DerTypeCleaned::MaxColsAtCompileTime > > Real
const AutoDiffScalar< CwiseBinaryOp< internal::scalar_difference_op< Scalar >, const DerType, const typename internal::remove_all< OtherDerType >::type > > operator-(const AutoDiffScalar< OtherDerType > &other) const
const DerType & derivatives() const
AutoDiffScalar & operator+=(const Scalar &other)
internal::traits< DerType >::Scalar Scalar
const EIGEN_DEVICE_FUNC LogReturnType log() const
Determines whether the given binary operation of two numeric types is allowed and what the scalar ret...
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE Abs2ReturnType abs2() const
traits< DerType >::Scalar Scalar
bool operator>=(const AutoDiffScalar< OtherDerType > &b) const
const AutoDiffScalar< CwiseBinaryOp< internal::scalar_sum_op< Scalar >, const DerType, const typename internal::remove_all< OtherDerType >::type > > operator+(const AutoDiffScalar< OtherDerType > &other) const
friend std::ostream & operator<<(std::ostream &s, const AutoDiffScalar &a)
AutoDiffScalar< DerType > NonInteger
const EIGEN_DEVICE_FUNC AsinReturnType asin() const
const EIGEN_DEVICE_FUNC ExpReturnType exp() const
internal::remove_all< DerType >::type DerTypeCleaned
Eigen::internal::make_coherent_impl< Matrix< A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols >, Matrix< B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols > >::A Matrix< A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols > A
AutoDiffScalar & operator+=(const AutoDiffScalar< OtherDerType > &other)
AutoDiffScalar< NewDerType > MakeAutoDiffScalar(const typename NewDerType::Scalar &value, const NewDerType &der)
const AutoDiffScalar< _DerType > & derived() const
const AutoDiffScalar< DerType & > operator-(const Scalar &b) const
friend bool operator!=(const Scalar &a, const AutoDiffScalar &b)
bool operator>(const Scalar &other) const
bool operator<=(const AutoDiffScalar< OtherDerType > &b) const
AutoDiffScalar & operator=(const Scalar &other)
const EIGEN_DEVICE_FUNC CoshReturnType cosh() const
const AutoDiffScalar< DerType & > operator+(const Scalar &other) const
const friend AutoDiffScalar< EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product) > operator/(const Scalar &other, const AutoDiffScalar &a)
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
bool operator==(const AutoDiffScalar< OtherDerType > &b) const
AutoDiffScalar & operator-=(const AutoDiffScalar< OtherDerType > &other)
const Scalar & value() const
MatrixType B(b, *n, *nrhs, *ldb)
AutoDiffScalar(const Real &value)
AutoDiffScalar(const Scalar &value, const DerType &der)
const friend AutoDiffScalar< CwiseUnaryOp< internal::scalar_opposite_op< Scalar >, const DerType > > operator-(const Scalar &a, const AutoDiffScalar &b)
const AutoDiffScalar< typename CwiseUnaryOp< bind2nd_op< scalar_product_op< Scalar, Real > >, DerType >::Type > operator*(const Real &other) const
AutoDiffScalar & operator-=(const Scalar &other)
NumTraits< typename DerTypeCleaned::Scalar >::Literal Literal
bool operator<(const Scalar &other) const
const EIGEN_DEVICE_FUNC TanReturnType tan() const
const EIGEN_DEVICE_FUNC AcosReturnType acos() const
const friend AutoDiffScalar< EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product) > operator*(const Scalar &other, const AutoDiffScalar &a)
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorUInt128< uint64_t, uint64_t > operator*(const TensorUInt128< HL, LL > &lhs, const TensorUInt128< HR, LR > &rhs)
NumTraits< Scalar >::Real Real
AutoDiffScalar< _DerType > & operator*=(const Scalar &other)
bool operator!=(const AutoDiffScalar< OtherDerType > &b) const
friend bool operator==(const Scalar &a, const AutoDiffScalar &b)
EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(abs, using std::abs;return Eigen::MakeAutoDiffScalar(abs(x.value()), x.derivatives() *(x.value()< 0 ? -1 :1));) EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(abs2
const AutoDiffScalar< EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product) > operator*(const Scalar &other) const
bool operator>=(const Scalar &other) const
AutoDiffScalar & operator*=(const Scalar &other)
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE TensorUInt128< uint64_t, uint64_t > operator-(const TensorUInt128< HL, LL > &lhs, const TensorUInt128< HR, LR > &rhs)
const AutoDiffScalar< DerType > & real(const AutoDiffScalar< DerType > &x)
const friend AutoDiffScalar< DerType & > operator+(const Scalar &a, const AutoDiffScalar &b)
AutoDiffScalar(const Scalar &value, int nbDer, int derNumber)
const EIGEN_DEVICE_FUNC TanhReturnType tanh() const
DerType::Scalar imag(const AutoDiffScalar< DerType > &)
AutoDiffScalar & operator=(const AutoDiffScalar &other)
friend bool operator<=(const Scalar &a, const AutoDiffScalar &b)
NumTraits< Scalar >::Real Real
void make_coherent(const A &a, const B &b)
internal::auto_diff_special_op< _DerType, !internal::is_same< typename internal::traits< typename internal::remove_all< _DerType >::type >::Scalar, typename NumTraits< typename internal::traits< typename internal::remove_all< _DerType >::type >::Scalar >::Real >::value > Base
AutoDiffScalar< DerType > ReturnType
AutoDiffScalar & operator*=(const AutoDiffScalar< OtherDerType > &other)
AutoDiffScalar(const AutoDiffScalar &other)
AutoDiffScalar< DerType > Nested
bool operator==(const Scalar &other) const
AutoDiffScalar< _DerType > & derived()
EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE TensorUInt128< uint64_t, uint64_t > operator+(const TensorUInt128< HL, LL > &lhs, const TensorUInt128< HR, LR > &rhs)
The matrix class, also used for vectors and row-vectors.
const AutoDiffScalar< EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(CwiseBinaryOp< internal::scalar_difference_op< Scalar > EIGEN_COMMA const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product) EIGEN_COMMA const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(typename internal::remove_all< OtherDerType >::type, Scalar, product) >, Scalar, product) > operator/(const AutoDiffScalar< OtherDerType > &other) const
MatrixType A(a, *n, *n, *lda)
const AutoDiffScalar< EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(DerType, Scalar, product) > operator/(const Scalar &other) const
static void run(A &, B &)
const EIGEN_DEVICE_FUNC SinhReturnType sinh() const
const friend AutoDiffScalar< typename CwiseUnaryOp< bind1st_op< scalar_product_op< Real, Scalar > >, DerType >::Type > operator*(const Real &other, const AutoDiffScalar< _DerType > &a)
Eigen::internal::make_coherent_impl< Matrix< A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols >, Matrix< B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols > >::B Matrix< B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols > B
AutoDiffScalar & operator/=(const AutoDiffScalar< OtherDerType > &other)
Matrix< B_Scalar, B_Rows, B_Cols, B_Options, B_MaxRows, B_MaxCols > B
const EIGEN_EXPR_BINARYOP_SCALAR_RETURN_TYPE(Derived, typename Derived::Scalar, pow) pow(const Eigen
AutoDiffScalar< _DerType > & operator+=(const Real &other)
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
AutoDiffScalar< DerType > ReturnType
static void run(A &a, B &b)
const EIGEN_DEVICE_FUNC CosReturnType cos() const
remove_all< _DerType >::type DerType
friend bool operator>=(const Scalar &a, const AutoDiffScalar &b)
static void run(A &a, B &b)
AutoDiffScalar & operator=(const AutoDiffScalar< OtherDerType > &other)
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:37