-
Notifications
You must be signed in to change notification settings - Fork 6
/
hmatrix-sundials.cabal
111 lines (106 loc) · 3.38 KB
/
hmatrix-sundials.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: hmatrix-sundials
version: 0.20.2.0
synopsis: hmatrix interface to sundials
description: An interface to the solving suite SUNDIALS.
license: BSD3
license-file: LICENSE
author: Dominic Steinitz
maintainer: Roman Cheplyaka
copyright: Dominic Steinitz 2018, Novadiscovery 2019
category: Math
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.18
library
build-depends: base >=4.10,
inline-c >=0.6,
vector >=0.12,
template-haskell >=2.12,
containers >=0.5,
split >=0.2,
hmatrix>=0.18,
deepseq,
mtl,
bytestring,
text,
aeson,
katip,
ghc-prim
extra-libraries: sundials_arkode
sundials_cvode
sundials_sunmatrixsparse
sundials_sunlinsolklu
suitesparseconfig
klu
other-extensions: QuasiQuotes
hs-source-dirs: src
exposed-modules: Numeric.Sundials
other-modules: Numeric.Sundials.Types
Numeric.Sundials.ARKode
Numeric.Sundials.CVode
Numeric.Sundials.Foreign
Numeric.Sundials.Common
c-sources: src/helpers.c
src/helpers.h
default-language: Haskell2010
default-extensions: NondecreasingIndentation
RecordWildCards
NamedFieldPuns
ScopedTypeVariables
TemplateHaskell
QuasiQuotes
KindSignatures
TypeOperators
TypeSynonymInstances
FlexibleInstances
FlexibleContexts
AllowAmbiguousTypes
TypeApplications
DeriveGeneric
DeriveAnyClass
OverloadedStrings
ghc-options: -Wall
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: test.hs
build-depends:
aeson,
aeson-pretty,
base,
bytestring,
filepath,
tasty,
tasty-hunit,
tasty-golden >= 2.3.3,
vector,
hmatrix,
hmatrix-sundials,
katip
default-language: Haskell2010
ghc-options: -Wall -Wno-missing-signatures -fno-omit-yields
benchmark benchmark
type:
exitcode-stdio-1.0
hs-source-dirs:
benchmark
main-is:
benchmark.hs
default-language:
Haskell2010
build-depends:
base,
hmatrix,
hmatrix-sundials,
clock >= 0.7.1,
optparse-applicative,
cassava,
bytestring
ghc-options:
-Wall -Wno-name-shadowing
default-extensions:
BangPatterns
DeriveGeneric
FlexibleInstances
RecordWildCards
NamedFieldPuns