MOAB
4.9.3pre
|
#include <BinaryFunctors.h>
Public Types | |
typedef scalar_product_traits < Scalar1, Scalar2 > ::ReturnType | result_type |
Public Member Functions | |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE | scalar_quotient2_op (const scalar_quotient2_op &other) |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE | scalar_quotient2_op (const Scalar2 &other) |
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE result_type | operator() (const Scalar1 &a) const |
Public Attributes | |
add_const_on_value_type < typename NumTraits< Scalar2 > ::Nested >::type | m_other |
Definition at line 411 of file BinaryFunctors.h.
typedef scalar_product_traits<Scalar1,Scalar2>::ReturnType Eigen::internal::scalar_quotient2_op< Scalar1, Scalar2 >::result_type |
Definition at line 412 of file BinaryFunctors.h.
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Eigen::internal::scalar_quotient2_op< Scalar1, Scalar2 >::scalar_quotient2_op | ( | const scalar_quotient2_op< Scalar1, Scalar2 > & | other | ) | [inline] |
Definition at line 413 of file BinaryFunctors.h.
: m_other(other.m_other) { }
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Eigen::internal::scalar_quotient2_op< Scalar1, Scalar2 >::scalar_quotient2_op | ( | const Scalar2 & | other | ) | [inline] |
Definition at line 414 of file BinaryFunctors.h.
: m_other(other) { }
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE result_type Eigen::internal::scalar_quotient2_op< Scalar1, Scalar2 >::operator() | ( | const Scalar1 & | a | ) | const [inline] |
Definition at line 415 of file BinaryFunctors.h.
{ return a / m_other; }
add_const_on_value_type<typename NumTraits<Scalar2>::Nested>::type Eigen::internal::scalar_quotient2_op< Scalar1, Scalar2 >::m_other |
Definition at line 416 of file BinaryFunctors.h.