flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2020 Daniel Schultz

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

/* Defined in t-factor.c, t-factor_wang.c, t-factor_zassenhaus.c and
 * t-factor_zippel.c */
#ifndef check_omega
#define check_omega check_omega
/* check total number of factors with multiplicity is between lower and upper */
void check_omega(
    slong lower,
    slong upper,
    const nmod_mpoly_t p,
    const nmod_mpoly_ctx_t ctx,
    int (* factor_fun)(nmod_mpoly_factor_t, const nmod_mpoly_t, const nmod_mpoly_ctx_t))
{
    slong i;
    nmod_mpoly_t q;
    nmod_mpoly_factor_t g, h;
    fmpz_t omega;

    fmpz_init(omega);
    nmod_mpoly_factor_init(g, ctx);
    nmod_mpoly_factor_init(h, ctx);
    nmod_mpoly_init(q, ctx);

    if (!factor_fun(g, p, ctx))
    {
        flint_printf("FAIL:\nfactorization 1 could be computed\n");
        fflush(stdout);
        flint_abort();
    }

    if (factor_fun != nmod_mpoly_factor)
    {
        if (!nmod_mpoly_factor(h, p, ctx))
        {
            flint_printf("FAIL:\nfactorization 2 could be computed\n");
            fflush(stdout);
            flint_abort();
        }
    }

    for (i = 0; i < g->num; i++)
    {
        if (g->poly[i].length < 1 || g->poly[i].coeffs[0] != 1)
        {
            flint_printf("FAIL:\nfactorization is not unit normal\n");
            fflush(stdout);
            flint_abort();
        }
    }

    fmpz_zero(omega);
    for (i = 0; i < g->num; i++)
        fmpz_add(omega, omega, g->exp + i);

    if (fmpz_cmp_si(omega, lower) < 0 || fmpz_cmp_si(omega, upper) > 0)
    {
        flint_printf("FAIL:\nfactorization has wrong number of factors\n");
        fflush(stdout);
        flint_abort();
    }

    nmod_mpoly_factor_expand(q, g, ctx);
    if (!nmod_mpoly_equal(q, p, ctx))
    {
        flint_printf("FAIL:\nfactorization does not match original polynomial\n");
        fflush(stdout);
        flint_abort();
    }

    if (factor_fun != nmod_mpoly_factor)
    {
        nmod_mpoly_factor_sort(g, ctx);
        nmod_mpoly_factor_sort(h, ctx);
        if (nmod_mpoly_factor_cmp(g, h, ctx) != 0)
        {
            flint_printf("FAIL:\nfactorizations do not match\n");
            fflush(stdout);
            flint_abort();
        }
    }

    for (i = 0; i < g->num; i++)
    {
        nmod_mpoly_factor(h, g->poly + i, ctx);
        if (h->num != 1 || !fmpz_is_one(h->exp + 0))
        {
            flint_printf("FAIL:\nfactor is reducible\n");
            fflush(stdout);
            flint_abort();
        }
    }

    nmod_mpoly_clear(q, ctx);
    nmod_mpoly_factor_clear(g, ctx);
    nmod_mpoly_factor_clear(h, ctx);
    fmpz_clear(omega);
}
#endif

TEST_FUNCTION_START(nmod_mpoly_factor_zassenhaus, state)
{
    slong i, j, tmul = 30;

    /* test some specific examples known to enter the recombination */
    {
        nmod_mpoly_ctx_t ctx;
        nmod_mpoly_t a;
        const char * vars[] = {"x1", "x2", "x3", "x4", "x5"};

        nmod_mpoly_ctx_init(ctx, 5, ORD_LEX, UWORD(7));
        nmod_mpoly_init(a, ctx);
        nmod_mpoly_set_str_pretty(a, "x1^5*x2^5*x3^3*x4^2*x5+3*x1^5*x2^2*x3*x4^2*x5^3+5*x1^4*x2^3*x3^3*x4^2*x5+4*x1^4*x2^2*x3^3*x4+6*x1^3*x2^5*x3^4*x4^5*x5^4+4*x1^3*x2^3*x3^2*x5^3+4*x1^3*x2^2*x3^2*x4^5*x5^6+5*x1^2*x2^5*x3^5*x4^5*x5^2+4*x1^2*x2^5*x3^5*x4^3*x5+2*x1^2*x2^4*x3^2*x4^2*x5^2+2*x1^2*x2^3*x3^5*x4^2*x5^4+2*x1^2*x2^3*x3^4*x4^5*x5^4+3*x1^2*x2^2*x3^4*x4^4*x5^3+x1^2*x2^2*x3^3*x4^5*x5^4+5*x1^2*x2^2*x3^3*x4^3*x5^3+6*x1^2*x2*x4^2*x5^4+6*x1^2*x3^3*x4^2*x5^6+4*x1*x2^3*x3^5*x4^5*x5^2+6*x1*x2^3*x3^5*x4^3*x5+3*x1*x2^3*x3^3*x4^3*x5^6+6*x1*x2^2*x3^5*x4^4*x5+2*x1*x2^2*x3^5*x4^2+3*x1*x2^2*x3^2*x4^2*x5^2+3*x1*x2*x3^5*x4^2*x5^4+x1*x2*x3^2*x4*x5+x1*x3^5*x4*x5^3+6*x2^3*x3^4*x4^3*x5^4+2*x2^3*x3^4*x4*x5^3+x2^2*x3*x5^4+x2*x3^4*x5^6", vars, ctx);
        check_omega(2, 2, a, ctx, nmod_mpoly_factor_zassenhaus);
        nmod_mpoly_clear(a, ctx);
        nmod_mpoly_ctx_clear(ctx);

        nmod_mpoly_ctx_init(ctx, 4, ORD_LEX, UWORD(5));
        nmod_mpoly_init(a, ctx);
        nmod_mpoly_set_str_pretty(a, "x1^5*x2^3*x3^2*x4^3+2*x1^5*x2^2*x3^3*x4^4+x1^5*x2^2*x3^2*x4^4+2*x1^5*x2*x3^3*x4^5+x1^4*x2^5*x3*x4^3+3*x1^4*x2^5*x4^2+x1^4*x2^4*x3*x4^4+3*x1^4*x2^4*x4^3+2*x1^4*x2^3*x3^3*x4^2+x1^4*x2^3*x4^4+2*x1^4*x2^2*x3^3*x4^3+2*x1^4*x2^2*x3^3*x4+x1^4*x2^2*x4^5+4*x1^4*x2*x3^4*x4^2+x1^4*x2*x3^2*x4^2+2*x1^4*x3^3*x4^3+3*x1^3*x2^5*x3^3*x4^2+3*x1^3*x2^4*x3^3*x4^3+2*x1^3*x2^4*x3^2*x4+x1^3*x2^4*x3+x1^3*x2^3*x3*x4^2+3*x1^3*x2^3*x4+4*x1^3*x2^2*x3^4+3*x1^3*x2^2*x3*x4^3+2*x1^3*x2^2*x3*x4^2+3*x1^3*x2*x3^5*x4^3+2*x1^3*x2*x3^3*x4+3*x1^3*x2*x3*x4^4+x1^3*x2*x4^3+x1^3*x3^6*x4^4+x1^2*x2^4*x3^4+3*x1^2*x2^3*x3^4*x4^3+4*x1^2*x2^3*x3^3*x4^5+4*x1^2*x2^3*x3^3*x4^2+3*x1^2*x2^3*x3^3*x4+4*x1^2*x2^2*x3^3*x4^6+x1^2*x2*x3^6*x4^2+3*x1^2*x2*x3^3*x4^4+x1^2*x2*x3^2*x4+3*x1^2*x3*x4^2+4*x1*x2^3*x3^6*x4^2+3*x1*x2^2*x3^4*x4^3+4*x1*x2*x3^3*x4^4+4*x1*x3^4*x4^3+2*x2*x3^6*x4^5", vars, ctx);
        check_omega(2, 2, a, ctx, nmod_mpoly_factor_zassenhaus);
        nmod_mpoly_clear(a, ctx);
        nmod_mpoly_ctx_clear(ctx);
    }

    for (i = 0; i < tmul * flint_test_multiplier(); i++)
    {
        slong lower;
        nmod_mpoly_ctx_t ctx;
        nmod_mpoly_t a, t;
        slong n, nfacs, len;
        ulong expbound, powbound, pow;
        ulong p;

        p = n_randint(state, (i % 2 == 0) ? 4 : FLINT_BITS - 1) + 1;
        p = n_randbits(state, p);
        p = n_nextprime(p, 1);

        nmod_mpoly_ctx_init_rand(ctx, state, 5, p);

        nmod_mpoly_init(a, ctx);
        nmod_mpoly_init(t, ctx);

        n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
        nfacs = 1 + (6 + n_randint(state, 6))/n;
        powbound = 1 + n_randint(state, 3);
        powbound = 1 + n_randint(state, powbound);
        expbound = 3 + 15/nfacs/n/powbound;

        lower = 0;
        nmod_mpoly_one(a, ctx);
        for (j = 0; j < nfacs; j++)
        {
            len = 1 + n_randint(state, 10/powbound);
            nmod_mpoly_randtest_bound(t, state, len, expbound, ctx);
            if (nmod_mpoly_is_zero(t, ctx))
                nmod_mpoly_one(t, ctx);
            pow = 1 + n_randint(state, powbound);
            if (!nmod_mpoly_is_ui(t, ctx))
                lower += pow;
            nmod_mpoly_pow_ui(t, t, pow, ctx);
            nmod_mpoly_mul(a, a, t, ctx);
        }

        check_omega(lower, WORD_MAX, a, ctx, nmod_mpoly_factor_zassenhaus);

        nmod_mpoly_clear(t, ctx);
        nmod_mpoly_clear(a, ctx);
        nmod_mpoly_ctx_clear(ctx);
    }

    TEST_FUNCTION_END(state);
}