From d32a7d0f818826d00ee89860de1fb44c4da81862 Mon Sep 17 00:00:00 2001 From: Sam HADOW Date: Wed, 24 Dec 2025 12:17:26 +0100 Subject: [PATCH] readme update --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ffb5c3..58c35d7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,19 @@ # haskell-math +## Modular square roots algorithms + +### Tonelli Shanks +file: `TonelliShanks.hs` + +## primality test algorithms + +### Fermat's prime test +file: `fermat-prime-test.hs` + ## factorization algorithms -### Fermat's factorization algorithm +### Fermat's factorization +file: `fermat-factorization.hs` -### Pollard's p-1 algorithm +### Pollard's p-1 +file: `PollardPminus1.hs`