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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
// Copyright 2017 John Maddock
// 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)
#include <boost/math/special_functions/bessel.hpp>
#include <boost/math/special_functions/relative_difference.hpp>
#include <boost/multiprecision/cpp_bin_float.hpp>
#include <boost/random.hpp>
#include <boost/svg_plot/svg_2d_plot.hpp>
#include <sstream>
#ifdef BOOST_HAS_FLOAT128
#include <boost/multiprecision/float128.hpp>
#endif
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<256, boost::multiprecision::backends::digit_base_2>, boost::multiprecision::et_on> mp_type;
template <class T>
void test_type(const char* name)
{
typedef boost::math::policies::policy<
boost::math::policies::promote_double<false>,
boost::math::policies::promote_float<false>,
boost::math::policies::overflow_error<boost::math::policies::ignore_error>
> policy_type;
boost::random::mt19937 dist;
boost::random::uniform_real_distribution<T> ur(0, 7.75);
boost::random::uniform_real_distribution<T> ur2(0, 1 / 7.75);
float max_err = 0;
std::map<double, double> small, medium, large;
for(unsigned i = 0; i < 1000; ++i)
{
T input = ur(dist);
mp_type input2(input);
T result = boost::math::cyl_bessel_i(1, input, policy_type());
mp_type result2 = boost::math::cyl_bessel_i(1, input2);
mp_type err = boost::math::relative_difference(result2, mp_type(result)) / mp_type(std::numeric_limits<T>::epsilon());
if(result2 < mp_type(result))
err = -err;
if(fabs(err) > max_err)
{
/*
std::cout << std::setprecision(34) << input << std::endl;
std::cout << std::setprecision(34) << input2 << std::endl;
std::cout << std::setprecision(34) << result << std::endl;
std::cout << std::setprecision(34) << result2 << std::endl;
std::cout << "New max error at x = " << input << " expected " << result2 << " got " << result << " error " << err << std::endl;
*/
max_err = static_cast<float>(fabs(err));
}
if(fabs(err) <= 1)
small[static_cast<double>(input)] = static_cast<double>(err);
else if(fabs(err) <= 2)
medium[static_cast<double>(input)] = static_cast<double>(err);
else
large[static_cast<double>(input)] = static_cast<double>(err);
}
int y_interval = static_cast<int>(ceil(max_err / 5));
std::stringstream ss;
ss << "cyl_bessel_i<" << name << ">(1, x) over [0, 7.75]\n(max error = " << std::setprecision(2) << max_err << ")" << std::endl;
boost::svg::svg_2d_plot my_plot;
// Size of SVG image and X and Y range settings.
my_plot.x_range(0, 7.75).image_x_size(700).legend_border_color(boost::svg::lightgray).plot_border_color(boost::svg::lightgray).background_border_color(boost::svg::lightgray)
.y_range(-(int)ceil(max_err), (int)ceil(max_err)).x_label("x").title(ss.str()).y_major_interval(y_interval).x_major_interval(1.0).legend_on(true).plot_window_on(true);
my_plot.plot(small, "< 1eps").stroke_color(boost::svg::green).fill_color(boost::svg::green).size(2);
if(max_err > 1)
{
my_plot.plot(medium, "< 2eps").stroke_color(boost::svg::orange).fill_color(boost::svg::orange).size(2);
if(max_err > 2)
my_plot.plot(large, "> 2eps").stroke_color(boost::svg::red).fill_color(boost::svg::red).size(2);
}
std::string filename("bessel_i1_0_7_");
filename += name;
filename += ".svg";
my_plot.write(filename);
std::cout << "Maximum error for type " << name << " was: " << max_err << std::endl;
max_err = 0;
for(unsigned i = 0; i < 1000; ++i)
{
T input = 1 / ur2(dist);
mp_type input2(input);
T result = boost::math::cyl_bessel_i(1, input, policy_type());
mp_type result2 = boost::math::cyl_bessel_i(1, input2);
mp_type err = boost::math::relative_difference(result2, mp_type(result)) / mp_type(std::numeric_limits<T>::epsilon());
if(boost::math::isinf(result))
{
if(result2 > mp_type((std::numeric_limits<T>::max)()))
err = 0;
else
std::cout << "Bad result at x = " << input << " result = " << result << " true result = " << result2 << std::endl;
}
if(result2 < mp_type(result))
err = -err;
if(fabs(err) > max_err)
{
max_err = static_cast<float>(fabs(err));
}
if(fabs(err) <= 1)
small[1 / static_cast<double>(input)] = static_cast<double>(err);
else if(fabs(err) <= 2)
medium[1 / static_cast<double>(input)] = static_cast<double>(err);
else
large[1 / static_cast<double>(input)] = static_cast<double>(err);
}
y_interval = static_cast<int>(ceil(max_err / 5));
ss.str("");
ss << "cyl_bessel_i<" << name << ">(1, x) over [0, 7.75]\n(max error = " << std::setprecision(2) << max_err << ")" << std::endl;
boost::svg::svg_2d_plot my_plot2;
// Size of SVG image and X and Y range settings.
my_plot2.x_range(0, 1 / 7.75).image_x_size(700).legend_border_color(boost::svg::lightgray).plot_border_color(boost::svg::lightgray).background_border_color(boost::svg::lightgray)
.y_range(-(int)ceil(max_err), (int)ceil(max_err)).x_label("1 / x").title(ss.str()).y_major_interval(y_interval).x_major_interval(0.01).legend_on(true).plot_window_on(true);
my_plot2.plot(small, "< 1eps").stroke_color(boost::svg::green).fill_color(boost::svg::green).size(2);
if(max_err > 1)
{
my_plot2.plot(medium, "< 2eps").stroke_color(boost::svg::orange).fill_color(boost::svg::orange).size(2);
if(max_err > 2)
my_plot2.plot(large, "> 2eps").stroke_color(boost::svg::red).fill_color(boost::svg::red).size(2);
}
filename = "bessel_i1_7_inf_";
filename += name;
filename += ".svg";
my_plot2.write(filename);
std::cout << "Maximum error for type " << name << " was: " << max_err << std::endl;
}
int main()
{
test_type<float>("float");
test_type<double>("double");
#if LDBL_MANT_DIG == 64
test_type<long double>("long double");
#else
test_type<boost::multiprecision::cpp_bin_float_double_extended>("double-extended");
#endif
#ifdef BOOST_HAS_FLOAT128
test_type<boost::multiprecision::float128>("float128");
#else
test_type<boost::multiprecision::cpp_bin_float_quad>("quad");
#endif
return 0;
}
|