| 429 | |
| 430 | /** \internal \returns the floor of \a a (coeff-wise) */ |
| 431 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
| 432 | Packet pfloor(const Packet& a) { using numext::floor; return floor(a); } |
| 433 | |
| 434 | /** \internal \returns the ceil of \a a (coeff-wise) */ |
| 435 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
no test coverage detected