Blame src/math/remainderl.c
|
nsz |
f9d179 |
#include <stdint.h>
|
|
nsz |
f9d179 |
#include <stdio.h>
|
|
nsz |
f9d179 |
#include "util.h"
|
|
nsz |
f9d179 |
|
|
nsz |
f9d179 |
static struct ll_l t[] = {
|
|
nsz |
f9d179 |
#if LDBL_MANT_DIG == 53
|
|
nsz |
4282b0 |
#include "sanity/remainder.h"
|
|
nsz |
f9d179 |
|
|
nsz |
4282b0 |
#elif LDBL_MANT_DIG == 64
|
|
nsz |
f9d179 |
#include "sanity/remainderl.h"
|
|
nsz |
4282b0 |
|
|
nsz |
f9d179 |
#endif
|
|
nsz |
f9d179 |
};
|
|
nsz |
f9d179 |
|
|
nsz |
f9d179 |
int main(void)
|
|
nsz |
f9d179 |
{
|
|
nsz |
f9d179 |
long double y;
|
|
nsz |
f9d179 |
float d;
|
|
nsz |
f9d179 |
int e, i, err = 0;
|
|
nsz |
f9d179 |
struct ll_l *p;
|
|
nsz |
f9d179 |
|
|
nsz |
f9d179 |
for (i = 0; i < sizeof t/sizeof *t; i++) {
|
|
nsz |
f9d179 |
p = t + i;
|
|
nsz |
f9d179 |
setupfenv(p->r);
|
|
nsz |
f9d179 |
y = remainderl(p->x, p->x2);
|
|
nsz |
f9d179 |
e = getexcept();
|
|
nsz |
f9d179 |
if (!checkexcept(e, p->e, p->r)) {
|
|
nsz |
f9d179 |
printf("%s remainderl(%La,%La)==%La except: want %s", rstr(p->r), p->x, p->x2, p->y, estr(p->e));
|
|
nsz |
f9d179 |
printf(" got %s\n", estr(e));
|
|
nsz |
f9d179 |
err++;
|
|
nsz |
f9d179 |
}
|
|
nsz |
f9d179 |
d = ulperrl(y, p->y, p->dy);
|
|
nsz |
f9d179 |
if (!checkulp(d, p->r)) {
|
|
nsz |
f9d179 |
printf("%s remainderl(%La,%La) want %La got %La ulperr %.3f = %a + %a\n",
|
|
nsz |
f9d179 |
rstr(p->r), p->x, p->x2, p->y, y, d, d-p->dy, p->dy);
|
|
nsz |
f9d179 |
err++;
|
|
nsz |
f9d179 |
}
|
|
nsz |
f9d179 |
}
|
|
nsz |
f9d179 |
return !!err;
|
|
nsz |
f9d179 |
}
|