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
|
|
|
|
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 {
|
2017-11-01 07:30:11 +01:00
|
|
|
private:
|
|
|
|
bool equalityComparisonImpl(double other) const;
|
2018-09-03 10:15:49 +02:00
|
|
|
// Validates the new margin (margin >= 0)
|
|
|
|
// out-of-line to avoid including stdexcept in the header
|
|
|
|
void setMargin(double margin);
|
|
|
|
// Validates the new epsilon (0 < epsilon < 1)
|
|
|
|
// out-of-line to avoid including stdexcept in the header
|
|
|
|
void setEpsilon(double epsilon);
|
2017-11-01 07:30:11 +01:00
|
|
|
|
2012-05-15 08:42:26 +02:00
|
|
|
public:
|
2017-07-19 10:01:06 +02:00
|
|
|
explicit Approx ( double value );
|
2012-05-15 08:42:26 +02:00
|
|
|
|
2017-07-19 10:01:06 +02:00
|
|
|
static Approx custom();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2018-05-21 15:42:40 +02:00
|
|
|
Approx operator-() const;
|
|
|
|
|
2017-04-24 22:01:45 +02:00
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-07-27 10:45:39 +02:00
|
|
|
Approx operator()( T const& value ) {
|
2017-04-24 22:01:45 +02:00
|
|
|
Approx approx( static_cast<double>(value) );
|
2018-09-03 10:20:58 +02:00
|
|
|
approx.m_epsilon = m_epsilon;
|
|
|
|
approx.m_margin = m_margin;
|
|
|
|
approx.m_scale = m_scale;
|
2012-05-15 08:42:26 +02:00
|
|
|
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>
|
2017-07-27 10:45:39 +02:00
|
|
|
explicit Approx( T const& value ): Approx(static_cast<double>(value))
|
2017-04-04 15:19:15 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
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 ) {
|
2017-07-27 10:45:39 +02:00
|
|
|
auto lhs_v = static_cast<double>(lhs);
|
2017-11-01 07:30:11 +01:00
|
|
|
return rhs.equalityComparisonImpl(lhs_v);
|
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>
|
2017-07-27 10:45:39 +02:00
|
|
|
friend bool operator != ( T const& lhs, Approx const& rhs ) {
|
2016-05-12 20:18:44 +02:00
|
|
|
return !operator==( lhs, rhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-07-27 10:45:39 +02:00
|
|
|
friend bool operator != ( Approx const& lhs, T const& rhs ) {
|
2016-05-12 20:18:44 +02:00
|
|
|
return !operator==( rhs, lhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-07-27 10:45:39 +02:00
|
|
|
friend bool operator <= ( T const& lhs, Approx const& rhs ) {
|
|
|
|
return static_cast<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-07-27 10:45:39 +02:00
|
|
|
friend bool operator <= ( Approx const& lhs, T const& rhs ) {
|
|
|
|
return lhs.m_value < static_cast<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-07-27 10:45:39 +02:00
|
|
|
friend bool operator >= ( T const& lhs, Approx const& rhs ) {
|
|
|
|
return static_cast<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-07-27 10:45:39 +02:00
|
|
|
friend bool operator >= ( Approx const& lhs, T const& rhs ) {
|
|
|
|
return lhs.m_value > static_cast<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>
|
2017-07-27 10:45:39 +02:00
|
|
|
Approx& epsilon( T const& newEpsilon ) {
|
2017-11-01 07:30:11 +01:00
|
|
|
double epsilonAsDouble = static_cast<double>(newEpsilon);
|
2018-09-03 10:15:49 +02:00
|
|
|
setEpsilon(epsilonAsDouble);
|
2017-04-24 22:01:45 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-07-27 10:45:39 +02:00
|
|
|
Approx& margin( T const& newMargin ) {
|
2017-11-01 07:30:11 +01:00
|
|
|
double marginAsDouble = static_cast<double>(newMargin);
|
2018-09-03 10:15:49 +02:00
|
|
|
setMargin(marginAsDouble);
|
2017-04-24 22:01:45 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
|
2017-07-27 10:45:39 +02:00
|
|
|
Approx& scale( T const& newScale ) {
|
|
|
|
m_scale = static_cast<double>(newScale);
|
2017-04-24 22:01:45 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2017-07-19 10:01:06 +02:00
|
|
|
std::string toString() const;
|
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;
|
|
|
|
};
|
2018-05-21 15:42:40 +02:00
|
|
|
} // end namespace Detail
|
2018-09-03 10:15:49 +02:00
|
|
|
|
2018-05-21 15:42:40 +02:00
|
|
|
namespace literals {
|
|
|
|
Detail::Approx operator "" _a(long double val);
|
|
|
|
Detail::Approx operator "" _a(unsigned long long val);
|
|
|
|
} // end namespace literals
|
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-07-19 10:01:06 +02:00
|
|
|
static std::string convert(Catch::Detail::Approx const& value);
|
2017-05-02 23:51:03 +02:00
|
|
|
};
|
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
|