Files
haskell-math/README.md
2026-01-10 13:23:43 +01:00

25 lines
350 B
Markdown

# haskell-math
## running project from CLI
```
$ ghci -i./src
ghci> :load HaskellMath.hs
```
## algorithms
### Modular square roots algorithms
+ Tonelli Shanks
### primality test algorithms
+ Fermat's prime test
+ Miller Rabin's prime test
+ Solovey Strassen's prime test
### factorization algorithms
+ Fermat's factorization
+ Pollard's p-1