]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/histogram/test/is_close.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / histogram / test / is_close.hpp
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