/* Boost example/newton-raphson.cpp * Newton iteration for intervals (partial: 0/0 is missing) * * Copyright Guillaume Melquiond 2003 * Permission to use, copy, modify, sell, and distribute this software * is hereby granted without fee provided that the above copyright notice * appears in all copies and that both that copyright notice and this * permission notice appear in supporting documentation. * * None of the above authors make any representation about the * suitability of this software for any purpose. It is provided "as * is" without express or implied warranty. * * $Id$ */ #include #include #include #include #include #include #include template I f(const I& x) { return x * (x - 1.) * (x - 2.) * (x - 3.) * (x - 4.); } template I f_diff(const I& x) { return (((5. * x - 40.) * x + 105.) * x - 100.) * x + 24.; } static const double max_width = 1e-10; static const double alpha = 0.75; using namespace boost; using namespace numeric; using namespace interval_lib; // First method: no empty intervals typedef interval I1_aux; typedef unprotect::type I1; std::vector newton_raphson(const I1& xs) { std::vector l, res; I1 vf, vd, x, x1, x2; l.push_back(xs); while (!l.empty()) { x = l.back(); l.pop_back(); bool x2_used; double xx = median(x); vf = f(xx); vd = f_diff(x); if (in_zero(vf) && in_zero(vd)) { x1 = I1::whole(); x2_used = false; } else { x1 = xx - division_part1(vf, vd, x2_used); if (x2_used) x2 = xx - division_part2(vf, vd); } if (overlap(x1, x)) x1 = intersect(x, x1); else if (x2_used) { x1 = x2; x2_used = false; } else continue; if (x2_used) if (overlap(x2, x)) x2 = intersect(x, x2); else x2_used = false; if (x2_used && width(x2) > width(x1)) std::swap(x1, x2); if (!in_zero(f(x1))) if (x2_used) { x1 = x2; x2_used = false; } else continue; if (width(x1) < max_width) res.push_back(x1); else if (width(x1) > alpha * width(x)) { std::pair p = bisect(x); if (in_zero(f(p.first))) l.push_back(p.first); x2 = p.second; x2_used = true; } else l.push_back(x1); if (x2_used && in_zero(f(x2))) if (width(x2) < max_width) res.push_back(x1); else l.push_back(x2); } return res; } // Second method: with empty intervals typedef change_checking >::type I2_aux; typedef unprotect::type I2; std::vector newton_raphson(const I2& xs) { std::vector l, res; I2 vf, vd, x, x1, x2; l.push_back(xs); while (!l.empty()) { x = l.back(); l.pop_back(); double xx = median(x); vf = f(xx); vd = f_diff(x); if (in_zero(vf) && in_zero(vd)) { x1 = x; x2 = I2::empty(); } else { bool x2_used; x1 = intersect(x, xx - division_part1(vf, vd, x2_used)); x2 = x2_used ? intersect(x, xx - division_part2(vf, vd)) : I2::empty(); } if (width(x2) > width(x1)) std::swap(x1, x2); if (empty(x1) || !in_zero(f(x1))) if (!empty(x2)) { x1 = x2; x2 = I2::empty(); } else continue; if (width(x1) < max_width) res.push_back(x1); else if (width(x1) > alpha * width(x)) { std::pair p = bisect(x); if (in_zero(f(p.first))) l.push_back(p.first); x2 = p.second; } else l.push_back(x1); if (!empty(x2) && in_zero(f(x2))) if (width(x2) < max_width) res.push_back(x1); else l.push_back(x2); } return res; } int main() { { I1_aux::traits_type::rounding rnd; std::vector res = newton_raphson(I1(-1, 5.1)); std::cout << "Results: " << std::endl << std::setprecision(12); for(std::vector::const_iterator i = res.begin(); i != res.end(); ++i) std::cout << " " << *i << std::endl; std::cout << std::endl; } { I2_aux::traits_type::rounding rnd; std::vector res = newton_raphson(I2(-1, 5.1)); std::cout << "Results: " << std::endl << std::setprecision(12); for(std::vector::const_iterator i = res.begin(); i != res.end(); ++i) std::cout << " " << *i << std::endl; std::cout << std::endl; } }