flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2012 Fredrik Johansson

    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_poly.h"

TEST_FUNCTION_START(acb_poly_mulmid_transpose, state)
{
    slong iter;

    for (iter = 0; iter < 100 * flint_test_multiplier(); iter++)
    {
        slong rbits1, rbits2, rbits3, nlo, nhi;
        acb_poly_t a, b, c, d;
        int aliasing = n_randint(state, 5);

        rbits1 = 2 + n_randint(state, 300);
        rbits2 = 2 + n_randint(state, 300);
        rbits3 = 2 + n_randint(state, 300);

        nlo = n_randint(state, 10);
        nhi = n_randint(state, 10);

        acb_poly_init(a);
        acb_poly_init(b);
        acb_poly_init(c);
        acb_poly_init(d);

        acb_poly_randtest(a, state, 1 + n_randint(state, 10), rbits1, 1 + n_randint(state, 100));
        acb_poly_randtest(b, state, 1 + n_randint(state, 10), rbits2, 1 + n_randint(state, 100));
        acb_poly_randtest(c, state, 1 + n_randint(state, 10), rbits2, 1 + n_randint(state, 100));

        if (aliasing == 0)
        {
            acb_poly_mulmid_transpose(c, a, b, nlo, nhi, rbits3);
        }
        else if (aliasing == 1)
        {
            acb_poly_set(c, a);
            acb_poly_mulmid_transpose(c, c, b, nlo, nhi, rbits3);
        }
        else if (aliasing == 2)
        {
            acb_poly_set(c, b);
            acb_poly_mulmid_transpose(c, a, c, nlo, nhi, rbits3);
        }
        else if (aliasing == 3)
        {
            acb_poly_set(b, a);
            acb_poly_mulmid_transpose(c, a, a, nlo, nhi, rbits3);
        }
        else
        {
            acb_poly_set(b, a);
            acb_poly_set(c, a);
            acb_poly_mulmid_transpose(c, c, c, nlo, nhi, rbits3);
        }

        acb_poly_mullow_classical(d, a, b, nhi, rbits3);
        acb_poly_shift_right(d, d, nlo);

        if (!acb_poly_overlaps(c, d))
        {
            flint_printf("FAIL: acb_poly_mulmid_transpose\n\n");
            flint_printf("bits3 = %wd\n", rbits3);
            flint_printf("nlo = %wd, nhi = %wd\n", nlo, nhi);

            flint_printf("a = "); acb_poly_printd(a, 15); flint_printf("\n\n");
            flint_printf("b = "); acb_poly_printd(b, 15); flint_printf("\n\n");
            flint_printf("c = "); acb_poly_printd(c, 15); flint_printf("\n\n");
            flint_printf("d = "); acb_poly_printd(c, 15); flint_printf("\n\n");

            flint_abort();
        }

        acb_poly_clear(a);
        acb_poly_clear(b);
        acb_poly_clear(c);
        acb_poly_clear(d);
    }

    TEST_FUNCTION_END(state);
}