/* Copyright (C) 2021 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, k; FLINT_TEST_INIT(state); flint_printf("push_term_fmpz_ui...."); fflush(stdout); /* Check pushback matches add */ for (i = 0; i < 1000 * flint_test_multiplier(); i++) { fmpz_mod_mpoly_ctx_t ctx; fmpz_mod_mpoly_t f1, f2, m; flint_bitcnt_t exp_bits; ulong * exp, * exp2; slong len, nvars; fmpz_t c, c2; fmpz_mod_mpoly_ctx_init_rand_bits(ctx, state, 10, 200); fmpz_mod_mpoly_init(f1, ctx); fmpz_mod_mpoly_init(f2, ctx); fmpz_mod_mpoly_init(m, ctx); fmpz_init(c); fmpz_init(c2); nvars = fmpz_mod_mpoly_ctx_nvars(ctx); exp = (ulong *) flint_malloc(nvars*sizeof(ulong)); exp2 = (ulong *) flint_malloc(nvars*sizeof(ulong)); len = n_randint(state, 20); exp_bits = n_randint(state, FLINT_BITS + 1); fmpz_mod_mpoly_zero(f1, ctx); fmpz_mod_mpoly_zero(f2, ctx); for (j = 0; j < len; j++) { /* get random term */ fmpz_randtest(c, state, 200); for (k = 0; k < nvars; k++) exp[k] = n_randtest_bits(state, n_randint(state, exp_bits) + 1); /* add it to f1 */ fmpz_mod_mpoly_zero(m, ctx); fmpz_mod_mpoly_set_coeff_fmpz_ui(m, c, exp, ctx); fmpz_mod_mpoly_add(f1, f1, m, ctx); /* push it back on f2 */ fmpz_mod_mpoly_push_term_fmpz_ui(f2, c, exp, ctx); /* make sure last term matches */ fmpz_mod_mpoly_get_term_coeff_fmpz(c2, f2, fmpz_mod_mpoly_length(f2, ctx) - 1, ctx); fmpz_mod_mpoly_get_term_exp_ui(exp2, f2, fmpz_mod_mpoly_length(f2, ctx) - 1, ctx); if (!fmpz_mod_equal_fmpz(c2, c, ctx->ffinfo)) { flint_printf("FAIL: Check pushed coefficient matches\n"); flint_printf("i = %wd, j = %wd\n", i, j); flint_abort(); } for (k = 0; k < nvars; k++) { if (exp[k] != exp2[k]) { flint_printf("FAIL: Check pushed exponent matches\n"); flint_printf("i = %wd, j = %wd\n", i, j); flint_abort(); } } } fmpz_mod_mpoly_sort_terms(f2, ctx); fmpz_mod_mpoly_combine_like_terms(f2, ctx); fmpz_mod_mpoly_assert_canonical(f2, ctx); if (!fmpz_mod_mpoly_equal(f1, f2, ctx)) { flint_printf("FAIL: Check pushback matches add\n"); flint_printf("i = %wd\n", i); flint_abort(); } fmpz_clear(c2); fmpz_clear(c); fmpz_mod_mpoly_clear(f1, ctx); fmpz_mod_mpoly_clear(f2, ctx); fmpz_mod_mpoly_clear(m, ctx); fmpz_mod_mpoly_ctx_clear(ctx); flint_free(exp2); flint_free(exp); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }