|
MOAB
4.9.3pre
|
Template functor to compute the min of two scalars. More...
#include <BinaryFunctors.h>
Public Member Functions | |
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar | operator() (const Scalar &a, const Scalar &b) const |
| template<typename Packet > | |
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet | packetOp (const Packet &a, const Packet &b) const |
| template<typename Packet > | |
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar | predux (const Packet &a) const |
Template functor to compute the min of two scalars.
Definition at line 116 of file BinaryFunctors.h.
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::scalar_min_op< Scalar >::operator() | ( | const Scalar & | a, |
| const Scalar & | b | ||
| ) | const [inline] |
Definition at line 118 of file BinaryFunctors.h.
{ return numext::mini(a, b); }
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Packet Eigen::internal::scalar_min_op< Scalar >::packetOp | ( | const Packet & | a, |
| const Packet & | b | ||
| ) | const [inline] |
Definition at line 120 of file BinaryFunctors.h.
{ return internal::pmin(a,b); }
| EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar Eigen::internal::scalar_min_op< Scalar >::predux | ( | const Packet & | a | ) | const [inline] |
Definition at line 123 of file BinaryFunctors.h.
{ return internal::predux_min(a); }