Blame sysdeps/ieee754/dbl-64/s_cbrt.c

Packit 6c4009
/* Compute cubic root of double value.
Packit 6c4009
   Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Dirk Alboth <dirka@uni-paderborn.de> and
Packit 6c4009
   Ulrich Drepper <drepper@cygnus.com>, 1997.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <math.h>
Packit 6c4009
#include <math_private.h>
Packit 6c4009
#include <libm-alias-double.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
#define CBRT2 1.2599210498948731648		/* 2^(1/3) */
Packit 6c4009
#define SQR_CBRT2 1.5874010519681994748		/* 2^(2/3) */
Packit 6c4009
Packit 6c4009
static const double factor[5] =
Packit 6c4009
{
Packit 6c4009
  1.0 / SQR_CBRT2,
Packit 6c4009
  1.0 / CBRT2,
Packit 6c4009
  1.0,
Packit 6c4009
  CBRT2,
Packit 6c4009
  SQR_CBRT2
Packit 6c4009
};
Packit 6c4009
Packit 6c4009
Packit 6c4009
double
Packit 6c4009
__cbrt (double x)
Packit 6c4009
{
Packit 6c4009
  double xm, ym, u, t2;
Packit 6c4009
  int xe;
Packit 6c4009
Packit 6c4009
  /* Reduce X.  XM now is an range 1.0 to 0.5.  */
Packit 6c4009
  xm = __frexp (fabs (x), &xe;;
Packit 6c4009
Packit 6c4009
  /* If X is not finite or is null return it (with raising exceptions
Packit 6c4009
     if necessary.
Packit 6c4009
     Note: *Our* version of `frexp' sets XE to zero if the argument is
Packit 6c4009
     Inf or NaN.  This is not portable but faster.  */
Packit 6c4009
  if (xe == 0 && fpclassify (x) <= FP_ZERO)
Packit 6c4009
    return x + x;
Packit 6c4009
Packit 6c4009
  u = (0.354895765043919860
Packit 6c4009
       + ((1.50819193781584896
Packit 6c4009
	   + ((-2.11499494167371287
Packit 6c4009
	       + ((2.44693122563534430
Packit 6c4009
		   + ((-1.83469277483613086
Packit 6c4009
		       + (0.784932344976639262 - 0.145263899385486377 * xm)
Packit 6c4009
	                  * xm)
Packit 6c4009
		      * xm))
Packit 6c4009
		  * xm))
Packit 6c4009
	      * xm))
Packit 6c4009
	  * xm));
Packit 6c4009
Packit 6c4009
  t2 = u * u * u;
Packit 6c4009
Packit 6c4009
  ym = u * (t2 + 2.0 * xm) / (2.0 * t2 + xm) * factor[2 + xe % 3];
Packit 6c4009
Packit 6c4009
  return __ldexp (x > 0.0 ? ym : -ym, xe / 3);
Packit 6c4009
}
Packit 6c4009
libm_alias_double (__cbrt, cbrt)