Blame roots/convergence.c

Packit 67cb25
/* roots/convergence.c
Packit 67cb25
 * 
Packit 67cb25
 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough
Packit 67cb25
 * 
Packit 67cb25
 * This program is free software; you can redistribute it and/or modify
Packit 67cb25
 * it under the terms of the GNU General Public License as published by
Packit 67cb25
 * the Free Software Foundation; either version 3 of the License, or (at
Packit 67cb25
 * your option) any later version.
Packit 67cb25
 * 
Packit 67cb25
 * This program is distributed in the hope that it will be useful, but
Packit 67cb25
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 67cb25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 67cb25
 * General Public License for more details.
Packit 67cb25
 * 
Packit 67cb25
 * You should have received a copy of the GNU General Public License
Packit 67cb25
 * along with this program; if not, write to the Free Software
Packit 67cb25
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 67cb25
 */
Packit 67cb25
Packit 67cb25
#include <config.h>
Packit 67cb25
#include <gsl/gsl_math.h>
Packit 67cb25
#include <gsl/gsl_errno.h>
Packit 67cb25
#include <gsl/gsl_roots.h>
Packit 67cb25
Packit 67cb25
int
Packit 67cb25
gsl_root_test_interval (double x_lower, double x_upper, double epsabs, double epsrel)
Packit 67cb25
{
Packit 67cb25
  const double abs_lower = fabs(x_lower) ;
Packit 67cb25
  const double abs_upper = fabs(x_upper) ;
Packit 67cb25
Packit 67cb25
  double min_abs, tolerance;
Packit 67cb25
Packit 67cb25
  if (epsrel < 0.0)
Packit 67cb25
    GSL_ERROR ("relative tolerance is negative", GSL_EBADTOL);
Packit 67cb25
  
Packit 67cb25
  if (epsabs < 0.0)
Packit 67cb25
    GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
Packit 67cb25
Packit 67cb25
  if (x_lower > x_upper)
Packit 67cb25
    GSL_ERROR ("lower bound larger than upper bound", GSL_EINVAL);
Packit 67cb25
Packit 67cb25
  if ((x_lower > 0.0 && x_upper > 0.0) || (x_lower < 0.0 && x_upper < 0.0)) 
Packit 67cb25
    {
Packit 67cb25
      min_abs = GSL_MIN_DBL(abs_lower, abs_upper) ;
Packit 67cb25
    }
Packit 67cb25
  else
Packit 67cb25
    {
Packit 67cb25
      min_abs = 0;
Packit 67cb25
    }
Packit 67cb25
Packit 67cb25
  tolerance = epsabs + epsrel * min_abs  ;
Packit 67cb25
  
Packit 67cb25
  if (fabs(x_upper - x_lower) < tolerance)
Packit 67cb25
    return GSL_SUCCESS;
Packit 67cb25
  
Packit 67cb25
  return GSL_CONTINUE ;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
int
Packit 67cb25
gsl_root_test_delta (double x1, double x0, double epsabs, double epsrel)
Packit 67cb25
{
Packit 67cb25
  const double tolerance = epsabs + epsrel * fabs(x1)  ;
Packit 67cb25
Packit 67cb25
  if (epsrel < 0.0)
Packit 67cb25
    GSL_ERROR ("relative tolerance is negative", GSL_EBADTOL);
Packit 67cb25
  
Packit 67cb25
  if (epsabs < 0.0)
Packit 67cb25
    GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
Packit 67cb25
  
Packit 67cb25
  if (fabs(x1 - x0) < tolerance || x1 == x0)
Packit 67cb25
    return GSL_SUCCESS;
Packit 67cb25
  
Packit 67cb25
  return GSL_CONTINUE ;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
int
Packit 67cb25
gsl_root_test_residual (double f, double epsabs)
Packit 67cb25
{
Packit 67cb25
  if (epsabs < 0.0)
Packit 67cb25
    GSL_ERROR ("absolute tolerance is negative", GSL_EBADTOL);
Packit 67cb25
 
Packit 67cb25
  if (fabs(f) < epsabs)
Packit 67cb25
    return GSL_SUCCESS;
Packit 67cb25
  
Packit 67cb25
  return GSL_CONTINUE ;
Packit 67cb25
}
Packit 67cb25