-
Notifications
You must be signed in to change notification settings - Fork 1
/
wigner-symbols.cabal
74 lines (68 loc) · 2.22 KB
/
wigner-symbols.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
name: wigner-symbols
version: 1.0.0
synopsis: CG coefficients and Wigner symbols.
description: Clebsch-Gordan coefficients and Wigner 3-j, 6-j, and 9-j
symbols.
homepage: https://github.com/Rufflewind/wigner-symbols
bug-reports: https://github.com/Rufflewind/wigner-symbols/issues
license: MIT
license-file: LICENSE
author: Phil Ruffwind
maintainer: rf@rufflewind.com
copyright: (c) 2015 Phil Ruffwind
category: Math
build-type: Simple
cabal-version: >=1.10
extra-source-files:
changelog.md
LICENSE
README.md
source-repository head
type: git
location: https://github.com/Rufflewind/wigner-symbols
flag llvm
description: Use LLVM
default: False
library
exposed-modules: WignerSymbols
WignerSymbols.Internal
other-modules: Common
other-extensions: BangPatterns
CPP
build-depends: base >=4 && <5
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if flag(llvm)
ghc-options: -fllvm
test-suite test
type: exitcode-stdio-1.0
main-is: TestMain.hs
other-modules: Common
other-extensions: CPP
build-depends: base
, wigner-symbols
, bytestring >= 0.10 && <1
, cryptonite >=0.7 && <1
, directory >=1.0 && <2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
benchmark bench
type: exitcode-stdio-1.0
main-is: BenchMain.hs
other-modules: Common
other-extensions: BangPatterns
CPP
ScopedTypeVariables
build-depends: base
, wigner-symbols
, criterion >=1.0
, random >=1.1
, primitive >=0.5.0.1
, vector >=0.10
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if flag(llvm)
ghc-options: -fllvm