flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2020 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 "qqbar.h"

TEST_FUNCTION_START(qqbar_cmpabs_im, state)
{
    slong iter;

    for (iter = 0; iter < 1000 * 0.1 * flint_test_multiplier(); iter++)
    {
        qqbar_t x, y, xr, yr, z, i;
        int c1, c2;

        qqbar_init(x);
        qqbar_init(y);
        qqbar_init(xr);
        qqbar_init(yr);
        qqbar_init(z);
        qqbar_init(i);

        qqbar_randtest(x, state, 3, 100);

        if (n_randint(state, 4) == 0)
            qqbar_conj(y, x);
        else
            qqbar_randtest(y, state, 3, 100);

        qqbar_im(xr, x);
        qqbar_im(yr, y);
        qqbar_abs(xr, xr);
        qqbar_abs(yr, yr);

        if (n_randint(state, 2))
        {
            qqbar_i(i);
            qqbar_randtest(z, state, 1, 100);
            qqbar_mul(z, z, i);
            qqbar_add(x, x, z);
            qqbar_sub(x, x, z);
        }

        c1 = qqbar_cmpabs_im(x, y);
        c2 = qqbar_cmp_re(xr, yr);

        if (c1 != c2)
        {
            flint_printf("FAIL!\n");
            flint_printf("x = "); qqbar_print(x); flint_printf("\n\n");
            flint_printf("y = "); qqbar_print(y); flint_printf("\n\n");
            flint_printf("%d\n\n", c1);
            flint_printf("%d\n\n", c2);
            flint_abort();
        }

        qqbar_clear(x);
        qqbar_clear(y);
        qqbar_clear(xr);
        qqbar_clear(yr);
        qqbar_clear(z);
        qqbar_clear(i);
    }

    TEST_FUNCTION_END(state);
}