// Copyright John Maddock 2005-2006. // Copyright Paul A. Bristow 2006-7. // Use, modification and distribution are subject to 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_MATH_CONSTANTS_CONSTANTS_INCLUDED #define BOOST_MATH_CONSTANTS_CONSTANTS_INCLUDED #include #ifdef BOOST_MSVC #pragma warning(push) #pragma warning(disable: 4127 4701) #endif #include #ifdef BOOST_MSVC #pragma warning(pop) #endif namespace boost{ namespace math { namespace constants { // To permit other calculations at about 100 decimal digits with NTL::RR type, // it is obviously necessary to define constants to this accuracy. // However, some compilers do not accept decimal digits strings as long as this. // So the constant is split into two parts, with the 1st containing at least // long double precision, and the 2nd zero if not needed or known. // The 3rd part permits an exponent to be provided if necessary (use zero if none) - // the other two parameters may only contain decimal digits (and sign and decimal point), // and may NOT include an exponent like 1.234E99. // The second digit string is only used if T is a User-Defined Type, // when the constant is converted to a long string literal and lexical_casted to type T. // (This is necessary because you can't use a numeric constant // since even a long double might not have enough digits). #define BOOST_DEFINE_MATH_CONSTANT(name, x, y, exp)\ template inline T name(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE(T))\ {\ static const T result = ::boost::lexical_cast(BOOST_STRINGIZE(BOOST_JOIN(BOOST_JOIN(x, y), BOOST_JOIN(e, exp))));\ return result;\ }\ template <> inline float name(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(float))\ { return BOOST_JOIN(BOOST_JOIN(x, BOOST_JOIN(e, exp)), F); }\ template <> inline double name(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(double))\ { return BOOST_JOIN(x, BOOST_JOIN(e, exp)); }\ template <> inline long double name(BOOST_MATH_EXPLICIT_TEMPLATE_TYPE_SPEC(long double))\ { return BOOST_JOIN(BOOST_JOIN(x, BOOST_JOIN(e, exp)), L); } BOOST_DEFINE_MATH_CONSTANT(pi, 3.141592653589793238462643383279502884197169399375105820974944, 59230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196, 0) BOOST_DEFINE_MATH_CONSTANT(root_pi, 1.7724538509055160272981674833411451827975, 0, 0) BOOST_DEFINE_MATH_CONSTANT(root_half_pi, 1.253314137315500251207882642405522626503, 0, 0) BOOST_DEFINE_MATH_CONSTANT(root_two_pi, 2.506628274631000502415765284811045253007, 0, 0) BOOST_DEFINE_MATH_CONSTANT(root_ln_four, 1.1774100225154746910115693264596996377473856893858205385225257565000, 2658854698492680841813836877081, 0) BOOST_DEFINE_MATH_CONSTANT(e, 2.7182818284590452353602874713526624977572470936999595749669676, 27724076630353547594571382178525166427427466391932003059921817413596629043572900334295260595630738132328627943490763233829880753195251019011, 0) BOOST_DEFINE_MATH_CONSTANT(half, 0.5, 0, 0) BOOST_DEFINE_MATH_CONSTANT(euler, 0.577215664901532860606512090082402431042159335939923598805, 76723488486, 0) BOOST_DEFINE_MATH_CONSTANT(root_two, 1.414213562373095048801688724209698078569671875376948073, 17667973799073247846210703885038753432764157273501384623091229702492483605585073721264412149709993583141322266592750559275579995050115278206, 0) BOOST_DEFINE_MATH_CONSTANT(ln_two, 0.693147180559945309417232121458176568075500134360255254, 120680009493393621969694715605863326996418687, 0) BOOST_DEFINE_MATH_CONSTANT(ln_ln_two, -0.36651292058166432701243915823266946945426344783710526305367771367056, 16153193527385494558228566989083583025230453648347655663425171940646634, 0) BOOST_DEFINE_MATH_CONSTANT(third, 0.3333333333333333333333333333333333333333333333333333333333333333333333, 3333333333333333333333333333333333333333333333333333333333333333333333333, 0) BOOST_DEFINE_MATH_CONSTANT(twothirds, 0.66666666666666666666666666666666666666666666666666666666666666666666, 66666666666666666666666666666666666666666666666666666666666666666666667, 0) BOOST_DEFINE_MATH_CONSTANT(pi_minus_three, 0.141592653589793238462643383279502884197169399375105820974944, 59230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196, 0) BOOST_DEFINE_MATH_CONSTANT(four_minus_pi, 0.85840734641020676153735661672049711580283060062489417902505540769218359, 0, 0) BOOST_DEFINE_MATH_CONSTANT(pow23_four_minus_pi, 0.79531676737159754434839533505680658072763917332771320544530223438582161, 0, 0) BOOST_DEFINE_MATH_CONSTANT(exp_minus_half, 0.6065306597126334236037995349911804534419181354871869556828921587350565194137, 484239986476115079894560, 0) } // namespace constants } // namespace math } // namespace boost #endif // BOOST_MATH_CONSTANTS_CONSTANTS_INCLUDED