ack/lang/pc/libpc/sqt.c

74 lines
1.1 KiB
C
Raw Normal View History

/*
* (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$ */
1988-07-25 11:40:57 +00:00
#define __NO_DEFS
#include <math.h>
2018-06-17 20:30:27 +00:00
#include "pc.h"
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
#define NITER 5
1984-07-20 10:44:57 +00:00
2018-06-17 20:30:27 +00:00
static double Ldexp(double fl, int exp)
{
int sign = 1;
int currexp;
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
if (fl < 0)
{
fl = -fl;
sign = -1;
}
2018-06-17 14:11:29 +00:00
fl = _fef(fl, &currexp);
exp += currexp;
2018-06-17 14:11:29 +00:00
if (exp > 0)
{
while (exp > 30)
{
fl *= (double)(1L << 30);
exp -= 30;
}
2018-06-17 14:11:29 +00:00
fl *= (double)(1L << exp);
}
2018-06-17 14:11:29 +00:00
else
{
while (exp < -30)
{
fl /= (double)(1L << 30);
exp += 30;
}
2018-06-17 14:11:29 +00:00
fl /= (double)(1L << -exp);
}
return sign * fl;
}
1984-07-20 10:44:57 +00:00
2018-06-17 20:30:27 +00:00
double _sqt(double x)
1984-07-20 10:44:57 +00:00
{
int exponent;
double val;
1984-07-20 10:44:57 +00:00
2018-06-17 14:11:29 +00:00
if (x <= 0)
{
if (x < 0)
_trp(ESQT);
return 0;
1984-07-20 10:44:57 +00:00
}
val = _fef(x, &exponent);
2018-06-17 14:11:29 +00:00
if (exponent & 1)
{
exponent--;
val *= 2;
1984-07-20 10:44:57 +00:00
}
2018-06-17 14:11:29 +00:00
val = Ldexp(val + 1.0, exponent / 2 - 1);
1990-11-06 13:02:55 +00:00
/* was: val = (val + 1.0)/2.0; val = Ldexp(val, exponent/2); */
2018-06-17 14:11:29 +00:00
for (exponent = NITER - 1; exponent >= 0; exponent--)
{
val = (val + x / val) / 2.0;
1984-07-20 10:44:57 +00:00
}
return val;
1984-07-20 10:44:57 +00:00
}