2016-04-26 17:20:05 +02:00
|
|
|
/*
|
2014-05-15 16:36:30 +02:00
|
|
|
Copyright (C) 2013 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-05-15 16:36:30 +02:00
|
|
|
|
|
|
|
#include "acb.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-11-05 17:43:36 +00:00
|
|
|
slong iter;
|
2014-05-15 16:36:30 +02:00
|
|
|
flint_rand_t state;
|
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("rsqrt....");
|
2014-05-15 16:36:30 +02:00
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
flint_randinit(state);
|
|
|
|
|
|
|
|
/* check (a^(-1/2))^(-2) = a */
|
2016-04-10 17:24:58 +02:00
|
|
|
for (iter = 0; iter < 10000 * arb_test_multiplier(); iter++)
|
2014-05-15 16:36:30 +02:00
|
|
|
{
|
|
|
|
acb_t a, b, c;
|
2015-11-05 17:43:36 +00:00
|
|
|
slong prec;
|
2014-05-15 16:36:30 +02:00
|
|
|
|
|
|
|
acb_init(a);
|
|
|
|
acb_init(b);
|
|
|
|
acb_init(c);
|
|
|
|
|
|
|
|
acb_randtest(a, state, 1 + n_randint(state, 2000), 10);
|
|
|
|
acb_randtest(b, state, 1 + n_randint(state, 2000), 10);
|
|
|
|
|
|
|
|
prec = 2 + n_randint(state, 2000);
|
|
|
|
|
|
|
|
acb_rsqrt(b, a, prec);
|
|
|
|
acb_inv(c, b, prec);
|
|
|
|
acb_mul(c, c, c, prec);
|
|
|
|
|
|
|
|
if (!acb_contains(c, a))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL: containment\n\n");
|
|
|
|
flint_printf("a = "); acb_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("b = "); acb_print(b); flint_printf("\n\n");
|
|
|
|
flint_printf("c = "); acb_print(c); flint_printf("\n\n");
|
2014-05-15 16:36:30 +02:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
acb_rsqrt(a, a, prec);
|
|
|
|
if (!acb_equal(a, b))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL: aliasing\n\n");
|
|
|
|
flint_printf("a = "); acb_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("b = "); acb_print(b); flint_printf("\n\n");
|
2014-05-15 16:36:30 +02:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
acb_clear(a);
|
|
|
|
acb_clear(b);
|
|
|
|
acb_clear(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
flint_randclear(state);
|
|
|
|
flint_cleanup();
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("PASS\n");
|
2014-05-15 16:36:30 +02:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|