| 1142 | |
| 1143 | template <typename T> |
| 1144 | inline bool not_equal(const T& t0, const T& t1, |
| 1145 | const T& epsilon = T(0.0000000001)) |
| 1146 | { |
| 1147 | return not_equal_impl(t0,t1,epsilon); |
| 1148 | } |
| 1149 | |
| 1150 | inline bool not_equal(const float& t0, const float& t1, const float& epsilon = 0.000001f) |
| 1151 | { |
no test coverage detected