35#ifndef _BLAZE_MATH_SHIMS_GREATER_H_
36#define _BLAZE_MATH_SHIMS_GREATER_H_
69 noexcept( IsBuiltin_v<T> )
93 return ( b - a ) > 1E-8F;
115 return ( b - a ) > 1E-8;
137 return ( b - a ) > 1E-10L;
155template<
typename T1,
typename T2 >
157 noexcept( IsBuiltin_v< CommonType_t<T1,T2> > )
159 return greater_backend< CommonType_t<T1,T2> >( a, b );
Header file for the CommonType type trait.
Header file for the IsBuiltin type trait.
BLAZE_ALWAYS_INLINE constexpr bool greater(const T1 &a, const T2 &b) noexcept(IsBuiltin_v< CommonType_t< T1, T2 > >)
Generic greater-than comparison.
Definition: Greater.h:156
#define BLAZE_ALWAYS_INLINE
Platform dependent setup of an enforced inline keyword.
Definition: Inline.h:85
System settings for the inline keywords.