forked from cartazio/numbers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
numbers.cabal
68 lines (60 loc) · 1.8 KB
/
numbers.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Name: numbers
-- don't forget to bump the "this" source tag
Version: 3000.2.0.3
License: BSD3
License-file: LICENSE
Author: Lennart Augustsson
Maintainer: johnw@newartisans.com
Category: Data, Math
Synopsis: Various number types
Description:
Instances of the numerical classes for a variety of
different numbers: (computable) real numbers,
arbitrary precision fixed numbers,
arbitrary precision floating point numbers,
differentiable numbers, symbolic numbers,
natural numbers, interval arithmetic.
Build-type: Simple
cabal-version: >= 1.8
homepage: https://github.com/jwiegley/numbers#readme
bug-reports: https://github.com/jwiegley/numbers/issues
source-repository head
type: git
location: git://github.com/jwiegley/numbers.git
source-repository this
type: git
location: git://github.com/jwiegley/numbers.git
tag: numbers-3000.2.0.2
Library
Build-Depends:
base >= 3 && < 5,
integer-logarithms
Exposed-modules:
Data.Number.Symbolic Data.Number.Dif
Data.Number.CReal Data.Number.Fixed
Data.Number.Interval Data.Number.BigFloat
Data.Number.Natural
Data.Number.Vectorspace
Data.Number.FixedFunctions
Ghc-Options:
-Wall
-fno-warn-name-shadowing
-fno-warn-unused-binds
-fno-warn-unused-matches
-fno-warn-incomplete-patterns
-fno-warn-overlapping-patterns
-fno-warn-type-defaults
test-suite testsuite
type: exitcode-stdio-1.0
main-is: TestSuite.hs
build-depends:
base >= 3 && < 5,
ieee754,
integer-logarithms,
-- Additional test dependencies.
QuickCheck == 2.*,
test-framework >= 0.6,
test-framework-quickcheck2 >= 0.2
other-modules:
Test.Data.Number.BigFloat
Test.Data.Number.CReal