2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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 05:07:36 +00:00
|
|
|
#ifndef SPROUT_MATH_FUNCTIONS_HPP
|
|
|
|
#define SPROUT_MATH_FUNCTIONS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <sprout/math/cmath.hpp>
|
2012-05-31 13:28:58 +00:00
|
|
|
#include <sprout/math/common_factor.hpp>
|
2012-05-11 00:23:01 +00:00
|
|
|
#include <sprout/math/factorial.hpp>
|
2012-05-12 14:18:19 +00:00
|
|
|
#include <sprout/math/bernoulli.hpp>
|
2012-07-06 14:10:49 +00:00
|
|
|
#include <sprout/math/comparison.hpp>
|
2013-05-05 15:22:08 +00:00
|
|
|
#include <sprout/math/integer.hpp>
|
2012-05-04 05:07:36 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_FUNCTIONS_HPP
|