/*============================================================================== Copyright (c) 2011 Steven Watanabe 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) ==============================================================================*/ #ifndef BOOST_PHOENIX_CMATH_HPP_INCLUDED #define BOOST_PHOENIX_CMATH_HPP_INCLUDED #include #include #include #include #include #include namespace boost { #define BOOST_PHOENIX_MATH_FUNCTION(name, n) \ namespace phoenix_impl { \ struct name ## _impl { \ template \ struct result; \ template \ struct result { \ typedef typename boost::remove_cv< \ typename boost::remove_reference::type>::type type; \ }; \ template \ T0 operator()(BOOST_PP_ENUM_BINARY_PARAMS(n, const T, & t)) const {\ using namespace std; \ return name(BOOST_PP_ENUM_PARAMS(n, t)); \ } \ }; \ } \ namespace phoenix { \ BOOST_PHOENIX_ADAPT_FUNCTION(name, phoenix_impl::name ## _impl, 1) \ } BOOST_PHOENIX_MATH_FUNCTION(acos, 1) BOOST_PHOENIX_MATH_FUNCTION(asin, 1) BOOST_PHOENIX_MATH_FUNCTION(atan, 1) BOOST_PHOENIX_MATH_FUNCTION(atan2, 2) BOOST_PHOENIX_MATH_FUNCTION(ceil, 1) BOOST_PHOENIX_MATH_FUNCTION(cos, 1) BOOST_PHOENIX_MATH_FUNCTION(cosh, 1) BOOST_PHOENIX_MATH_FUNCTION(exp, 1) BOOST_PHOENIX_MATH_FUNCTION(fabs, 1) BOOST_PHOENIX_MATH_FUNCTION(floor, 1) BOOST_PHOENIX_MATH_FUNCTION(fmod, 2) BOOST_PHOENIX_MATH_FUNCTION(frexp, 2) BOOST_PHOENIX_MATH_FUNCTION(ldexp, 2) BOOST_PHOENIX_MATH_FUNCTION(log, 1) BOOST_PHOENIX_MATH_FUNCTION(log10, 1) BOOST_PHOENIX_MATH_FUNCTION(modf, 2) BOOST_PHOENIX_MATH_FUNCTION(pow, 2) BOOST_PHOENIX_MATH_FUNCTION(sin, 1) BOOST_PHOENIX_MATH_FUNCTION(sinh, 1) BOOST_PHOENIX_MATH_FUNCTION(sqrt, 1) BOOST_PHOENIX_MATH_FUNCTION(tan, 1) BOOST_PHOENIX_MATH_FUNCTION(tanh, 1) #undef BOOST_PHOENIX_MATH_FUNCTION } #endif