mirror of
https://github.com/vale981/arb
synced 2025-03-06 01:41:39 -05:00
66 lines
1.7 KiB
C
66 lines
1.7 KiB
C
/*
|
|
Copyright (C) 2014 Fredrik Johansson
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#include "acb.h"
|
|
|
|
int main()
|
|
{
|
|
slong iter;
|
|
flint_rand_t state;
|
|
|
|
flint_printf("get_abs_lbound_arf....");
|
|
fflush(stdout);
|
|
flint_randinit(state);
|
|
|
|
for (iter = 0; iter < 10000 * arb_test_multiplier(); iter++)
|
|
{
|
|
acb_t a;
|
|
arf_t m, m2, x, y, s;
|
|
|
|
acb_init(a);
|
|
arf_init(m);
|
|
arf_init(m2);
|
|
arf_init(x);
|
|
arf_init(y);
|
|
arf_init(s);
|
|
|
|
acb_randtest_special(a, state, 200, 10);
|
|
acb_get_abs_lbound_arf(m, a, 2 + n_randint(state, 100));
|
|
|
|
/* check m^2 <= x^2 + y^2 */
|
|
arf_mul(m2, m, m, ARF_PREC_EXACT, ARF_RND_DOWN);
|
|
|
|
arb_get_abs_lbound_arf(x, acb_realref(a), ARF_PREC_EXACT);
|
|
arb_get_abs_lbound_arf(y, acb_imagref(a), ARF_PREC_EXACT);
|
|
arf_sosq(s, x, y, ARF_PREC_EXACT, ARF_RND_DOWN);
|
|
|
|
if (arf_cmp(m2, s) > 0)
|
|
{
|
|
flint_printf("FAIL:\n\n");
|
|
flint_printf("a = "); acb_print(a); flint_printf("\n\n");
|
|
flint_printf("m = "); arf_print(m); flint_printf("\n\n");
|
|
flint_abort();
|
|
}
|
|
|
|
acb_clear(a);
|
|
arf_clear(m);
|
|
arf_clear(m2);
|
|
arf_clear(x);
|
|
arf_clear(y);
|
|
arf_clear(s);
|
|
}
|
|
|
|
flint_randclear(state);
|
|
flint_cleanup();
|
|
flint_printf("PASS\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|