2015-06-01 17:08:39 +02:00
|
|
|
|
name: number
|
2015-09-10 03:33:26 +02:00
|
|
|
|
version: 0.1.1.0
|
2015-06-02 00:31:59 +02:00
|
|
|
|
stability: experimental
|
2015-06-01 22:55:25 +02:00
|
|
|
|
synopsis: A library for real numbers
|
2015-06-01 18:22:35 +02:00
|
|
|
|
description:
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
2015-06-01 17:08:39 +02:00
|
|
|
|
license: MIT
|
|
|
|
|
license-file: LICENSE
|
2015-09-10 03:33:26 +02:00
|
|
|
|
author: rnhmjoj
|
2015-06-01 17:08:39 +02:00
|
|
|
|
maintainer: micheleguerinirocco@me.com
|
2015-06-01 18:22:35 +02:00
|
|
|
|
copyright: (C) Michele Guerini Rocco 2015
|
2015-06-01 17:08:39 +02:00
|
|
|
|
category: Math
|
|
|
|
|
build-type: Simple
|
2015-06-01 18:22:35 +02:00
|
|
|
|
extra-source-files: README.md, LICENSE
|
2015-06-01 17:08:39 +02:00
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
2015-06-01 18:22:35 +02:00
|
|
|
|
source-repository head
|
|
|
|
|
type: git
|
2015-06-02 00:22:56 +02:00
|
|
|
|
location: https://github.com/rnhmjoj/number
|
2015-06-01 18:22:35 +02:00
|
|
|
|
|
2015-06-01 17:08:39 +02:00
|
|
|
|
library
|
|
|
|
|
exposed-modules: Data.Number,
|
|
|
|
|
Data.Number.Functions,
|
|
|
|
|
Data.Number.Types,
|
|
|
|
|
Data.Number.Instances,
|
|
|
|
|
Data.Number.Internal
|
2015-06-01 22:54:38 +02:00
|
|
|
|
Data.Number.Peano
|
2015-06-01 17:08:39 +02:00
|
|
|
|
|
|
|
|
|
other-extensions: TypeSynonymInstances, FlexibleInstances
|
2015-06-02 00:33:07 +02:00
|
|
|
|
build-depends: base >=4.8 && < 5.0
|
2015-06-01 17:08:39 +02:00
|
|
|
|
hs-source-dirs: src
|
2015-06-01 18:22:35 +02:00
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
ghc-options: -O2
|