/* Copyright (C) 2010,2011 Fredrik Johansson Copyright (C) 2013 Mike Hansen Copyright (C) 2018 Tommy Hofmann Copyright (C) 2020 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 . */ #ifdef T #include "templates.h" #include #include #include int main(void) { TEMPLATE(T, ctx_t) ctx; TEMPLATE(T, mat_t) A, X, X2, B, AX; slong i, k, m, n; int solved; FLINT_TEST_INIT(state); printf("solve...."); fflush(stdout); /* test random systems */ for (i = 0; i < 50 * flint_test_multiplier(); i++) { TEMPLATE(T, ctx_randtest) (ctx, state); m = n_randint(state, 50); n = n_randint(state, 50); k = n_randint(state, 50); TEMPLATE(T, mat_init) (A, m, k, ctx); TEMPLATE(T, mat_init) (B, m, n, ctx); TEMPLATE(T, mat_init) (X, k, n, ctx); TEMPLATE(T, mat_init) (AX, m, n, ctx); TEMPLATE(T, mat_randrank)(A, state, n_randint(state, FLINT_MIN(m, k) + 1), ctx); TEMPLATE(T, mat_randtest)(B, state, ctx); /* Dense */ if (n_randint(state, 2)) TEMPLATE(T, mat_randops)(A, 1+n_randint(state, 1+m*m), state, ctx); solved = TEMPLATE(T, mat_can_solve)(X, A, B, ctx); TEMPLATE(T, mat_mul)(AX, A, X, ctx); if (solved && !TEMPLATE(T, mat_equal)(AX, B, ctx)) { flint_printf("FAIL:\n"); flint_printf("AX != B!\n"); flint_printf("A:\n"); TEMPLATE(T, mat_print_pretty)(A, ctx); flint_printf("B:\n"); TEMPLATE(T, mat_print_pretty)(B, ctx); flint_printf("X:\n"); TEMPLATE(T, mat_print_pretty)(X, ctx); flint_printf("AX:\n"); TEMPLATE(T, mat_print_pretty)(AX, ctx); flint_printf("\n"); abort(); } TEMPLATE(T, mat_clear)(A, ctx); TEMPLATE(T, mat_clear)(B, ctx); TEMPLATE(T, mat_clear)(X, ctx); TEMPLATE(T, mat_clear)(AX, ctx); TEMPLATE(T, ctx_clear) (ctx); } /* test random solvable systems */ for (i = 0; i < 1000 * flint_test_multiplier(); i++) { TEMPLATE(T, ctx_randtest) (ctx, state); m = n_randint(state, 20); n = n_randint(state, 20); k = n_randint(state, 20); TEMPLATE(T, mat_init) (A, m, k, ctx); TEMPLATE(T, mat_init) (B, m, n, ctx); TEMPLATE(T, mat_init) (X, k, n, ctx); TEMPLATE(T, mat_init) (X2, k, n, ctx); TEMPLATE(T, mat_init) (AX, m, n, ctx); TEMPLATE(T, mat_randrank)(A, state, n_randint(state, FLINT_MIN(m, k) + 1), ctx); TEMPLATE(T, mat_randtest)(X2, state, ctx); TEMPLATE(T, mat_mul)(B, A, X2, ctx); solved = TEMPLATE(T, mat_can_solve)(X, A, B, ctx); TEMPLATE(T, mat_mul)(AX, A, X, ctx); if (!solved || !TEMPLATE(T, mat_equal)(AX, B, ctx)) { flint_printf("FAIL:\n"); flint_printf("AX != B!\n"); flint_printf("A:\n"); TEMPLATE(T, mat_print_pretty)(A, ctx); flint_printf("B:\n"); TEMPLATE(T, mat_print_pretty)(B, ctx); flint_printf("X:\n"); TEMPLATE(T, mat_print_pretty)(X, ctx); flint_printf("AX:\n"); TEMPLATE(T, mat_print_pretty)(AX, ctx); flint_printf("\n"); abort(); } TEMPLATE(T, mat_clear)(A, ctx); TEMPLATE(T, mat_clear)(B, ctx); TEMPLATE(T, mat_clear)(X, ctx); TEMPLATE(T, mat_clear)(X2, ctx); TEMPLATE(T, mat_clear)(AX, ctx); TEMPLATE(T, ctx_clear) (ctx); } FLINT_TEST_CLEANUP(state); printf("PASS\n"); return 0; } #endif