#include "test_helpers.h"
#include "acb_mat.h"
#include "acb_theta.h"
TEST_FUNCTION_START(acb_theta_agm_mul, state)
{
slong iter;
for (iter = 0; iter < 20 * flint_test_multiplier(); iter++)
{
slong g = 1 + n_randint(state, 3);
slong prec = 100 + n_randint(state, 200);
slong mag_bits = n_randint(state, 2);
slong rad_exp = -5;
slong n = 1 << g;
acb_mat_t tau;
acb_ptr z;
arf_t rad;
acb_ptr th;
acb_ptr th_dupl;
acb_ptr test;
arb_t err;
slong k;
acb_mat_init(tau, g, g);
arf_init(rad);
z = _acb_vec_init(2 * g);
th = _acb_vec_init(2 * n);
th_dupl = _acb_vec_init(2 * n);
test = _acb_vec_init(2 * n);
arb_init(err);
acb_siegel_randtest_reduced(tau, state, prec, mag_bits);
arf_one(rad);
arf_mul_2exp_si(rad, rad, rad_exp);
for (k = 0; k < g; k++)
{
acb_urandom(&z[k], state, prec);
}
_acb_vec_scalar_mul_2exp_si(z, z, g, rad_exp);
acb_theta_naive_0b(th, z, 2, tau, prec);
acb_mat_scalar_mul_2exp_si(tau, tau, 1);
acb_theta_naive_0b(th_dupl, z, 2, tau, prec);
_acb_vec_sqr(th_dupl, th_dupl, 2 * n, prec);
acb_theta_agm_mul(test, th, th + n, g, prec);
acb_theta_agm_mul(test + n, th + n, th + n, g, prec);
if (!_acb_vec_overlaps(test, th_dupl, 2 * n))
{
flint_printf("FAIL (overlap)\n");
flint_printf("g = %wd, prec = %wd, tau, z:\n", g, prec);
acb_mat_printd(tau, 10);
_acb_vec_printd(z, g, 10);
flint_printf("theta:\n");
_acb_vec_printd(th, 2 * n, 10);
flint_printf("dupl:\n");
_acb_vec_printd(th_dupl, 2 * n, 10);
flint_printf("test:\n");
_acb_vec_printd(test, 2 * n, 10);
fflush(stdout);
flint_abort();
}
acb_mat_clear(tau);
arf_clear(rad);
_acb_vec_clear(z, 2 * g);
_acb_vec_clear(th, 2 * n);
_acb_vec_clear(th_dupl, 2 * n);
_acb_vec_clear(test, 2 * n);
arb_clear(err);
}
TEST_FUNCTION_END(state);
}