00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef _NUMERICS4CPP_ROOT_BISECTION_H_
00037 #define _NUMERICS4CPP_ROOT_BISECTION_H_
00038
00039 #include <cmath>
00040 #include <limits>
00041 #include "../iterativemethod.h"
00042 #include "../math.h"
00043
00044 NUM_NAMESPACE_BEGIN
00045
00071 template<class Function>
00072 class bisection_root_finder : public iterative_method {
00073
00074 public:
00081 bisection_root_finder(Function& f, unsigned int iterations = 100, double relative_error = 1.0e-15) : iterative_method(iterations, relative_error), _function(f) {
00082 }
00083
00092 double find_root(double min, double max) {
00093 double m;
00094 double fm;
00095 double fmin;
00096
00097 if (is_nan(min) || is_nan(max)) {
00098 return std::numeric_limits<double>::quiet_NaN();
00099 }
00100
00101 unsigned int i = 0;
00102 while (i < maximum_iterations()) {
00103 m = min + (max - min) / 2.0;
00104 fmin = _function(min);
00105 fm = _function(m);
00106
00107 if (fm * fmin > 0.0) {
00108
00109 min = m;
00110 fmin = fm;
00111 } else {
00112
00113 max = m;
00114 }
00115
00116 if (std::fabs(std::max(std::fabs(fm), m / min - 1.0)) <= maximum_relative_error()) {
00117 return min + (max - min) / 2.0;
00118 }
00119 ++i;
00120 }
00121
00122 throw convergence_exception("Maximum number of iterations exceeded.");
00123 }
00124
00125 private:
00127 Function& _function;
00128 };
00129
00130 NUM_NAMESPACE_END
00131
00132 #endif