#include "test_helpers.h"
#include "fmpz.h"
#include "fq_nmod.h"
#include "n_poly.h"
#include "fq_nmod_mpoly_factor.h"
int compute_gcd(
fq_nmod_mpoly_t G,
const fq_nmod_mpoly_t A,
const fq_nmod_mpoly_t B,
const fq_nmod_mpoly_ctx_t ctx)
{
int success;
slong var = 0;
fq_nmod_mpoly_t Ac, Bc, Gc, s, t;
fq_nmod_mpoly_univar_t Ax, Bx, Gx;
if (fq_nmod_mpoly_is_zero(A, ctx) || fq_nmod_mpoly_is_zero(B, ctx))
return fq_nmod_mpoly_gcd(G, A, B, ctx);
fq_nmod_mpoly_init(Ac, ctx);
fq_nmod_mpoly_init(Bc, ctx);
fq_nmod_mpoly_init(Gc, ctx);
fq_nmod_mpoly_init(s, ctx);
fq_nmod_mpoly_init(t, ctx);
fq_nmod_mpoly_univar_init(Ax, ctx);
fq_nmod_mpoly_univar_init(Bx, ctx);
fq_nmod_mpoly_univar_init(Gx, ctx);
fq_nmod_mpoly_to_univar(Ax, A, var, ctx);
fq_nmod_mpoly_to_univar(Bx, B, var, ctx);
success = _fq_nmod_mpoly_vec_content_mpoly(Ac, Ax->coeffs, Ax->length, ctx) &&
_fq_nmod_mpoly_vec_content_mpoly(Bc, Bx->coeffs, Bx->length, ctx) &&
fq_nmod_mpoly_gcd(Gc, Ac, Bc, ctx);
if (!success)
goto cleanup;
_fq_nmod_mpoly_vec_divexact_mpoly(Ax->coeffs, Ax->length, Ac, ctx);
_fq_nmod_mpoly_vec_divexact_mpoly(Bx->coeffs, Bx->length, Bc, ctx);
success = fmpz_cmp(Ax->exps + 0, Bx->exps + 0) > 0 ?
fq_nmod_mpoly_univar_pseudo_gcd(Gx, Ax, Bx, ctx) :
fq_nmod_mpoly_univar_pseudo_gcd(Gx, Bx, Ax, ctx);
if (!success)
goto cleanup;
if (fq_nmod_mpoly_gcd(t, Ax->coeffs + 0, Bx->coeffs + 0, ctx) &&
t->length == 1)
{
fq_nmod_mpoly_term_content(s, Gx->coeffs + 0, ctx);
fq_nmod_mpoly_divexact(t, Gx->coeffs + 0, s, ctx);
_fq_nmod_mpoly_vec_divexact_mpoly(Gx->coeffs, Gx->length, t, ctx);
}
else if (fq_nmod_mpoly_gcd(t, Ax->coeffs + Ax->length - 1,
Bx->coeffs + Bx->length - 1, ctx) && t->length == 1)
{
fq_nmod_mpoly_term_content(s, Gx->coeffs + Gx->length - 1, ctx);
fq_nmod_mpoly_divexact(t, Gx->coeffs + Gx->length - 1, s, ctx);
_fq_nmod_mpoly_vec_divexact_mpoly(Gx->coeffs, Gx->length, t, ctx);
}
success = _fq_nmod_mpoly_vec_content_mpoly(t, Gx->coeffs, Gx->length, ctx);
if (!success)
goto cleanup;
_fq_nmod_mpoly_vec_divexact_mpoly(Gx->coeffs, Gx->length, t, ctx);
_fq_nmod_mpoly_vec_mul_mpoly(Gx->coeffs, Gx->length, Gc, ctx);
_fq_nmod_mpoly_from_univar(G, FLINT_MIN(A->bits, B->bits), Gx, var, ctx);
fq_nmod_mpoly_make_monic(G, G, ctx);
success = 1;
cleanup:
fq_nmod_mpoly_clear(Ac, ctx);
fq_nmod_mpoly_clear(Bc, ctx);
fq_nmod_mpoly_clear(Gc, ctx);
fq_nmod_mpoly_clear(s, ctx);
fq_nmod_mpoly_clear(t, ctx);
fq_nmod_mpoly_univar_clear(Ax, ctx);
fq_nmod_mpoly_univar_clear(Bx, ctx);
fq_nmod_mpoly_univar_clear(Gx, ctx);
return success;
}
void gcd_check(
fq_nmod_mpoly_t g,
fq_nmod_mpoly_t a,
fq_nmod_mpoly_t b,
const fq_nmod_mpoly_t gdiv,
fq_nmod_mpoly_ctx_t ctx,
slong i,
slong j,
const char * name)
{
int res;
fq_nmod_mpoly_t ca, cb, cg;
fq_nmod_mpoly_init(ca, ctx);
fq_nmod_mpoly_init(cb, ctx);
fq_nmod_mpoly_init(cg, ctx);
res = compute_gcd(g, a, b, ctx);
fq_nmod_mpoly_assert_canonical(g, ctx);
if (!res)
{
flint_printf("FAIL: Check gcd can be computed\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
if (!fq_nmod_mpoly_is_zero(gdiv, ctx))
{
if (!fq_nmod_mpoly_divides(ca, g, gdiv, ctx))
{
flint_printf("FAIL: Check divisor of gcd\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
}
if (fq_nmod_mpoly_is_zero(g, ctx))
{
if (!fq_nmod_mpoly_is_zero(a, ctx) || !fq_nmod_mpoly_is_zero(b, ctx))
{
flint_printf("FAIL: Check zero gcd\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
goto cleanup;
}
if (!_n_fq_is_one(g->coeffs, fq_nmod_ctx_degree(ctx->fqctx)))
{
flint_printf("FAIL: Check gcd is monic\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
res = 1;
res = res && fq_nmod_mpoly_divides(ca, a, g, ctx);
res = res && fq_nmod_mpoly_divides(cb, b, g, ctx);
if (!res)
{
flint_printf("FAIL: Check divisibility\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
res = compute_gcd(cg, ca, cb, ctx);
fq_nmod_mpoly_assert_canonical(cg, ctx);
if (!res)
{
flint_printf("FAIL: Check gcd of cofactors can be computed\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
if (!fq_nmod_mpoly_is_one(cg, ctx))
{
flint_printf("FAIL: Check gcd of cofactors is one\n");
flint_printf("i = %wd, j = %wd, %s\n", i, j, name);
fflush(stdout);
flint_abort();
}
cleanup:
fq_nmod_mpoly_clear(ca, ctx);
fq_nmod_mpoly_clear(cb, ctx);
fq_nmod_mpoly_clear(cg, ctx);
}
TEST_FUNCTION_START(fq_nmod_mpoly_factor_gcd_subresultant, state)
{
slong i, j, tmul = 15;
for (i = 0; i < tmul * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t a, b, g, t;
slong len, len1, len2;
slong degbound;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 4, FLINT_BITS, 4);
if (fq_nmod_mpoly_ctx_nvars(ctx) < 1)
{
fq_nmod_mpoly_ctx_clear(ctx);
continue;
}
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(a, ctx);
fq_nmod_mpoly_init(b, ctx);
fq_nmod_mpoly_init(t, ctx);
len = n_randint(state, 10) + 1;
len1 = n_randint(state, 10);
len2 = n_randint(state, 10);
degbound = 1 + 10/ctx->minfo->nvars;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bound(t, state, len, degbound, ctx);
if (fq_nmod_mpoly_is_zero(t, ctx))
fq_nmod_mpoly_one(t, ctx);
fq_nmod_mpoly_randtest_bound(a, state, len1, degbound, ctx);
fq_nmod_mpoly_randtest_bound(b, state, len2, degbound, ctx);
fq_nmod_mpoly_mul(a, a, t, ctx);
fq_nmod_mpoly_mul(b, b, t, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len, FLINT_BITS, ctx);
gcd_check(g, a, b, t, ctx, i, j, "random dense");
}
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(a, ctx);
fq_nmod_mpoly_clear(b, ctx);
fq_nmod_mpoly_clear(t, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
TEST_FUNCTION_END(state);
}