2013-08-08 09:54:33 +00: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)
|
|
|
|
=============================================================================*/
|
2013-02-18 17:49:10 +00:00
|
|
|
#ifndef SPROUT_MATH_CMATH_HPP
|
|
|
|
#define SPROUT_MATH_CMATH_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/math/classifications.hpp>
|
|
|
|
#include <sprout/math/trigonometric.hpp>
|
|
|
|
#include <sprout/math/hyperbolic.hpp>
|
|
|
|
#include <sprout/math/exponential.hpp>
|
|
|
|
#include <sprout/math/power.hpp>
|
|
|
|
#include <sprout/math/error.hpp>
|
2013-04-22 14:55:30 +00:00
|
|
|
#include <sprout/math/gamma.hpp>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <sprout/math/nearest.hpp>
|
|
|
|
#include <sprout/math/remainders.hpp>
|
2013-04-24 13:48:36 +00:00
|
|
|
#include <sprout/math/manipulations.hpp>
|
2013-02-18 17:49:10 +00:00
|
|
|
#include <sprout/math/minmax.hpp>
|
|
|
|
#include <sprout/math/muladd.hpp>
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_MATH_CMATH_HPP
|