2015-06-01 17:08:39 +02:00
|
|
|
|
name: number
|
|
|
|
|
version: 0.1.0.0
|
2015-06-01 18:22:35 +02:00
|
|
|
|
synopsis: A datatype for real numbers
|
|
|
|
|
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
|
|
|
|
|
author: Michele Guerini Rocco
|
|
|
|
|
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
|
|
|
|
|
location: https://github.com/rnhmjoj/hsilop
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
other-extensions: TypeSynonymInstances, FlexibleInstances
|
|
|
|
|
build-depends: base >=4.8, numericpeano
|
|
|
|
|
hs-source-dirs: src
|
2015-06-01 18:22:35 +02:00
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
ghc-options: -O2
|