/usr/include/boost/math/constants/generate.hpp is in libboost1.55-dev 1.55.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | // Copyright John Maddock 2010.
// 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_GENERATE_INCLUDED
#define BOOST_MATH_CONSTANTS_GENERATE_INCLUDED
#include <boost/math/constants/constants.hpp>
#include <boost/regex.hpp>
#include <iostream>
#include <iomanip>
#include <sstream>
#ifdef USE_MPFR
#include <boost/math/bindings/mpfr.hpp>
#elif defined(USE_MPREAL)
#include <boost/math/bindings/mpreal.hpp>
#elif defined(USE_CPP_FLOAT)
#include <boost/multiprecision/cpp_dec_float.hpp>
#else
#include <boost/math/bindings/rr.hpp>
#endif
namespace boost{ namespace math{ namespace constants{
#ifdef USE_MPFR
typedef mpfr_class generator_type;
#elif defined(USE_MPREAL)
typedef mpfr::mpreal generator_type;
#elif defined(USE_CPP_FLOAT)
typedef boost::multiprecision::number<boost::multiprecision::cpp_dec_float<500> > generator_type;
#else
typedef ntl::RR generator_type;
#endif
inline void print_constant(const char* name, generator_type(*f)(const mpl::int_<0>&))
{
#ifdef USE_MPFR
mpfr_class::set_dprec(((200 + 1) * 1000L) / 301L);
#elif defined(USE_MPREAL)
mpfr::mpreal::set_default_prec(((200 + 1) * 1000L) / 301L);
#elif defined(USE_CPP_FLOAT)
// Nothing to do, precision is already set.
#else
ntl::RR::SetPrecision(((200 + 1) * 1000L) / 301L);
ntl::RR::SetOutputPrecision(102);
#endif
generator_type value = f(boost::mpl::int_<0>());
std::stringstream os;
os << std::setprecision(110) << std::scientific;
os << value;
std::string s = os.str();
static const regex e("([+-]?\\d+(?:\\.\\d{0,36})?)(\\d*)(?:e([+-]?\\d+))?");
smatch what;
if(regex_match(s, what, e))
{
std::cout <<
"BOOST_DEFINE_MATH_CONSTANT(" << name << ", "
<< what[1] << "e" << (what[3].length() ? what[3].str() : std::string("0")) << ", "
<< "\"" << what[1] << what[2] << "e" << (what[3].length() ? what[3].str() : std::string("0"))
<< "\");" << std::endl;
}
else
{
std::cout << "Format of numeric constant was not recognised!!" << std::endl;
}
}
#define BOOST_CONSTANTS_GENERATE(name) \
boost::math::constants::print_constant(#name, \
& boost::math::constants::detail::BOOST_JOIN(constant_, name)<boost::math::constants::generator_type>::get)
}}} // namespaces
#endif // BOOST_MATH_CONSTANTS_GENERATE_INCLUDED
|