gsl_roots__convergence.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* roots/convergence.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #include "gsl__config.h"
  20. #include "gsl_math.h"
  21. #include "gsl_errno.h"
  22. #include "gsl_roots.h"
  23. int
  24. gsl_root_test_interval (double x_lower, double x_upper, double epsabs, double epsrel)
  25. {
  26. const double abs_lower = fabs(x_lower) ;
  27. const double abs_upper = fabs(x_upper) ;
  28. double min_abs, tolerance;
  29. if (epsrel < 0.0)
  30. GSL_ERROR ("relative tolerance is negative", GSL_EBADTOL);
  31. if (epsabs < 0.0)
  32. GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
  33. if (x_lower > x_upper)
  34. GSL_ERROR ("lower bound larger than upper bound", GSL_EINVAL);
  35. if ((x_lower > 0.0 && x_upper > 0.0) || (x_lower < 0.0 && x_upper < 0.0))
  36. {
  37. min_abs = GSL_MIN_DBL(abs_lower, abs_upper) ;
  38. }
  39. else
  40. {
  41. min_abs = 0;
  42. }
  43. tolerance = epsabs + epsrel * min_abs ;
  44. if (fabs(x_upper - x_lower) < tolerance)
  45. return GSL_SUCCESS;
  46. return GSL_CONTINUE ;
  47. }
  48. int
  49. gsl_root_test_delta (double x1, double x0, double epsabs, double epsrel)
  50. {
  51. const double tolerance = epsabs + epsrel * fabs(x1) ;
  52. if (epsrel < 0.0)
  53. GSL_ERROR ("relative tolerance is negative", GSL_EBADTOL);
  54. if (epsabs < 0.0)
  55. GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
  56. if (fabs(x1 - x0) < tolerance || x1 == x0)
  57. return GSL_SUCCESS;
  58. return GSL_CONTINUE ;
  59. }
  60. int
  61. gsl_root_test_residual (double f, double epsabs)
  62. {
  63. if (epsabs < 0.0)
  64. GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
  65. if (fabs(f) < epsabs)
  66. return GSL_SUCCESS;
  67. return GSL_CONTINUE ;
  68. }