/* Copyright (C) 2013 Mike Hansen 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" int main(void) { int i, result; FLINT_TEST_INIT(state); flint_printf("is_invertible_f...."); fflush(stdout); /* Compare with the gcdinv function. N.B. I checked by hand that this test shows both outcomes, i.e. trivial and non-trivial factors, sufficiently frequently. */ for (i = 0; i < 50 * flint_test_multiplier(); i++) { TEMPLATE(T, ctx_t) ctx; TEMPLATE(T, t) a, ainv, f, g; TEMPLATE(T, ctx_randtest_reducible)(ctx, state); TEMPLATE(T, init)(a, ctx); TEMPLATE(T, init)(f, ctx); TEMPLATE(T, init)(g, ctx); TEMPLATE(T, init)(ainv, ctx); TEMPLATE(T, randtest)(a, state, ctx); TEMPLATE(T, gcdinv)(f, ainv, a, ctx); result = (TEMPLATE(T, is_one)(f, ctx) == TEMPLATE(T, is_invertible_f)(g, a, ctx)); result = result && TEMPLATE(T, equal)(f, g, ctx); if (!result) { flint_printf("FAIL:\n"); flint_printf("a = "), TEMPLATE(T, print_pretty)(a, ctx); flint_printf("\n\n"); flint_printf("f = "), TEMPLATE(T, print_pretty)(f, ctx); flint_printf("\n\n"); flint_printf("g = "), TEMPLATE(T, print_pretty)(g, ctx); flint_printf("\n\n"); abort(); } TEMPLATE(T, clear)(a, ctx); TEMPLATE(T, clear)(ainv, ctx); TEMPLATE(T, clear)(f, ctx); TEMPLATE(T, clear)(g, ctx); TEMPLATE(T, ctx_clear)(ctx); } FLINT_TEST_CLEANUP(state); flint_printf("PASS\n"); return 0; } #endif