start restructuring project
This commit is contained in:
31
README.md
31
README.md
@@ -1,25 +1,24 @@
|
||||
# haskell-math
|
||||
|
||||
## Modular square roots algorithms
|
||||
## running project from CLI
|
||||
```
|
||||
$ ghci -i./src
|
||||
ghci> :load HaskellMath.hs
|
||||
```
|
||||
|
||||
### Tonelli Shanks
|
||||
file: `TonelliShanks.hs`
|
||||
## algorithms
|
||||
|
||||
## primality test algorithms
|
||||
### Modular square roots algorithms
|
||||
|
||||
### Fermat's prime test
|
||||
file: `fermat-prime-test.hs`
|
||||
+ Tonelli Shanks
|
||||
|
||||
### Miller Rabin's prime test
|
||||
file: `miller-rabin-prime-test.hs`
|
||||
### primality test algorithms
|
||||
|
||||
### Solovey Strassen's prime test
|
||||
file: `SoloveyStrassen.hs`
|
||||
+ Fermat's prime test
|
||||
+ Miller Rabin's prime test
|
||||
+ Solovey Strassen's prime test
|
||||
|
||||
## factorization algorithms
|
||||
### factorization algorithms
|
||||
|
||||
### Fermat's factorization
|
||||
file: `fermat-factorization.hs`
|
||||
|
||||
### Pollard's p-1
|
||||
file: `PollardPminus1.hs`
|
||||
+ Fermat's factorization
|
||||
+ Pollard's p-1
|
||||
|
||||
Reference in New Issue
Block a user