2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 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)
|
|
|
|
=============================================================================*/
|
2012-05-04 16:40:25 +09:00
|
|
|
#ifndef SPROUT_MATH_EXPONENTIAL_HPP
|
|
|
|
#define SPROUT_MATH_EXPONENTIAL_HPP
|
|
|
|
|
2012-05-10 13:34:49 +09:00
|
|
|
#include <sprout/config.hpp>
|
2012-05-04 16:40:25 +09:00
|
|
|
#include <sprout/math/exp.hpp>
|
2012-05-04 18:21:18 +09:00
|
|
|
#include <sprout/math/exp10.hpp>
|
|
|
|
#include <sprout/math/exp2.hpp>
|
|
|
|
#include <sprout/math/expm1.hpp>
|
2012-05-04 16:40:25 +09:00
|
|
|
#include <sprout/math/log.hpp>
|
2012-05-04 18:02:42 +09:00
|
|
|
#include <sprout/math/log10.hpp>
|
2013-02-10 17:33:31 +09:00
|
|
|
#include <sprout/math/log1p.hpp>
|
2013-02-14 18:02:43 +09:00
|
|
|
#include <sprout/math/log2.hpp>
|
2013-02-10 17:33:31 +09:00
|
|
|
#include <sprout/math/floating_point.hpp>
|
2012-05-04 16:40:25 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_EXPONENTIAL_HPP
|