/* Copyright (C) 2018 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 "nmod_mpoly.h" #include "ulong_extras.h" int main(void) { int result; slong i, j1, j2; FLINT_TEST_INIT(state); flint_printf("cmp...."); fflush(stdout); /* check polynomial terms are in order */ for (i = 0; i < 10 * flint_test_multiplier(); i++) { nmod_mpoly_ctx_t ctx; nmod_mpoly_t f, g, mf, mg; slong len; flint_bitcnt_t exp_bits; mp_limb_t modulus; modulus = UWORD(1) + n_randint(state, -UWORD(1)); nmod_mpoly_ctx_init_rand(ctx, state, 20, modulus); nmod_mpoly_init(f, ctx); nmod_mpoly_init(g, ctx); nmod_mpoly_init(mf, ctx); nmod_mpoly_init(mg, ctx); len = n_randint(state, 100) + 1; exp_bits = n_randint(state, 200) + 2; exp_bits = n_randint(state, exp_bits) + 2; nmod_mpoly_randtest_bits(f, state, len, exp_bits, ctx); nmod_mpoly_repack_bits(g, f, f->bits + n_randint(state, FLINT_BITS), ctx); nmod_mpoly_assert_canonical(f, ctx); nmod_mpoly_assert_canonical(g, ctx); for (j1 = 0; j1 < f->length; j1++) for (j2 = 0; j2 < g->length; j2++) { nmod_mpoly_get_term_monomial(mf, f, j1, ctx); nmod_mpoly_get_term_monomial(mg, g, j2, ctx); result = nmod_mpoly_cmp(mf, mg, ctx); result = (result == 0 && j1 == j2) || (result == +1 && j1 < j2) || (result == -1 && j1 > j2); if (!result) { flint_printf("FAIL\n" "check polynomial terms are in order\n" "i = %wd, j1 = %wd, j2 = %wd\n", i, j1, j2); flint_abort(); } } nmod_mpoly_clear(f, ctx); nmod_mpoly_clear(g, ctx); nmod_mpoly_clear(mf, ctx); nmod_mpoly_clear(mg, ctx); nmod_mpoly_ctx_clear(ctx); } for (i = 0; i < 100 * flint_test_multiplier(); i++) { nmod_mpoly_ctx_t ctx; nmod_mpoly_t a, b, c, aa, bb, cc; int a_a, a_b, a_c, a_aa, a_bb, a_cc; int b_a, b_b, b_c, b_aa, b_bb, b_cc; int c_a, c_b, c_c, c_aa, c_bb, c_cc; flint_bitcnt_t newbits; mp_limb_t modulus; modulus = UWORD(1) + n_randint(state, -UWORD(1)); nmod_mpoly_ctx_init_rand(ctx, state, 20, modulus); nmod_mpoly_init(a, ctx); nmod_mpoly_init(b, ctx); nmod_mpoly_init(c, ctx); nmod_mpoly_init(aa, ctx); nmod_mpoly_init(bb, ctx); nmod_mpoly_init(cc, ctx); nmod_mpoly_randtest_bits(a, state, n_randint(state, 100) + 1, n_randint(state, 200) + 2, ctx); nmod_mpoly_randtest_bits(b, state, n_randint(state, 100) + 1, n_randint(state, 200) + 2, ctx); nmod_mpoly_randtest_bits(c, state, n_randint(state, 100) + 1, n_randint(state, 200) + 2, ctx); newbits = a->bits + n_randint(state, 2*FLINT_BITS); newbits = mpoly_fix_bits(newbits, ctx->minfo); nmod_mpoly_repack_bits(aa, a, newbits, ctx); newbits = b->bits + n_randint(state, 2*FLINT_BITS); newbits = mpoly_fix_bits(newbits, ctx->minfo); nmod_mpoly_repack_bits(bb, b, newbits, ctx); newbits = c->bits + n_randint(state, 2*FLINT_BITS); newbits = mpoly_fix_bits(newbits, ctx->minfo); nmod_mpoly_repack_bits(cc, c, newbits, ctx); a_a = nmod_mpoly_cmp(a, a, ctx); a_b = nmod_mpoly_cmp(a, b, ctx); a_c = nmod_mpoly_cmp(a, c, ctx); a_aa = nmod_mpoly_cmp(a, aa, ctx); a_bb = nmod_mpoly_cmp(a, bb, ctx); a_cc = nmod_mpoly_cmp(a, cc, ctx); b_a = nmod_mpoly_cmp(b, a, ctx); b_b = nmod_mpoly_cmp(b, b, ctx); b_c = nmod_mpoly_cmp(b, c, ctx); b_aa = nmod_mpoly_cmp(b, aa, ctx); b_bb = nmod_mpoly_cmp(b, bb, ctx); b_cc = nmod_mpoly_cmp(b, cc, ctx); c_a = nmod_mpoly_cmp(c, a, ctx); c_b = nmod_mpoly_cmp(c, b, ctx); c_c = nmod_mpoly_cmp(c, c, ctx); c_aa = nmod_mpoly_cmp(c, aa, ctx); c_bb = nmod_mpoly_cmp(c, bb, ctx); c_cc = nmod_mpoly_cmp(c, cc, ctx); if (a_a != 0 || a_aa != 0 || b_b != 0 || b_bb != 0 || c_c != 0 || c_cc != 0) { flint_printf("FAIL\n" "check polynomial compares equal to itself\n" "i = %wd\n", i); flint_abort(); } if (a_b != a_bb || a_c != a_cc || b_a != b_aa || b_c != b_cc || c_a != c_aa || c_b != c_bb) { flint_printf("FAIL\n" "check polynomial comparison with differing bits\n" "i = %wd\n", i); flint_abort(); } if ((a_b*b_c == 0 && a_c != a_b + b_c) || (a_b*b_c > 0 && a_c != a_b)) { flint_printf("FAIL\n" "check transitivity\n" "i = %wd\n", i); flint_abort(); } nmod_mpoly_clear(a, ctx); nmod_mpoly_clear(b, ctx); nmod_mpoly_clear(c, ctx); nmod_mpoly_clear(aa, ctx); nmod_mpoly_clear(bb, ctx); nmod_mpoly_clear(cc, ctx); nmod_mpoly_ctx_clear(ctx); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }