2011-04-28 09:03:28 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 28/04/2011.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_APPROX_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_APPROX_HPP_INCLUDED
|
|
|
|
|
2014-04-23 07:51:58 +02:00
|
|
|
#include "catch_tostring.h"
|
2011-04-28 09:03:28 +02:00
|
|
|
|
|
|
|
#include <cmath>
|
2011-04-28 09:20:47 +02:00
|
|
|
#include <limits>
|
2011-04-28 09:03:28 +02:00
|
|
|
|
2017-01-26 18:47:29 +01:00
|
|
|
#if defined(CATCH_CONFIG_CPP11_TYPE_TRAITS)
|
2016-05-12 20:18:44 +02:00
|
|
|
#include <type_traits>
|
|
|
|
#endif
|
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
namespace Catch {
|
|
|
|
namespace Detail {
|
|
|
|
|
|
|
|
class Approx {
|
|
|
|
public:
|
|
|
|
explicit Approx ( double value )
|
|
|
|
: m_epsilon( std::numeric_limits<float>::epsilon()*100 ),
|
2015-11-12 15:07:20 +01:00
|
|
|
m_margin( 0.0 ),
|
2012-05-15 08:42:26 +02:00
|
|
|
m_scale( 1.0 ),
|
|
|
|
m_value( value )
|
|
|
|
{}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
Approx( Approx const& other )
|
2012-05-15 08:42:26 +02:00
|
|
|
: m_epsilon( other.m_epsilon ),
|
2015-11-12 15:07:20 +01:00
|
|
|
m_margin( other.m_margin ),
|
2012-05-15 08:42:26 +02:00
|
|
|
m_scale( other.m_scale ),
|
|
|
|
m_value( other.m_value )
|
|
|
|
{}
|
|
|
|
|
|
|
|
static Approx custom() {
|
|
|
|
return Approx( 0 );
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
Approx operator()( double value ) {
|
|
|
|
Approx approx( value );
|
|
|
|
approx.epsilon( m_epsilon );
|
2015-11-12 15:07:20 +01:00
|
|
|
approx.margin( m_margin );
|
2012-05-15 08:42:26 +02:00
|
|
|
approx.scale( m_scale );
|
|
|
|
return approx;
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-01-26 18:47:29 +01:00
|
|
|
#if defined(CATCH_CONFIG_CPP11_TYPE_TRAITS)
|
2016-05-12 20:18:44 +02:00
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator == ( const T& lhs, Approx const& rhs ) {
|
|
|
|
// Thanks to Richard Harris for his help refining this formula
|
|
|
|
auto lhs_v = double(lhs);
|
2017-02-27 13:12:13 +01:00
|
|
|
bool relativeOK = std::fabs(lhs_v - rhs.m_value) < rhs.m_epsilon * (rhs.m_scale + (std::max)(std::fabs(lhs_v), std::fabs(rhs.m_value)));
|
|
|
|
if (relativeOK) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return std::fabs(lhs_v - rhs.m_value) < rhs.m_margin;
|
2016-05-12 20:18:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator == ( Approx const& lhs, const T& rhs ) {
|
|
|
|
return operator==( rhs, lhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator != ( T lhs, Approx const& rhs ) {
|
|
|
|
return !operator==( lhs, rhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator != ( Approx const& lhs, T rhs ) {
|
|
|
|
return !operator==( rhs, lhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator <= ( T lhs, Approx const& rhs )
|
|
|
|
{
|
|
|
|
return double(lhs) < rhs.m_value || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator <= ( Approx const& lhs, T rhs )
|
|
|
|
{
|
|
|
|
return lhs.m_value < double(rhs) || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator >= ( T lhs, Approx const& rhs )
|
|
|
|
{
|
|
|
|
return double(lhs) > rhs.m_value || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
friend bool operator >= ( Approx const& lhs, T rhs )
|
|
|
|
{
|
|
|
|
return lhs.m_value > double(rhs) || lhs == rhs;
|
|
|
|
}
|
|
|
|
#else
|
2013-04-23 19:58:56 +02:00
|
|
|
friend bool operator == ( double lhs, Approx const& rhs ) {
|
2012-05-15 08:42:26 +02:00
|
|
|
// Thanks to Richard Harris for his help refining this formula
|
2017-02-27 13:12:13 +01:00
|
|
|
bool relativeOK = std::fabs( lhs - rhs.m_value ) < rhs.m_epsilon * (rhs.m_scale + (std::max)( std::fabs(lhs), std::fabs(rhs.m_value) ) );
|
|
|
|
if (relativeOK) {
|
2015-11-12 15:07:20 +01:00
|
|
|
return true;
|
|
|
|
}
|
2017-02-27 13:12:13 +01:00
|
|
|
return std::fabs(lhs - rhs.m_value) < rhs.m_margin;
|
2012-05-15 08:42:26 +02:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
friend bool operator == ( Approx const& lhs, double rhs ) {
|
2012-05-15 08:42:26 +02:00
|
|
|
return operator==( rhs, lhs );
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
friend bool operator != ( double lhs, Approx const& rhs ) {
|
2012-05-15 08:42:26 +02:00
|
|
|
return !operator==( lhs, rhs );
|
|
|
|
}
|
2011-06-06 09:21:21 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
friend bool operator != ( Approx const& lhs, double rhs ) {
|
2012-05-15 08:42:26 +02:00
|
|
|
return !operator==( rhs, lhs );
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2016-09-24 18:59:23 +02:00
|
|
|
friend bool operator <= ( double lhs, Approx const& rhs )
|
|
|
|
{
|
|
|
|
return lhs < rhs.m_value || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator <= ( Approx const& lhs, double rhs )
|
|
|
|
{
|
|
|
|
return lhs.m_value < rhs || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator >= ( double lhs, Approx const& rhs )
|
|
|
|
{
|
|
|
|
return lhs > rhs.m_value || lhs == rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator >= ( Approx const& lhs, double rhs )
|
|
|
|
{
|
|
|
|
return lhs.m_value > rhs || lhs == rhs;
|
|
|
|
}
|
2016-05-12 20:18:44 +02:00
|
|
|
#endif
|
2016-09-24 18:59:23 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
Approx& epsilon( double newEpsilon ) {
|
|
|
|
m_epsilon = newEpsilon;
|
|
|
|
return *this;
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-11-12 15:07:20 +01:00
|
|
|
Approx& margin( double newMargin ) {
|
|
|
|
m_margin = newMargin;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
Approx& scale( double newScale ) {
|
|
|
|
m_scale = newScale;
|
|
|
|
return *this;
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
std::string toString() const {
|
|
|
|
std::ostringstream oss;
|
2013-12-19 19:41:55 +01:00
|
|
|
oss << "Approx( " << Catch::toString( m_value ) << " )";
|
2012-05-15 08:42:26 +02:00
|
|
|
return oss.str();
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
private:
|
|
|
|
double m_epsilon;
|
2015-11-12 15:07:20 +01:00
|
|
|
double m_margin;
|
2012-05-15 08:42:26 +02:00
|
|
|
double m_scale;
|
|
|
|
double m_value;
|
|
|
|
};
|
|
|
|
}
|
2011-04-28 09:20:47 +02:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
template<>
|
2013-04-23 19:58:56 +02:00
|
|
|
inline std::string toString<Detail::Approx>( Detail::Approx const& value ) {
|
2012-05-15 08:42:26 +02:00
|
|
|
return value.toString();
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2011-04-28 09:03:28 +02:00
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_APPROX_HPP_INCLUDED
|