brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.7 KiB · f075eac Raw
46 lines · plain
1//  (C) Copyright Matt Borland 2021 - 2022.2//  Use, modification and distribution are subject to the3//  Boost Software License, Version 1.0. (See accompanying file4//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)5//6 7#ifndef BOOST_MATH_CCMATH_HPP8#define BOOST_MATH_CCMATH_HPP9 10#include <boost/math/ccmath/sqrt.hpp>11#include <boost/math/ccmath/isinf.hpp>12#include <boost/math/ccmath/isnan.hpp>13#include <boost/math/ccmath/abs.hpp>14#include <boost/math/ccmath/fabs.hpp>15#include <boost/math/ccmath/isfinite.hpp>16#include <boost/math/ccmath/isnormal.hpp>17#include <boost/math/ccmath/fpclassify.hpp>18#include <boost/math/ccmath/frexp.hpp>19#include <boost/math/ccmath/div.hpp>20#include <boost/math/ccmath/logb.hpp>21#include <boost/math/ccmath/ilogb.hpp>22#include <boost/math/ccmath/scalbn.hpp>23#include <boost/math/ccmath/scalbln.hpp>24#include <boost/math/ccmath/floor.hpp>25#include <boost/math/ccmath/ceil.hpp>26#include <boost/math/ccmath/trunc.hpp>27#include <boost/math/ccmath/modf.hpp>28#include <boost/math/ccmath/round.hpp>29#include <boost/math/ccmath/fmod.hpp>30#include <boost/math/ccmath/remainder.hpp>31#include <boost/math/ccmath/copysign.hpp>32#include <boost/math/ccmath/hypot.hpp>33#include <boost/math/ccmath/fdim.hpp>34#include <boost/math/ccmath/fmax.hpp>35#include <boost/math/ccmath/fmin.hpp>36#include <boost/math/ccmath/isgreater.hpp>37#include <boost/math/ccmath/isgreaterequal.hpp>38#include <boost/math/ccmath/isless.hpp>39#include <boost/math/ccmath/islessequal.hpp>40#include <boost/math/ccmath/isunordered.hpp>41#include <boost/math/ccmath/fma.hpp>42#include <boost/math/ccmath/next.hpp>43#include <boost/math/ccmath/signbit.hpp>44 45#endif // BOOST_MATH_CCMATH_HPP46