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
|
|
|
|
2016-05-12 20:18:44 +02:00
|
|
|
#include <type_traits>
|
|
|
|
|
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
|
|
|
|
2017-04-25 19:56:53 +02:00
|
|
|
Approx( Approx const& other ) = default;
|
2012-05-15 08:42:26 +02:00
|
|
|
|
|
|
|
static Approx custom() {
|
|
|
|
return Approx( 0 );
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-04-24 22:01:45 +02:00
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
Approx operator()( T value ) {
|
|
|
|
Approx approx( static_cast<double>(value) );
|
2012-05-15 08:42:26 +02:00
|
|
|
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-04-04 15:19:15 +02:00
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
explicit Approx( T value ): Approx(static_cast<double>(value))
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
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>
|
2017-04-04 15:19:15 +02:00
|
|
|
friend bool operator <= ( T lhs, Approx const& rhs ) {
|
|
|
|
return double(lhs) < rhs.m_value || lhs == rhs;
|
2016-05-12 20:18:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-04-04 15:19:15 +02:00
|
|
|
friend bool operator <= ( Approx const& lhs, T rhs ) {
|
|
|
|
return lhs.m_value < double(rhs) || lhs == rhs;
|
2016-05-12 20:18:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-04-04 15:19:15 +02:00
|
|
|
friend bool operator >= ( T lhs, Approx const& rhs ) {
|
|
|
|
return double(lhs) > rhs.m_value || lhs == rhs;
|
2016-05-12 20:18:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-04-04 15:19:15 +02:00
|
|
|
friend bool operator >= ( Approx const& lhs, T rhs ) {
|
|
|
|
return lhs.m_value > double(rhs) || lhs == rhs;
|
2016-05-12 20:18:44 +02:00
|
|
|
}
|
2017-04-24 22:01:45 +02:00
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
Approx& epsilon( T newEpsilon ) {
|
|
|
|
m_epsilon = double(newEpsilon);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
Approx& margin( T newMargin ) {
|
|
|
|
m_margin = double(newMargin);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
|
|
|
Approx& scale( T newScale ) {
|
|
|
|
m_scale = double(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;
|
2017-05-02 23:51:03 +02:00
|
|
|
oss << "Approx( " << ::Catch::Detail::stringify( 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<>
|
2017-05-02 23:51:03 +02:00
|
|
|
struct StringMaker<Catch::Detail::Approx> {
|
2017-05-21 23:40:05 +02:00
|
|
|
static std::string convert(Catch::Detail::Approx const& value) {
|
2017-05-02 23:51:03 +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
|