2013-02-07 09:14:50 +00:00
|
|
|
#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>
|
2013-02-10 02:54:54 +00:00
|
|
|
#include <sprout/math/ilogb2.hpp>
|
|
|
|
#include <sprout/math/logb2.hpp>
|
|
|
|
#include <sprout/math/float_significand.hpp>
|
2013-02-07 10:26:24 +00:00
|
|
|
#include <sprout/math/float_exponent.hpp>
|
2013-02-10 02:54:54 +00:00
|
|
|
#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/float_fractional_part.hpp>
|
|
|
|
#include <sprout/math/float_integer_part.hpp>
|
|
|
|
#include <sprout/math/float_frac_int.hpp>
|
2013-02-07 09:14:50 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_FLOATING_POINT_HPP
|