]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/test/ccmath_isgreaterequal_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / ccmath_isgreaterequal_test.cpp
CommitLineData
1e59de90
TL
1// (C) Copyright Matt Borland 2022.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#include <cmath>
7#include <cfloat>
8#include <cstdint>
9#include <limits>
10#include <type_traits>
11#include <boost/math/ccmath/isgreaterequal.hpp>
12#include <boost/math/ccmath/isnan.hpp>
13#include <boost/math/ccmath/isinf.hpp>
14
15#ifdef BOOST_HAS_FLOAT128
16#include <boost/multiprecision/float128.hpp>
17#endif
18
19template <typename T>
20constexpr void test()
21{
22 static_assert(!boost::math::ccmath::isgreaterequal(std::numeric_limits<T>::quiet_NaN(), T(1)));
23 static_assert(!boost::math::ccmath::isgreaterequal(T(1), std::numeric_limits<T>::quiet_NaN()));
24 static_assert(!boost::math::ccmath::isgreaterequal(std::numeric_limits<T>::quiet_NaN(), std::numeric_limits<T>::quiet_NaN()));
25
26 static_assert(boost::math::ccmath::isgreaterequal(T(2), T(1)));
27 static_assert(boost::math::ccmath::isgreaterequal(T(2), T(2)));
28 static_assert(!boost::math::ccmath::isgreaterequal(T(1), T(2)));
29}
30
31#if !defined(BOOST_MATH_NO_CONSTEXPR_DETECTION) && !defined(BOOST_MATH_USING_BUILTIN_CONSTANT_P)
32int main()
33{
34 test<float>();
35 test<double>();
36
37 #ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
38 test<long double>();
39 #endif
40
41 #ifdef BOOST_HAS_FLOAT128
42 test<boost::multiprecision::float128>();
43 #endif
44
45 return 0;
46}
47#else
48int main()
49{
50 return 0;
51}
52#endif