From c9365cd20105e36bae0b2145b69f94f6f93195d6 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Wed, 20 Nov 2024 01:50:40 +0100 Subject: fix overlong lines --- content/math/sqrtModCipolla.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/math') diff --git a/content/math/sqrtModCipolla.cpp b/content/math/sqrtModCipolla.cpp index d52d258..c062646 100644 --- a/content/math/sqrtModCipolla.cpp +++ b/content/math/sqrtModCipolla.cpp @@ -1,4 +1,4 @@ -ll sqrtMod(ll a, ll p) { // teste mit Legendre ob Lösung existiert +ll sqrtMod(ll a, ll p) {// teste mit Legendre ob Lösung existiert if (a < 2) return a; ll t = 0; while (legendre((t*t-4*a) % p, p) >= 0) t = rng() % p; -- cgit v1.2.3