-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhasdy.cabal
95 lines (87 loc) · 2.71 KB
/
hasdy.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
-- Initial hasdy.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hasdy
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: Matthew Spellings
maintainer: mspells@umich.edu
-- copyright:
category: Science
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
build-depends: base >=4.6 && <4.7,
accelerate >= 0.12,
containers >= 0.3,
text >= 0.11,
text-format >= 0.3,
accelerate-cuda >= 0.12,
random >= 1
exposed-modules:
Data.Array.Accelerate.HasdyContrib
Hasdy.Dump.Pos
Hasdy.Integrate.Leapfrog
Hasdy.Integrate.VelVerlet
Hasdy.Neighbor.Fast
Hasdy.Neighbor.Slow
Hasdy.Potentials.LJ
Hasdy.Potentials.Sigmoidal
Hasdy.Prop,
Hasdy.Prop.Bundle,
Hasdy.Prop.Math
Hasdy.Spatial
Hasdy.Thermo
Hasdy.Thermostats
Hasdy.Types
Hasdy.Utils
Hasdy.Utils.Sort
Hasdy.Vectors
default-language: Haskell2010
hs-source-dirs: src
executable misc-tests
main-is: test/test.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7,
accelerate >= 0.12,
containers >= 0.3,
text >= 0.11,
text-format >= 0.3,
accelerate-cuda >= 0.12,
random >= 1,
hasdy >= 0.1
-- hs-source-dirs:
default-language: Haskell2010
ghc-options: -threaded -O2
executable test-hasdycontrib
-- type: exitcode-stdio-1.0
-- type: detailed-0.9
-- test-module: HasdyContrib
-- hs-source-dirs: test
main-is: test/HasdyContrib.hs
build-depends: base >= 4.6,
accelerate >= 0.12,
accelerate-cuda >= 0.12,
hasdy >= 0.1,
QuickCheck >= 2.6,
Cabal >= 1.16,
cabal-test-quickcheck >= 0.1
default-language: Haskell2010
ghc-options: -threaded
executable test-neighborlist
-- type: exitcode-stdio-1.0
main-is: test/NeighborList.hs
build-depends: base >= 4.6,
accelerate >= 0.12,
accelerate-cuda >= 0.12,
hasdy >= 0.1,
QuickCheck >= 2.6,
Cabal >= 1.16,
cabal-test-quickcheck >= 0.1,
containers >= 0.4
default-language: Haskell2010
ghc-options: -threaded