/* Copyright (C) 2017 Luca De Feo 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 "fq_embed.h" #include #include #include "ulong_extras.h" #include "long_extras.h" int main(void) { int i; FLINT_TEST_INIT(state); flint_printf("mono_to/from_dual_matrix... "); fflush(stdout); /* Check that the two functions are inverse of one another */ for (i = 0; i < 100 * flint_test_multiplier(); i++) { fq_ctx_t ctx; fmpz_mod_mat_t m2d, d2m, one, two; slong d; fq_ctx_randtest(ctx, state); d = fq_ctx_degree(ctx); fmpz_mod_mat_init(m2d, d, d, fq_ctx_prime(ctx)); fmpz_mod_mat_init(d2m, d, d, fq_ctx_prime(ctx)); fmpz_mod_mat_init(one, d, d, fq_ctx_prime(ctx)); fmpz_mod_mat_init(two, d, d, fq_ctx_prime(ctx)); fq_embed_mono_to_dual_matrix(m2d, ctx); fq_embed_dual_to_mono_matrix(d2m, ctx); fmpz_mod_mat_mul(one, m2d, d2m); fmpz_mod_mat_one(two); if (!fmpz_mod_mat_equal(one, two)) { flint_printf("FAIL:\n\n"); flint_printf("CTX\n"), fq_ctx_print(ctx), flint_printf("\n"); flint_printf("Mono -> Dual\n"), fmpz_mod_mat_print_pretty(m2d), flint_printf("\nDual -> Mono\n"), fmpz_mod_mat_print_pretty(d2m), flint_printf("\n"); abort(); } fmpz_mod_mat_clear(m2d); fmpz_mod_mat_clear(d2m); fmpz_mod_mat_clear(one); fmpz_mod_mat_clear(two); fq_ctx_clear(ctx); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return EXIT_SUCCESS; }