Files
haskell-math/README.md
2026-01-20 17:36:29 +01:00

27 lines
357 B
Markdown

# haskell-math
## running project from CLI
```
$ cabal update
$ cabal build
$ cabal run
```
## 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
+ Dixon