1 /**************************************************************************
3 * (C) Copyright VMware, Inc 2010.
4 * (C) Copyright John Maddock 2006.
5 * Use, modification and distribution are subject to the
6 * Boost Software License, Version 1.0. (See accompanying file
7 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 **************************************************************************/
13 * This file allows to compute the minimax polynomial coefficients we use
16 * How to use this source:
18 * - Download and abuild the NTL library from
19 * http://shoup.net/ntl/download.html
21 * - Download boost source code matching to your distro.
23 * - Goto libs/math/minimax and replace f.cpp with this file.
27 * g++ -o minimax -I /path/to/ntl/include main.cpp f.cpp /path/to/ntl/src/ntl.a -lboost_math_tr1
33 * - For example, to compute exp2 5th order polynomial between [0, 1] do:
42 * http://www.boost.org/doc/libs/1_36_0/libs/math/doc/sf_and_dist/html/math_toolkit/toolkit/internals2/minimax.html
46 #include <boost/math/bindings/rr.hpp>
47 #include <boost/math/tools/polynomial.hpp>
52 boost::math::ntl::RR
f(const boost::math::ntl::RR
& x
, int variant
)
54 static const boost::math::ntl::RR tiny
= boost::math::tools::min_value
<boost::math::ntl::RR
>() * 64;
60 return log(x
)/log(2.0)/(x
- 1.0);
64 return exp(x
*log(2.0));
72 const boost::math::tools::polynomial
<boost::math::ntl::RR
>& n
,
73 const boost::math::tools::polynomial
<boost::math::ntl::RR
>& d
,
74 const boost::math::ntl::RR
& x_offset
,
75 const boost::math::ntl::RR
& y_offset
,