From b71e4b1ce2595e236a195d88411f8757942cbcd5 Mon Sep 17 00:00:00 2001 From: hasufell Date: Sun, 25 May 2014 03:57:51 +0200 Subject: [PATCH] POLY: improve inline doc --- src/poly.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poly.c b/src/poly.c index d3b7049..023c7b1 100644 --- a/src/poly.c +++ b/src/poly.c @@ -597,7 +597,7 @@ bool poly_inverse_poly_p(fmpz_poly_t a, fmpz_poly_set_coeff_fmpz_n(Fp, j, b_i); } - /* check if the f * Fq = 1 (mod p) condition holds true */ + /* check if the f * Fp = 1 (mod p) condition holds true */ fmpz_poly_set(a_tmp, a); poly_starmultiply(a_tmp, Fp, a_tmp, ctx, ctx->p); if (!fmpz_poly_is_one(a_tmp))