flint3-sys 3.2.2-1

Rust bindings to the FLINT C library
/*
    Copyright (C) 2023 Jean Kieffer

    This file is part of FLINT.

    FLINT 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 3 of the License, or
    (at your option) any later version.  See <https://www.gnu.org/licenses/>.
*/

#include "test_helpers.h"
#include "acb_mat.h"
#include "acb_theta.h"

TEST_FUNCTION_START(acb_theta_agm_mul, state)
{
    slong iter;

    /* Test: duplication formula */
    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);
}