From 24f0c12468a2d66dcae1a3204d949b195daffb38 Mon Sep 17 00:00:00 2001 From: MZuenni Date: Wed, 1 Mar 2023 12:50:38 +0100 Subject: added digit separator --- math/squfof.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math/squfof.cpp') diff --git a/math/squfof.cpp b/math/squfof.cpp index 78bca73..1cb97de 100644 --- a/math/squfof.cpp +++ b/math/squfof.cpp @@ -64,7 +64,7 @@ lll squfof(lll N) { exit(1);//try fallback to pollard rho } -constexpr lll trialLim = 5000; +constexpr lll trialLim = 5'000; void factor(lll n, map& facts) { for (lll i = 2; i * i <= n && i <= trialLim; i++) { -- cgit v1.2.3