mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_MATH_FLOATING_POINT_HPP
|
|
#define SPROUT_MATH_FLOATING_POINT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/ldexp.hpp>
|
|
#include <sprout/math/scalbn.hpp>
|
|
#include <sprout/math/scalbln.hpp>
|
|
#include <sprout/math/ilogb.hpp>
|
|
#include <sprout/math/logb.hpp>
|
|
#include <sprout/math/ilogb2.hpp>
|
|
#include <sprout/math/logb2.hpp>
|
|
#include <sprout/math/float_significand.hpp>
|
|
#include <sprout/math/float_exponent.hpp>
|
|
#include <sprout/math/float_sig_exp.hpp>
|
|
#include <sprout/math/float2_significand.hpp>
|
|
#include <sprout/math/float2_exponent.hpp>
|
|
#include <sprout/math/float2_sig_exp.hpp>
|
|
#include <sprout/math/fractional_part.hpp>
|
|
#include <sprout/math/integer_part.hpp>
|
|
#include <sprout/math/frac_int.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_FLOATING_POINT_HPP
|