Check whether the first argument is less than the second one. Uses relative comparison of float values.
You can find more information in comments below.
template<class TYPE, class FLOAT>
bool Less(const TYPE a, const TYPE b, const FLOAT relative_tolerance); // Check whether the first argument is less than the second one. Uses relative comparison of float values
template<class TYPE>
bool Less(const TYPE a, const TYPE b, const TYPE relative_tolerance); // Check whether the first argument is less than the second one. Uses relative comparison of float values
Namespace: | ntl |
Include: | NTL/Core/Utils.h |