number/README.md

19 lines
668 B
Markdown
Raw Permalink Normal View History

2015-06-02 00:22:01 +02:00
# 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 Gospers algorithms.
### Install
Install with `cabal install number`
### Docs
2015-06-02 11:17:01 +02:00
See [Haddock docs](https://hackage.haskell.org/package/number/docs/Data-Number.html)
2015-06-02 00:22:01 +02:00
### License
2015-06-02 00:25:04 +02:00
Dual licensed under the MIT and GPL licenses:
http://www.opensource.org/licenses/mit-license.php
2015-06-02 11:17:01 +02:00
http://www.gnu.org/licenses/gpl.html
2015-06-02 11:34:01 +02:00
2015-07-13 17:55:37 +02:00
[Data.Number.Peano](src/Data/Number/Peano.hs) is a slightly modified version
of the package [numeric-peano](http://hackage.haskell.org/package/numericpeano)