Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
Gigg, Martyn Anthony
committed
//-----------------------------------------------------------------------------
// Includes
//-----------------------------------------------------------------------------
#include "MantidKernel/FloatingPointComparison.h"
Gigg, Martyn Anthony
committed
#include <cmath>
Gigg, Martyn Anthony
committed
namespace Mantid {
namespace Kernel {
Gigg, Martyn Anthony
committed
/**
* Compare floating point numbers for equality to within
* std::numeric_limits<TYPE>::epsilon precision
* @param x :: LHS comparator
* @param y :: RHS comparator
* @returns True if the numbers are considered equal within the given tolerance,
* false otherwise
*/
template <typename TYPE> bool equals(const TYPE x, const TYPE y) {
return !(std::fabs(x - y) > std::numeric_limits<TYPE>::epsilon());
}
Gigg, Martyn Anthony
committed
/**
* Compare two floating-point numbers as to whether they satisfy x<=y within
* machine precision
* @param x :: LHS comparator
* @param y :: RHS comparator
* @returns True if the numbers are considered <= within the machine tolerance,
* false otherwise
*/
template <typename T> MANTID_KERNEL_DLL bool ltEquals(const T x, const T y) {
return (equals(x, y) || x < y);
}
Gigg, Martyn Anthony
committed
/**
* Compare two floating-point numbers as to whether they satisfy x>=y within
* machine precision
* @param x :: LHS comparator
* @param y :: RHS comparator
* @returns True if the numbers are considered <= within the machine tolerance,
* false otherwise
*/
template <typename T> MANTID_KERNEL_DLL bool gtEquals(const T x, const T y) {
return (equals(x, y) || x > y);
Gigg, Martyn Anthony
committed
}
///@cond
// Concrete instantiations
template DLLExport bool equals<double>(const double, const double);
template DLLExport bool equals<float>(const float, const float);
template DLLExport bool ltEquals<double>(const double, const double);
template DLLExport bool ltEquals<float>(const float, const float);
template DLLExport bool gtEquals<double>(const double, const double);
template DLLExport bool gtEquals<float>(const float, const float);
///@endcond