| 44 | /// Test whether \a x is negative |
| 45 | template<class View> |
| 46 | forceinline bool |
| 47 | neg(const View& x) { |
| 48 | return x.max() <= 0.0; |
| 49 | } |
| 50 | /// Test whether \a x is neither positive nor negative |
| 51 | template<class View> |
| 52 | forceinline bool |
no test coverage detected