1989-05-10 16:08:14 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*
|
|
|
|
* Author: Ceriel J.H. Jacobs
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-05-10 16:08:14 +00:00
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
#include <errno.h>
|
2018-06-22 22:04:14 +00:00
|
|
|
#include <ack/config.h>
|
|
|
|
|
|
|
|
#if ACKCONF_WANT_FLOAT
|
1989-05-10 16:08:14 +00:00
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
#define NITER 5
|
1989-05-10 16:08:14 +00:00
|
|
|
|
|
|
|
double
|
|
|
|
sqrt(double x)
|
|
|
|
{
|
|
|
|
int exponent;
|
|
|
|
double val;
|
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
if (__IsNan(x))
|
|
|
|
{
|
1991-03-19 16:39:40 +00:00
|
|
|
errno = EDOM;
|
|
|
|
return x;
|
|
|
|
}
|
2018-06-21 20:33:47 +00:00
|
|
|
if (x <= 0)
|
|
|
|
{
|
|
|
|
if (x < 0)
|
|
|
|
errno = EDOM;
|
1989-05-10 16:08:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-21 20:33:47 +00:00
|
|
|
if (x > DBL_MAX)
|
|
|
|
return x; /* for infinity */
|
1991-03-19 16:39:40 +00:00
|
|
|
|
1989-05-10 16:08:14 +00:00
|
|
|
val = frexp(x, &exponent);
|
2018-06-21 20:33:47 +00:00
|
|
|
if (exponent & 1)
|
|
|
|
{
|
1989-05-10 16:08:14 +00:00
|
|
|
exponent--;
|
|
|
|
val *= 2;
|
|
|
|
}
|
2018-06-21 20:33:47 +00:00
|
|
|
val = ldexp(val + 1.0, exponent / 2 - 1);
|
1989-05-10 16:08:14 +00:00
|
|
|
/* was: val = (val + 1.0)/2.0; val = ldexp(val, exponent/2); */
|
2018-06-21 20:33:47 +00:00
|
|
|
for (exponent = NITER - 1; exponent >= 0; exponent--)
|
|
|
|
{
|
1989-05-10 16:08:14 +00:00
|
|
|
val = (val + x / val) / 2.0;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
2018-06-22 22:04:14 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|