From 5ae141ae14e97b6d4efe5c974817ffa4f04b02d8 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 24 May 2025 10:37:48 -0700 Subject: [PATCH] factor: fix comment --- src/factor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/factor.c b/src/factor.c index f0ad10ffc6..54eb9aa92c 100644 --- a/src/factor.c +++ b/src/factor.c @@ -79,8 +79,8 @@ * The redcify function could be vastly improved by using (plain Euclidean) pre-inversion (such as GMP's invert_limb) and udiv_qrnnd_preinv (from GMP's gmp-impl.h). The redcify2 function could be vastly improved using - similar methods. These functions currently dominate run time when using - the -w option. + similar methods. These functions currently dominate run time when + PROVE_PRIMALITY is nonzero (the default). */ /* Whether to recursively factor to prove primality, -- 2.47.3