-
Notifications
You must be signed in to change notification settings - Fork 1
/
numeric-tools.cabal
67 lines (63 loc) · 1.85 KB
/
numeric-tools.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
Name: numeric-tools
Version: 0.2.0.1
Cabal-Version: >= 1.8
License: BSD3
License-File: LICENSE
Author: Aleksey Khudyakov <[email protected]>
Maintainer: Aleksey Khudyakov <[email protected]>
Homepage: https://bitbucket.org/Shimuuar/numeric-tools
bug-reports: https://bitbucket.org/Shimuuar/numeric-tools/issues
Category: Math, Numerical
Build-Type: Simple
Synopsis: Collection of numerical tools for integration, differentiation etc.
Description:
Package provides function to perform numeric integration and
differentiation, function interpolation.
.
Changes in 0.2.0.0
.
* Equation solvers now use custom return type.
.
* Function to solve equations using Ridder and Newton methods.
.
* New function to test approximate equality for doubles.
.
* QuadRes contains best approximation achieved even if required
accuracy is not obtained
.
* Improve convergence test when integral converges to
zero. Convergence is still poor
extra-source-files:
README.markdown
source-repository head
type: hg
location: https://bitbucket.org/Shimuuar/numeric-tools
source-repository head
type: git
location: https://github.com/Shimuuar/numeric-tools
Library
Build-Depends:
base >=3 && <5,
ieee754 >= 0.7.3,
primitive,
vector >= 0.7.0.1
Exposed-modules:
Control.Monad.Numeric
Numeric.ApproxEq
Numeric.Classes.Indexing
Numeric.Tools.Equation
Numeric.Tools.Differentiation
Numeric.Tools.Integration
Numeric.Tools.Interpolation
Numeric.Tools.Mesh
c-sources: cbits/ieee.c
ghc-options: -Wall -O2
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
ghc-options: -O2 -Wall -threaded -rtsopts
build-depends:
base,
numeric-tools,
HUnit