ccmath.hpp 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // (C) Copyright Matt Borland 2021 - 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. #ifndef BOOST_MATH_CCMATH_HPP
  7. #define BOOST_MATH_CCMATH_HPP
  8. #include <boost/math/ccmath/sqrt.hpp>
  9. #include <boost/math/ccmath/isinf.hpp>
  10. #include <boost/math/ccmath/isnan.hpp>
  11. #include <boost/math/ccmath/abs.hpp>
  12. #include <boost/math/ccmath/fabs.hpp>
  13. #include <boost/math/ccmath/isfinite.hpp>
  14. #include <boost/math/ccmath/isnormal.hpp>
  15. #include <boost/math/ccmath/fpclassify.hpp>
  16. #include <boost/math/ccmath/frexp.hpp>
  17. #include <boost/math/ccmath/div.hpp>
  18. #include <boost/math/ccmath/logb.hpp>
  19. #include <boost/math/ccmath/ilogb.hpp>
  20. #include <boost/math/ccmath/scalbn.hpp>
  21. #include <boost/math/ccmath/scalbln.hpp>
  22. #include <boost/math/ccmath/floor.hpp>
  23. #include <boost/math/ccmath/ceil.hpp>
  24. #include <boost/math/ccmath/trunc.hpp>
  25. #include <boost/math/ccmath/modf.hpp>
  26. #include <boost/math/ccmath/round.hpp>
  27. #include <boost/math/ccmath/fmod.hpp>
  28. #include <boost/math/ccmath/remainder.hpp>
  29. #include <boost/math/ccmath/copysign.hpp>
  30. #include <boost/math/ccmath/hypot.hpp>
  31. #include <boost/math/ccmath/fdim.hpp>
  32. #include <boost/math/ccmath/fmax.hpp>
  33. #include <boost/math/ccmath/fmin.hpp>
  34. #include <boost/math/ccmath/isgreater.hpp>
  35. #include <boost/math/ccmath/isgreaterequal.hpp>
  36. #include <boost/math/ccmath/isless.hpp>
  37. #include <boost/math/ccmath/islessequal.hpp>
  38. #include <boost/math/ccmath/isunordered.hpp>
  39. #include <boost/math/ccmath/fma.hpp>
  40. #include <boost/math/ccmath/next.hpp>
  41. #include <boost/math/ccmath/signbit.hpp>
  42. #endif // BOOST_MATH_CCMATH_HPP