/* Copyright (C) 2021 William Hart 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_default_mat.h" #include #include #include #include "flint.h" #include "ulong_extras.h" int main(void) { int i; FLINT_TEST_INIT(state); flint_printf("init/clear...."); fflush(stdout); for (i = 0; i < 100 * flint_test_multiplier(); i++) { fq_default_ctx_t ctx; fq_default_mat_t fq_mat; fmpz_t p; slong rows, cols; rows = n_randint(state, 20); cols = n_randint(state, 20); fmpz_init(p); fmpz_set_ui(p, 3); fq_default_ctx_init(ctx, p, 3, "x"); fq_default_mat_init(fq_mat, rows, cols, ctx); fq_default_mat_randtest(fq_mat, state, ctx); fq_default_mat_clear(fq_mat, ctx); fq_default_ctx_clear(ctx); fq_default_ctx_init(ctx, p, 16, "x"); fq_default_mat_init(fq_mat, rows, cols, ctx); fq_default_mat_randtest(fq_mat, state, ctx); fq_default_mat_clear(fq_mat, ctx); fq_default_ctx_clear(ctx); fmpz_set_str(p, "73786976294838206473", 10); fq_default_ctx_init(ctx, p, 1, "x"); fq_default_mat_init(fq_mat, rows, cols, ctx); fq_default_mat_randtest(fq_mat, state, ctx); fq_default_mat_clear(fq_mat, ctx); fq_default_ctx_clear(ctx); fmpz_clear(p); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; }