• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2018 Hans Dembinski
2 //
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt
5 // or copy at http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef BOOST_HISTOGRAM_TEST_IS_CLOSE_HPP
8 #define BOOST_HISTOGRAM_TEST_IS_CLOSE_HPP
9 
10 #include <boost/core/lightweight_test.hpp>
11 #include <cmath>
12 
13 #define BOOST_TEST_IS_CLOSE(a, b, eps) BOOST_TEST(std::abs(a - b) < eps)
14 
15 #endif
16