gsl_min__convergence.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* min/convergence.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 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_min.h"
  23. int
  24. gsl_min_test_interval (double x_lower, double x_upper, double epsabs, double epsrel)
  25. {
  26. const double lower = x_lower;
  27. const double upper = x_upper;
  28. const double abs_lower = fabs(lower) ;
  29. const double abs_upper = fabs(upper) ;
  30. double min_abs, tolerance;
  31. if (epsrel < 0.0)
  32. GSL_ERROR ("relative tolerance is negative", GSL_EBADTOL);
  33. if (epsabs < 0.0)
  34. GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
  35. if (lower > upper)
  36. GSL_ERROR ("lower bound larger than upper_bound", GSL_EINVAL);
  37. if ((lower > 0 && upper > 0) || (lower < 0 && upper < 0))
  38. {
  39. min_abs = GSL_MIN_DBL(abs_lower, abs_upper) ;
  40. }
  41. else
  42. {
  43. min_abs = 0;
  44. }
  45. tolerance = epsabs + epsrel * min_abs ;
  46. if (fabs(upper - lower) < tolerance)
  47. return GSL_SUCCESS;
  48. return GSL_CONTINUE ;
  49. }