Calculate digits of Pi in hexadecimal.

Josh Bicking e2ddc3b232 Fix hex printing před 6 roky
app e2ddc3b232 Fix hex printing před 6 roky
src 568982b92d Add initial revision, README and TODO list před 6 roky
test 568982b92d Add initial revision, README and TODO list před 6 roky
.gitignore 1bb650927c Initial commit před 6 roky
LICENSE 1bb650927c Initial commit před 6 roky
README.md afc26f00f3 Add dec and bin printing, add help, cleanup range and prompt před 6 roky
Setup.hs 568982b92d Add initial revision, README and TODO list před 6 roky
pi-digits.cabal 568982b92d Add initial revision, README and TODO list před 6 roky
stack.yaml 568982b92d Add initial revision, README and TODO list před 6 roky

README.md

pi-digits

Calculate requested digits of Pi.

Built using The BBP Algorithm for Pi.

Building

Install stack, then run stack build from inside the repository.

Running

Run stack exec pi-digits-exe, or execute the binary found in ./.stack-work/install/.

TODO

  • [X] Add a function for converting results to decimal (and binary).
  • Implement a faster mod operation, to allow for larger numbers (like 12345678901234567890). It will likely be implemented with the algorithm explained in the paper.
  • Replace the mess in prompt with a monad.
  • Implement threading?