19 lines
668 B
Markdown
19 lines
668 B
Markdown
# Number
|
||
### A library for real numbers
|
||
Data.Number is an attempt to give an almost complete
|
||
representation and arithmetics to real numbers without
|
||
precision loss using continued fractions and Gosper’s algorithms.
|
||
|
||
### Install
|
||
Install with `cabal install number`
|
||
|
||
### Docs
|
||
See [Haddock docs](https://hackage.haskell.org/package/number/docs/Data-Number.html)
|
||
|
||
### License
|
||
Dual licensed under the MIT and GPL licenses:
|
||
http://www.opensource.org/licenses/mit-license.php
|
||
http://www.gnu.org/licenses/gpl.html
|
||
|
||
[Data.Number.Peano](src/Data/Number/Peano.hs) is a slightly modified version
|
||
of the package [numeric-peano](http://hackage.haskell.org/package/numericpeano) |