2016-04-26 17:20:05 +02:00
|
|
|
/*
|
2014-06-20 09:27:47 +02:00
|
|
|
Copyright (C) 2014 Fredrik Johansson
|
|
|
|
|
2016-04-26 17:20:05 +02:00
|
|
|
This file is part of Arb.
|
|
|
|
|
|
|
|
Arb is free software: you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
|
|
by the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version. See <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-06-20 09:27:47 +02:00
|
|
|
|
2016-03-03 15:42:23 +01:00
|
|
|
#include "flint/double_extras.h"
|
2014-06-20 09:27:47 +02:00
|
|
|
#include "mag.h"
|
|
|
|
|
|
|
|
/* XXX: d_randtest is not good enough */
|
|
|
|
|
|
|
|
#define EXP_MINUS_32 2.3283064365386962891e-10
|
|
|
|
#define EXP_MINUS_64 5.42101086242752217e-20
|
|
|
|
|
|
|
|
double
|
|
|
|
d_randtest2(flint_rand_t state)
|
|
|
|
{
|
|
|
|
mp_limb_t m1, m2;
|
|
|
|
double t;
|
|
|
|
|
|
|
|
if (FLINT_BITS == 64)
|
|
|
|
{
|
|
|
|
m1 = n_randtest(state) | (UWORD(1) << (FLINT_BITS - 1));
|
|
|
|
|
|
|
|
t = ((double) m1) * EXP_MINUS_64;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m1 = n_randtest(state) | (UWORD(1) << (FLINT_BITS - 1));
|
|
|
|
m2 = n_randtest(state);
|
|
|
|
|
|
|
|
t = ((double) m1) * EXP_MINUS_32 +
|
|
|
|
((double) m2) * EXP_MINUS_64;
|
|
|
|
}
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-11-05 18:06:54 +00:00
|
|
|
slong iter;
|
2014-06-20 09:27:47 +02:00
|
|
|
flint_rand_t state;
|
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("set_d....");
|
2014-06-20 09:27:47 +02:00
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
flint_randinit(state);
|
|
|
|
|
2016-04-10 17:24:58 +02:00
|
|
|
for (iter = 0; iter < 100000 * arb_test_multiplier(); iter++)
|
2014-06-20 09:27:47 +02:00
|
|
|
{
|
|
|
|
fmpr_t a, b, c;
|
|
|
|
mag_t m;
|
|
|
|
double x;
|
|
|
|
|
|
|
|
fmpr_init(a);
|
|
|
|
fmpr_init(b);
|
|
|
|
fmpr_init(c);
|
|
|
|
mag_init(m);
|
|
|
|
|
|
|
|
x = d_randtest2(state);
|
2017-08-11 11:33:20 +02:00
|
|
|
x = ldexp(x, 1100 - n_randint(state, 2200));
|
2014-06-20 09:27:47 +02:00
|
|
|
|
2017-08-11 11:33:20 +02:00
|
|
|
if (n_randint(state, 100) == 0) x = 0.0;
|
|
|
|
if (n_randint(state, 100) == 0) x = D_INF;
|
|
|
|
if (n_randint(state, 100) == 0) x = D_NAN;
|
|
|
|
if (n_randint(state, 2)) x = -x;
|
2014-06-20 09:27:47 +02:00
|
|
|
|
|
|
|
fmpr_set_d(a, x);
|
|
|
|
mag_set_d(m, x);
|
|
|
|
|
|
|
|
mag_get_fmpr(b, m);
|
|
|
|
|
|
|
|
fmpr_set(c, a);
|
|
|
|
fmpr_mul_ui(c, c, 1025, MAG_BITS, FMPR_RND_UP);
|
|
|
|
fmpr_mul_2exp_si(c, c, -10);
|
|
|
|
|
|
|
|
MAG_CHECK_BITS(m)
|
|
|
|
|
|
|
|
if (!(fmpr_cmpabs(a, b) <= 0 && fmpr_cmpabs(b, c) <= 0))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL\n\n");
|
|
|
|
flint_printf("a = "); fmpr_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("b = "); fmpr_print(b); flint_printf("\n\n");
|
|
|
|
flint_printf("c = "); fmpr_print(c); flint_printf("\n\n");
|
2017-02-28 16:50:03 +01:00
|
|
|
flint_abort();
|
2014-06-20 09:27:47 +02:00
|
|
|
}
|
|
|
|
|
2017-08-11 11:33:20 +02:00
|
|
|
mag_set_d_lower(m, x);
|
|
|
|
mag_get_fmpr(b, m);
|
|
|
|
|
|
|
|
fmpr_set(c, a);
|
|
|
|
fmpr_mul_ui(c, c, 1023, MAG_BITS, FMPR_RND_DOWN);
|
|
|
|
fmpr_mul_2exp_si(c, c, -10);
|
|
|
|
|
|
|
|
MAG_CHECK_BITS(m)
|
|
|
|
|
|
|
|
if (!(fmpr_cmpabs(c, b) <= 0 && fmpr_cmpabs(b, a) <= 0))
|
|
|
|
{
|
|
|
|
flint_printf("FAIL (lower)\n\n");
|
|
|
|
flint_printf("a = "); fmpr_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("b = "); fmpr_print(b); flint_printf("\n\n");
|
|
|
|
flint_printf("c = "); fmpr_print(c); flint_printf("\n\n");
|
|
|
|
flint_abort();
|
|
|
|
}
|
|
|
|
|
2014-06-20 09:27:47 +02:00
|
|
|
fmpr_clear(a);
|
|
|
|
fmpr_clear(b);
|
|
|
|
fmpr_clear(c);
|
|
|
|
mag_clear(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
flint_randclear(state);
|
|
|
|
flint_cleanup();
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("PASS\n");
|
2014-06-20 09:27:47 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|