flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    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.h"
#include "acb_mat.h"
#include "acb_theta.h"

TEST_FUNCTION_START(acb_theta_agm_mul, state)
{
    slong iter;

    /* Test: duplication formula using sum */
    for (iter = 0; iter < 20 * flint_test_multiplier(); iter++)
    {
        slong g = 1 + n_randint(state, 3);
        slong n = 1 << g;
        slong mprec = 100 + n_randint(state, 100);
        slong prec = mprec + 50;
        slong bits = n_randint(state, 2);
        int all = iter % 2;
        slong nbth = (all ? n * n : n);
        acb_mat_t tau;
        acb_ptr z;
        acb_theta_ctx_tau_t ctx_tau;
        acb_theta_ctx_z_t ctx0, ctx;
        arb_ptr ds;
        acb_ptr th2, th_dupl, test;
        slong j;

        acb_mat_init(tau, g, g);
        z = _acb_vec_init(2 * g);
        acb_theta_ctx_tau_init(ctx_tau, 1, g);
        acb_theta_ctx_z_init(ctx0, g);
        acb_theta_ctx_z_init(ctx, g);
        th2 = _acb_vec_init(2 * nbth);
        th_dupl = _acb_vec_init(2 * n);
        test = _acb_vec_init(2 * nbth);
        ds = _arb_vec_init(2 * n);

        acb_siegel_randtest_reduced(tau, state, prec, bits);
        acb_siegel_randtest_vec_reduced(z + g, state, 1, tau, 0, prec);

        acb_theta_ctx_tau_set(ctx_tau, tau, prec);
        acb_theta_ctx_z_set(ctx0, z, ctx_tau, prec);
        acb_theta_ctx_z_set(ctx, z + g, ctx_tau, prec);
        acb_theta_eld_distances(ds, z, 2, tau, prec);

        /* Make test vector using sum, squared */
        acb_theta_sum(test, ctx0, 1, ctx_tau, ds, 1, all, 1, prec);
        acb_theta_sum(test + nbth, ctx, 1, ctx_tau, ds + n, 1, all, 1, prec);
        for (j = 0; j < 2 * nbth; j++)
        {
            acb_sqr(&test[j], &test[j], prec);
        }

        /* Duplicate to get input of agm_mul */
        acb_theta_ctx_tau_dupl(ctx_tau, prec);
        acb_theta_ctx_z_dupl(ctx0, prec);
        acb_theta_ctx_z_dupl(ctx, prec);
        _arb_vec_scalar_mul_2exp_si(ds, ds, 2 * n, 1);
        acb_theta_sum(th_dupl, ctx0, 1, ctx_tau, ds, 1, 0, 1, prec);
        acb_theta_sum(th_dupl + n, ctx, 1, ctx_tau, ds + n, 1, 0, 1, prec);

        /* Call agm_mul at precision mprec and compare with test */
        acb_theta_agm_mul(th2, th_dupl, th_dupl, g, all, mprec);
        acb_theta_agm_mul(th2 + nbth, th_dupl, th_dupl + n, g, all, mprec);

        if (!_acb_vec_overlaps(test, th2, 2 * nbth)
            || !_acb_vec_is_finite(test, 2 * nbth)
            || !_acb_vec_is_finite(th2, 2 * nbth))
        {
            flint_printf("FAIL\n");
            flint_printf("g = %wd, prec = %wd, tau, z:\n", g, prec);
            acb_mat_printd(tau, 5);
            _acb_vec_printd(z, 2 * g, 5);
            flint_printf("th2:\n");
            _acb_vec_printd(th2, 2 * nbth, 5);
            flint_printf("th_dupl:\n");
            _acb_vec_printd(th_dupl, 2 * n, 5);
            flint_printf("test:\n");
            _acb_vec_printd(test, 2 * nbth, 5);
            flint_abort();
        }

        acb_mat_clear(tau);
        _acb_vec_clear(z, 2 * g);
        acb_theta_ctx_tau_clear(ctx_tau);
        acb_theta_ctx_z_clear(ctx0);
        acb_theta_ctx_z_clear(ctx);
        _acb_vec_clear(th2, 2 * nbth);
        _acb_vec_clear(th_dupl, 2 * n);
        _acb_vec_clear(test, 2 * nbth);
        _arb_vec_clear(ds, 2 * n);
    }

    TEST_FUNCTION_END(state);
}