-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepa-linear-algebra.cabal
45 lines (43 loc) · 1.71 KB
/
repa-linear-algebra.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
name: repa-linear-algebra
version: 0.3.0.0
synopsis: HMatrix operations for Repa.
description: HMatrix Vector and Matrix conversions to and from REPA Array F DIM1/2 (Complex) Double, together with a port of linear algebraic functions.
license: BSD3
license-file: LICENSE
author: Marcin Mrotek
maintainer: [email protected]
stability: experimental (casts under the hood)
homepage: https://github.com/marcinmrotek/repa-linear-algebra
bug-reports: https://github.com/marcinmrotek/repa-linear-algebra/issues
category: Data
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/marcinmrotek/repa-linear-algebra.git
flag devel
description: Development mode (-Werror).
default: False
manual: True
library
exposed-modules: Numeric.LinearAlgebra.Repa
Numeric.LinearAlgebra.Repa.Conversion
Numeric.LinearAlgebra.Repa.Experimental
build-depends: base >= 4.8 && < 5
, bifunctors
, hmatrix >= 0.18 && < 0.21
, repa >= 3.4 && < 3.5
, vector >= 0.10 && < 0.13
default-extensions: RankNTypes
, KindSignatures
, DataKinds
, GADTs
, ScopedTypeVariables
, TypeApplications
, AllowAmbiguousTypes
hs-source-dirs: src
ghc-options: -Wall
if flag(devel)
ghc-options: -Werror
default-language: Haskell2010