/* 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 "fmpz_mod_mpoly.h" int main(void) { slong i, j; FLINT_TEST_INIT(state); flint_printf("divrem...."); fflush(stdout); /* Check f*g/g = f */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, k, r; slong len, len1, len2; flint_bitcnt_t exp_bits, exp_bits1, exp_bits2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(k, ctx); fmpz_mod_mpoly_init(r, ctx); len = n_randint(state, 100); len1 = n_randint(state, 100); len2 = n_randint(state, 100) + 1; exp_bits = n_randint(state, FLINT_BITS - 2) + 1; exp_bits1 = n_randint(state, FLINT_BITS - 2) + 1; exp_bits2 = n_randint(state, FLINT_BITS - 2) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bits2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bits(h, state, len, exp_bits, ctx); fmpz_mod_mpoly_randtest_bits(k, state, len, exp_bits, ctx); fmpz_mod_mpoly_randtest_bits(r, state, len, exp_bits, ctx); fmpz_mod_mpoly_mul(h, f, g, ctx); fmpz_mod_mpoly_divrem(k, r, h, g, ctx); fmpz_mod_mpoly_assert_canonical(k, ctx); fmpz_mod_mpoly_assert_canonical(r, ctx); if (!fmpz_mod_mpoly_equal(f, k, ctx)) { flint_printf("FAIL: Check f*g/g = f\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(k, ctx); fmpz_mod_mpoly_clear(r, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } /* Check f = g*q + r for random polys */ for (i = 0; i < 40 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, k, r; slong len, len1, len2, exp_bound, exp_bound1, exp_bound2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(k, ctx); fmpz_mod_mpoly_init(r, ctx); len = n_randint(state, 10); len1 = n_randint(state, 20); len2 = n_randint(state, 10) + 1; exp_bound = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound1 = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound2 = n_randint(state, 50/ctx->minfo->nvars) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bound2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bound(h, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(k, state, len, exp_bound, ctx); fmpz_mod_mpoly_divrem(h, r, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r, ctx); fmpz_mod_mpoly_remainder_strongtest(r, g, ctx); fmpz_mod_mpoly_mul(k, h, g, ctx); fmpz_mod_mpoly_add(k, k, r, ctx); fmpz_mod_mpoly_assert_canonical(k, ctx); if (!fmpz_mod_mpoly_equal(f, k, ctx)) { flint_printf("FAIL: Check f = g*q + r for random polys\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(k, ctx); fmpz_mod_mpoly_clear(r, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } /* Check aliasing of quotient with first argument */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, r1, r2; slong len, len1, len2, exp_bound, exp_bound1, exp_bound2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(r1, ctx); fmpz_mod_mpoly_init(r2, ctx); len = n_randint(state, 10); len1 = n_randint(state, 10); len2 = n_randint(state, 10) + 1; exp_bound = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound1 = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound2 = n_randint(state, 50/ctx->minfo->nvars) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bound2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bound(h, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r1, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r2, state, len, exp_bound, ctx); fmpz_mod_mpoly_divrem(h, r1, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r1, ctx); fmpz_mod_mpoly_remainder_strongtest(r1, g, ctx); fmpz_mod_mpoly_divrem(f, r2, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r2, ctx); fmpz_mod_mpoly_remainder_strongtest(r2, g, ctx); if (!(fmpz_mod_mpoly_equal(h, f, ctx) && fmpz_mod_mpoly_equal(r1, r2, ctx))) { flint_printf("FAIL: Check aliasing of quotient with first argument\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(r1, ctx); fmpz_mod_mpoly_clear(r2, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } /* Check aliasing of quotient with second argument */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, r1, r2; slong len, len1, len2, exp_bound, exp_bound1, exp_bound2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(r1, ctx); fmpz_mod_mpoly_init(r2, ctx); len = n_randint(state, 10); len1 = n_randint(state, 10); len2 = n_randint(state, 10) + 1; exp_bound = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound1 = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound2 = n_randint(state, 50/ctx->minfo->nvars) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bound2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bound(h, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r1, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r2, state, len, exp_bound, ctx); fmpz_mod_mpoly_divrem(h, r1, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r1, ctx); fmpz_mod_mpoly_remainder_strongtest(r1, g, ctx); fmpz_mod_mpoly_divrem(g, r2, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r2, ctx); if (!(fmpz_mod_mpoly_equal(h, g, ctx) && fmpz_mod_mpoly_equal(r1, r2, ctx))) { flint_printf("FAIL: Check aliasing of quotient with second argument\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(r1, ctx); fmpz_mod_mpoly_clear(r2, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } /* Check aliasing of remainder with first argument */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, k, r1; slong len, len1, len2, exp_bound, exp_bound1, exp_bound2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(k, ctx); fmpz_mod_mpoly_init(r1, ctx); len = n_randint(state, 10); len1 = n_randint(state, 10); len2 = n_randint(state, 10) + 1; exp_bound = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound1 = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound2 = n_randint(state, 50/ctx->minfo->nvars) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bound2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bound(h, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(k, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r1, state, len, exp_bound, ctx); fmpz_mod_mpoly_mul(h, f, g, ctx); fmpz_mod_mpoly_divrem(h, r1, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r1, ctx); fmpz_mod_mpoly_remainder_strongtest(r1, g, ctx); fmpz_mod_mpoly_divrem(k, f, f, g, ctx); fmpz_mod_mpoly_assert_canonical(k, ctx); fmpz_mod_mpoly_assert_canonical(f, ctx); fmpz_mod_mpoly_remainder_strongtest(f, g, ctx); if (!(fmpz_mod_mpoly_equal(h, k, ctx) && fmpz_mod_mpoly_equal(r1, f, ctx))) { flint_printf("FAIL: Check aliasing of remainder with first argument\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(k, ctx); fmpz_mod_mpoly_clear(r1, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } /* Check aliasing of remainder with second argument */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f, g, h, k, r1; slong len, len1, len2, exp_bound, exp_bound1, exp_bound2; fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 10, 200); fmpz_mod_mpoly_init(f, ctx); fmpz_mod_mpoly_init(g, ctx); fmpz_mod_mpoly_init(h, ctx); fmpz_mod_mpoly_init(k, ctx); fmpz_mod_mpoly_init(r1, ctx); len = n_randint(state, 10); len1 = n_randint(state, 10); len2 = n_randint(state, 10) + 1; exp_bound = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound1 = n_randint(state, 50/ctx->minfo->nvars) + 1; exp_bound2 = n_randint(state, 50/ctx->minfo->nvars) + 1; for (j = 0; j < 4; j++) { fmpz_mod_mpoly_randtest_bound(f, state, len1, exp_bound1, ctx); fmpz_mod_mpoly_randtest_bound(g, state, len2, exp_bound2, ctx); if (fmpz_mod_mpoly_is_zero(g, ctx)) fmpz_mod_mpoly_one(g, ctx); fmpz_mod_mpoly_randtest_bound(h, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(k, state, len, exp_bound, ctx); fmpz_mod_mpoly_randtest_bound(r1, state, len, exp_bound, ctx); fmpz_mod_mpoly_mul(h, f, g, ctx); fmpz_mod_mpoly_divrem(h, r1, f, g, ctx); fmpz_mod_mpoly_assert_canonical(h, ctx); fmpz_mod_mpoly_assert_canonical(r1, ctx); fmpz_mod_mpoly_remainder_strongtest(r1, g, ctx); fmpz_mod_mpoly_divrem(k, g, f, g, ctx); fmpz_mod_mpoly_assert_canonical(k, ctx); fmpz_mod_mpoly_assert_canonical(g, ctx); if (!(fmpz_mod_mpoly_equal(h, k, ctx) && fmpz_mod_mpoly_equal(r1, g, ctx))) { flint_printf("FAIL: Check aliasing of remainder with second argument\n"); flint_printf("i = %wd, j = %wd\n", i ,j); flint_abort(); } } fmpz_mod_mpoly_clear(f, ctx); fmpz_mod_mpoly_clear(g, ctx); fmpz_mod_mpoly_clear(h, ctx); fmpz_mod_mpoly_clear(k, ctx); fmpz_mod_mpoly_clear(r1, ctx); fmpz_mod_mpoly_ctx_clear(ctx); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }