]> www.ginac.de Git - ginac.git/blobdiff - ginac/inifcns.cpp
Add support for Texinfo-5.0.
[ginac.git] / ginac / inifcns.cpp
index f366e779e70fbdb18a64e0447b8b21263f3704ee..9219039a5581df93d58d0c744507ddc4d911a893 100644 (file)
@@ -3,7 +3,7 @@
  *  Implementation of GiNaC's initially known functions. */
 
 /*
- *  GiNaC Copyright (C) 1999-2010 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -1011,13 +1011,20 @@ fsolve(const ex& f_in, const symbol& x, const numeric& x1, const numeric& x2)
                if (!is_a<numeric>(dx_))
                        throw std::runtime_error("fsolve(): function derivative does not evaluate numerically");
                xx[side] += ex_to<numeric>(dx_);
-
-               ex f_x = f.subs(x == xx[side]).evalf();
-               if (!is_a<numeric>(f_x))
-                       throw std::runtime_error("fsolve(): function does not evaluate numerically");
-               fx[side] = ex_to<numeric>(f_x);
-
-               if ((side==0 && xx[0]<xxprev) || (side==1 && xx[1]>xxprev) || xx[0]>xx[1]) {
+               // Now check if Newton-Raphson method shot out of the interval 
+               bool bad_shot = (side == 0 && xx[0] < xxprev) || 
+                               (side == 1 && xx[1] > xxprev) || xx[0] > xx[1];
+               if (!bad_shot) {
+                       // Compute f(x) only if new x is inside the interval.
+                       // The function might be difficult to compute numerically
+                       // or even ill defined outside the interval. Also it's
+                       // a small optimization. 
+                       ex f_x = f.subs(x == xx[side]).evalf();
+                       if (!is_a<numeric>(f_x))
+                               throw std::runtime_error("fsolve(): function does not evaluate numerically");
+                       fx[side] = ex_to<numeric>(f_x);
+               }
+               if (bad_shot) {
                        // Oops, Newton-Raphson method shot out of the interval.
                        // Restore, and try again with the other side instead!
                        xx[side] = xxprev;