/* 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 2.1 of the License, or (at your option) any later version. See . */ #include #include #include "fq_nmod_mpoly.h" int main(void) { slong i, j, v; FLINT_TEST_INIT(state); flint_printf("compose_fq_nmod_mpoly...."); fflush(stdout); { fq_nmod_mpoly_t A, A1, A2, B; fq_nmod_mpoly_struct * Cp[3]; fq_nmod_mpoly_struct C[3]; fq_nmod_mpoly_ctx_t ctxAC, ctxB; fq_nmod_mpoly_ctx_init_deg(ctxB, 3, ORD_LEX, 13, 3); fq_nmod_mpoly_ctx_init(ctxAC, 2, ORD_LEX, ctxB->fqctx); fq_nmod_mpoly_init(B, ctxB); fq_nmod_mpoly_init(A, ctxAC); fq_nmod_mpoly_init(A1, ctxAC); fq_nmod_mpoly_init(A2, ctxAC); for (i = 0; i < 3; i++) { Cp[i] = C + i; fq_nmod_mpoly_init(C + i, ctxAC); } fq_nmod_mpoly_set_str_pretty(B, "1 + x1*x2^2 + x2^9999999999999999999999999*x3^9", NULL, ctxB); fq_nmod_mpoly_set_str_pretty(C + 0, "x1 + x2", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 1, "x1 - x2", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 2, "1", NULL, ctxAC); if (fq_nmod_mpoly_compose_fq_nmod_mpoly(A, B, Cp, ctxB, ctxAC) || fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(A1, B, Cp, ctxB, ctxAC) || fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(A2, B, Cp, ctxB, ctxAC)) { printf("FAIL\n"); flint_printf("Check non-example 1\n", i); flint_abort(); } fq_nmod_mpoly_set_str_pretty(C + 0, "x1", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 1, "2*x2", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 2, "1", NULL, ctxAC); if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(A, B, Cp, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(A1, B, Cp, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(A2, B, Cp, ctxB, ctxAC)) { printf("FAIL\n"); flint_printf("Check non-example 2\n", i); flint_abort(); } fq_nmod_mpoly_set_str_pretty(C + 0, "2*x1", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 1, "x2", NULL, ctxAC); fq_nmod_mpoly_set_str_pretty(C + 2, "1", NULL, ctxAC); if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(A, B, Cp, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(A1, B, Cp, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(A2, B, Cp, ctxB, ctxAC)) { printf("FAIL\n"); flint_printf("Check example 3\n", i); flint_abort(); } fq_nmod_mpoly_clear(B, ctxB); fq_nmod_mpoly_clear(A, ctxAC); fq_nmod_mpoly_clear(A1, ctxAC); fq_nmod_mpoly_clear(A2, ctxAC); for (i = 0; i < 3; i++) fq_nmod_mpoly_clear(C + i, ctxAC); fq_nmod_mpoly_ctx_clear(ctxB); fq_nmod_mpoly_ctx_clear(ctxAC); } /* check composition with generators */ for (i = 0; i < 10*flint_test_multiplier(); i++) { fq_nmod_mpoly_ctx_t ctxB, ctxAC; fq_nmod_mpoly_t B, A, A1, A2, A3; fq_nmod_mpoly_struct ** C; slong * c; slong nvarsB, nvarsAC; slong len; flint_bitcnt_t exp_bits; fq_nmod_mpoly_ctx_init_rand(ctxB, state, 5, FLINT_BITS, 3); fq_nmod_mpoly_ctx_init(ctxAC, n_randint(state, 5) + 1, mpoly_ordering_randtest(state), ctxB->fqctx); nvarsB = ctxB->minfo->nvars; nvarsAC = ctxAC->minfo->nvars; fq_nmod_mpoly_init(B, ctxB); fq_nmod_mpoly_init(A, ctxAC); fq_nmod_mpoly_init(A1, ctxAC); fq_nmod_mpoly_init(A2, ctxAC); fq_nmod_mpoly_init(A3, ctxAC); c = (slong *) flint_malloc(nvarsB*sizeof(slong)); C = (fq_nmod_mpoly_struct **) flint_malloc(nvarsB * sizeof(fq_nmod_mpoly_struct *)); for (v = 0; v < nvarsB; v++) { C[v] = (fq_nmod_mpoly_struct *) flint_malloc(sizeof(fq_nmod_mpoly_struct)); fq_nmod_mpoly_init(C[v], ctxAC); } for (j = 0; j < 4; j++) { len = n_randint(state, 200); exp_bits = n_randint(state, 100) + 1; for (v = 0; v < nvarsB; v++) { c[v] = n_randint(state, nvarsAC + 2) - 2; if (c[v] >= 0) fq_nmod_mpoly_gen(C[v], c[v], ctxAC); else fq_nmod_mpoly_zero(C[v], ctxAC); } fq_nmod_mpoly_randtest_bits(B, state, len, exp_bits, ctxB); fq_nmod_mpoly_compose_fq_nmod_mpoly_gen(A, B, c, ctxB, ctxAC); if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(A1, B, C, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(A2, B, C, ctxB, ctxAC) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(A3, B, C, ctxB, ctxAC)) { printf("FAIL\n"); flint_printf("Check composition success with generators\n" "i: %wd, j: %wd\n", i, j); flint_abort(); } if (!fq_nmod_mpoly_equal(A, A1, ctxAC) || !fq_nmod_mpoly_equal(A, A2, ctxAC) || !fq_nmod_mpoly_equal(A, A3, ctxAC)) { printf("FAIL\n"); flint_printf("Check composition with generators\n" "i: %wd, j: %wd\n", i, j); flint_abort(); } fq_nmod_mpoly_assert_canonical(A, ctxAC); fq_nmod_mpoly_assert_canonical(A1, ctxAC); fq_nmod_mpoly_assert_canonical(A2, ctxAC); fq_nmod_mpoly_assert_canonical(A3, ctxAC); } for (v = 0; v < nvarsB; v++) { fq_nmod_mpoly_clear(C[v], ctxAC); flint_free(C[v]); } flint_free(C); flint_free(c); fq_nmod_mpoly_clear(B, ctxB); fq_nmod_mpoly_clear(A, ctxAC); fq_nmod_mpoly_clear(A1, ctxAC); fq_nmod_mpoly_clear(A2, ctxAC); fq_nmod_mpoly_clear(A3, ctxAC); fq_nmod_mpoly_ctx_clear(ctxB); fq_nmod_mpoly_ctx_clear(ctxAC); } /* Check composition with identity */ for (i = 0; i < 10*flint_test_multiplier(); i++) { slong nvars, len, exp_bits; fq_nmod_mpoly_struct ** vals1; fq_nmod_mpoly_t f, g, g1, g2; fq_nmod_mpoly_ctx_t ctx; fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10); nvars = ctx->minfo->nvars; vals1 = (fq_nmod_mpoly_struct **) flint_malloc(nvars*sizeof(fq_nmod_mpoly_struct *)); for (v = 0; v < nvars; v++) { vals1[v] = (fq_nmod_mpoly_struct *) flint_malloc(sizeof(fq_nmod_mpoly_struct)); fq_nmod_mpoly_init(vals1[v], ctx); fq_nmod_mpoly_gen(vals1[v], v, ctx); } fq_nmod_mpoly_init(f, ctx); fq_nmod_mpoly_init(g, ctx); fq_nmod_mpoly_init(g1, ctx); fq_nmod_mpoly_init(g2, ctx); len = n_randint(state, 50); exp_bits = n_randint(state, 100) + 1; fq_nmod_mpoly_randtest_bits(g, state, len, exp_bits, ctx); fq_nmod_mpoly_randtest_bits(f, state, len, exp_bits, ctx); if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(g, f, vals1, ctx, ctx) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(g1, f, vals1, ctx, ctx) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(g2, f, vals1, ctx, ctx) || !fq_nmod_mpoly_equal(g, g1, ctx) || !fq_nmod_mpoly_equal(g, g2, ctx)) { printf("FAIL\n"); flint_printf("Check composition success\ni: %wd\n", i); flint_abort(); } fq_nmod_mpoly_assert_canonical(g, ctx); fq_nmod_mpoly_assert_canonical(g1, ctx); fq_nmod_mpoly_assert_canonical(g2, ctx); if (!fq_nmod_mpoly_equal(f, g, ctx)) { printf("FAIL\n"); flint_printf("Check composition with identity\ni: %wd\n", i); flint_abort(); } fq_nmod_mpoly_clear(f, ctx); fq_nmod_mpoly_clear(g, ctx); fq_nmod_mpoly_clear(g1, ctx); fq_nmod_mpoly_clear(g2, ctx); for (v = 0; v < nvars; v++) { fq_nmod_mpoly_clear(vals1[v], ctx); flint_free(vals1[v]); } flint_free(vals1); fq_nmod_mpoly_ctx_clear(ctx); } /* Check composition and evalall commute */ for (i = 0; i < 40*flint_test_multiplier(); i++) { fq_nmod_mpoly_ctx_t ctx1, ctx2; fq_nmod_mpoly_t f, g, g1, g2; fq_nmod_mpoly_struct ** vals1; fq_nmod_t fe, ge; fq_nmod_struct ** vals2, ** vals3; slong nvars1, nvars2; slong len1, len2; slong exp_bound1; flint_bitcnt_t exp_bits2; fq_nmod_mpoly_ctx_init_rand(ctx1, state, 3, FLINT_BITS, 10); fq_nmod_mpoly_ctx_init(ctx2, n_randint(state, 5) + 1, mpoly_ordering_randtest(state), ctx1->fqctx); nvars1 = ctx1->minfo->nvars; nvars2 = ctx2->minfo->nvars; fq_nmod_mpoly_init(f, ctx1); fq_nmod_mpoly_init(g, ctx2); fq_nmod_mpoly_init(g1, ctx2); fq_nmod_mpoly_init(g2, ctx2); fq_nmod_init(fe, ctx1->fqctx); fq_nmod_init(ge, ctx1->fqctx); len1 = n_randint(state, 50/nvars1 + 1); len2 = n_randint(state, 10/nvars2 + 1); exp_bound1 = n_randint(state, 10/nvars1 + 1) + 1; exp_bits2 = n_randint(state, 100) + 1; fq_nmod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx1); vals1 = (fq_nmod_mpoly_struct **) flint_malloc(nvars1 * sizeof(fq_nmod_mpoly_struct *)); for (v = 0; v < nvars1; v++) { vals1[v] = (fq_nmod_mpoly_struct *) flint_malloc( sizeof(fq_nmod_mpoly_struct)); fq_nmod_mpoly_init(vals1[v], ctx2); fq_nmod_mpoly_randtest_bound(vals1[v], state, len2, exp_bits2, ctx2); } vals2 = (fq_nmod_struct **) flint_malloc(nvars2*sizeof(fq_nmod_struct*)); for (v = 0; v < nvars2; v++) { vals2[v] = (fq_nmod_struct *) flint_malloc(sizeof(fq_nmod_struct)); fq_nmod_init(vals2[v], ctx1->fqctx); fq_nmod_randtest(vals2[v], state, ctx1->fqctx); } vals3 = (fq_nmod_struct **) flint_malloc(nvars1*sizeof(fq_nmod_struct*)); for (v = 0; v < nvars1; v++) { vals3[v] = (fq_nmod_struct *) flint_malloc(sizeof(fq_nmod_struct)); fq_nmod_init(vals3[v], ctx1->fqctx); fq_nmod_mpoly_evaluate_all_fq_nmod(vals3[v], vals1[v], vals2, ctx2); } if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(g, f, vals1, ctx1, ctx2) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(g1, f, vals1, ctx1, ctx2) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(g2, f, vals1, ctx1, ctx2) || !fq_nmod_mpoly_equal(g, g1, ctx2) || !fq_nmod_mpoly_equal(g, g2, ctx2)) { printf("FAIL\n"); flint_printf("Check composition success\ni: %wd\n", i); flint_abort(); } fq_nmod_mpoly_assert_canonical(g, ctx2); fq_nmod_mpoly_assert_canonical(g1, ctx2); fq_nmod_mpoly_assert_canonical(g2, ctx2); fq_nmod_mpoly_evaluate_all_fq_nmod(fe, f, vals3, ctx1); fq_nmod_mpoly_evaluate_all_fq_nmod(ge, g, vals2, ctx2); if (!fq_nmod_equal(fe, ge, ctx1->fqctx)) { printf("FAIL\n"); flint_printf("Check composition and evalall commute\ni: %wd\n", i); flint_abort(); } for (v = 0; v < nvars1; v++) { fq_nmod_mpoly_clear(vals1[v], ctx2); flint_free(vals1[v]); } flint_free(vals1); for (v = 0; v < nvars2; v++) { fq_nmod_clear(vals2[v], ctx1->fqctx); flint_free(vals2[v]); } flint_free(vals2); for (v = 0; v < nvars1; v++) { fq_nmod_clear(vals3[v], ctx1->fqctx); flint_free(vals3[v]); } flint_free(vals3); fq_nmod_clear(fe, ctx1->fqctx); fq_nmod_clear(ge, ctx2->fqctx); fq_nmod_mpoly_clear(f, ctx1); fq_nmod_mpoly_clear(g, ctx2); fq_nmod_mpoly_clear(g1, ctx2); fq_nmod_mpoly_clear(g2, ctx2); fq_nmod_mpoly_ctx_clear(ctx1); fq_nmod_mpoly_ctx_clear(ctx2); } /* Check composition with constants matches evalall */ for (i = 0; i < 10*flint_test_multiplier(); i++) { fq_nmod_mpoly_ctx_t ctx1, ctx2; fq_nmod_mpoly_t f, g, g1, g2; fq_nmod_mpoly_struct ** vals1; fq_nmod_struct ** vals2; fq_nmod_t e1, e2; slong nvars1; slong len1; flint_bitcnt_t exp_bits1; fq_nmod_mpoly_ctx_init_rand(ctx1, state, 10, FLINT_BITS, 10); fq_nmod_mpoly_ctx_init(ctx2, n_randint(state, 10) + 1, mpoly_ordering_randtest(state), ctx1->fqctx); nvars1 = ctx1->minfo->nvars; fq_nmod_init(e1, ctx1->fqctx); fq_nmod_init(e2, ctx1->fqctx); fq_nmod_mpoly_init(f, ctx1); fq_nmod_mpoly_init(g, ctx2); fq_nmod_mpoly_init(g1, ctx2); fq_nmod_mpoly_init(g2, ctx2); len1 = n_randint(state, 50); exp_bits1 = n_randint(state, 100) + 1; fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx1); vals1 = (fq_nmod_mpoly_struct **) flint_malloc(nvars1 * sizeof(fq_nmod_mpoly_struct *)); vals2 = (fq_nmod_struct **) flint_malloc(nvars1*sizeof(fq_nmod_struct *)); for (v = 0; v < nvars1; v++) { vals1[v] = (fq_nmod_mpoly_struct *) flint_malloc( sizeof(fq_nmod_mpoly_struct)); fq_nmod_mpoly_init(vals1[v], ctx2); vals2[v] = (fq_nmod_struct *) flint_malloc(sizeof(fq_nmod_struct)); fq_nmod_init(vals2[v], ctx1->fqctx); fq_nmod_randtest(vals2[v], state, ctx1->fqctx); fq_nmod_mpoly_set_fq_nmod(vals1[v], vals2[v], ctx2); } if (!fq_nmod_mpoly_compose_fq_nmod_mpoly(g, f, vals1, ctx1, ctx2) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_geobucket(g1, f, vals1, ctx1, ctx2) || !fq_nmod_mpoly_compose_fq_nmod_mpoly_horner(g2, f, vals1, ctx1, ctx2)) { printf("FAIL\n"); flint_printf("Check composition success\ni: %wd\n", i); flint_abort(); } fq_nmod_mpoly_assert_canonical(g, ctx2); fq_nmod_mpoly_assert_canonical(g1, ctx2); fq_nmod_mpoly_assert_canonical(g2, ctx2); fq_nmod_mpoly_evaluate_all_fq_nmod(e2, f, vals2, ctx1); if (!fq_nmod_mpoly_is_fq_nmod(g, ctx2) || (fq_nmod_mpoly_get_fq_nmod(e1, g, ctx2), !fq_nmod_equal(e1, e2, ctx1->fqctx))) { printf("FAIL\n"); flint_printf("Check composition with constants matches evalall\ni: %wd\n", i); flint_abort(); } for (v = 0; v < nvars1; v++) { fq_nmod_mpoly_clear(vals1[v], ctx2); flint_free(vals1[v]); fq_nmod_clear(vals2[v], ctx1->fqctx); flint_free(vals2[v]); } flint_free(vals1); flint_free(vals2); fq_nmod_clear(e1, ctx1->fqctx); fq_nmod_clear(e2, ctx1->fqctx); fq_nmod_mpoly_clear(f, ctx1); fq_nmod_mpoly_clear(g, ctx2); fq_nmod_mpoly_clear(g1, ctx2); fq_nmod_mpoly_clear(g2, ctx2); fq_nmod_mpoly_ctx_clear(ctx1); fq_nmod_mpoly_ctx_clear(ctx2); } printf("PASS\n"); FLINT_TEST_CLEANUP(state); return 0; }