2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 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-08-28 16:16:12 +00:00
|
|
|
#ifndef SPROUT_COMPLEX_TRANSCENDENTALS_HPP
|
|
|
|
#define SPROUT_COMPLEX_TRANSCENDENTALS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2014-07-19 11:03:13 +00:00
|
|
|
#include <sprout/complex/acos.hpp>
|
|
|
|
#include <sprout/complex/asin.hpp>
|
|
|
|
#include <sprout/complex/atan.hpp>
|
|
|
|
#include <sprout/complex/acosh.hpp>
|
|
|
|
#include <sprout/complex/asinh.hpp>
|
|
|
|
#include <sprout/complex/atanh.hpp>
|
|
|
|
#include <sprout/complex/cos.hpp>
|
|
|
|
#include <sprout/complex/cosh.hpp>
|
|
|
|
#include <sprout/complex/exp.hpp>
|
|
|
|
#include <sprout/complex/log.hpp>
|
|
|
|
#include <sprout/complex/log10.hpp>
|
|
|
|
#include <sprout/complex/log2.hpp>
|
|
|
|
#include <sprout/complex/pow.hpp>
|
|
|
|
#include <sprout/complex/sin.hpp>
|
|
|
|
#include <sprout/complex/sinh.hpp>
|
|
|
|
#include <sprout/complex/sqrt.hpp>
|
|
|
|
#include <sprout/complex/tan.hpp>
|
|
|
|
#include <sprout/complex/tanh.hpp>
|
2012-08-28 16:16:12 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPLEX_TRANSCENDENTALS_HPP
|