This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
matrix.cabal
74 lines (67 loc) · 1.99 KB
/
matrix.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
cabal-version: 3.0
name: matrix
version: 0.3.6.2
author: Daniel Casanueva
category: Math
build-type: Simple
license: BSD-3-Clause
license-file: license
maintainer: Daniel Casanueva (daniel.casanueva `at` proton.me)
bug-reports: https://github.com/Daniel-Diaz/matrix/issues
synopsis: A native implementation of matrix operations.
description:
Matrix library. Basic operations and some algorithms.
.
Usage examples are included in the API reference generated by Haddock.
.
If you want to use GSL, BLAS and LAPACK, @hmatrix@ (<http://hackage.haskell.org/package/hmatrix>)
is the way to go.
extra-doc-files: readme.md, changelog.md
Source-repository head
type: git
location: git://github.com/Daniel-Diaz/matrix.git
Library
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, vector >= 0.10
, deepseq >= 1.3.0.0 && < 1.6
, primitive >= 0.5
, semigroups >= 0.9
, loop >= 0.2
exposed-modules: Data.Matrix
ghc-options: -Wall -O2 -fstatic-argument-transformation
Benchmark matrix-mult
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: mult.hs
build-depends: base == 4.*
, matrix
, criterion
ghc-options: -O2 -fstatic-argument-transformation
Benchmark matrix-rref
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: rref.hs
build-depends: base == 4.*
, matrix
, criterion
ghc-options: -O2 -fstatic-argument-transformation
Test-Suite matrix-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base == 4.*
, matrix
, tasty
, QuickCheck
, tasty-quickcheck
Test-Suite matrix-examples
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Examples.hs
build-depends: base == 4.*
, matrix