forked from Daniel-Diaz/matrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matrix.cabal
64 lines (59 loc) · 1.86 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
Name: matrix
Version: 0.3.4.2
Author: Daniel Díaz
Category: Math
Build-type: Simple
License: BSD3
License-file: license
Maintainer: Daniel Díaz (dhelta `dot` diaz `at` gmail `dot` com)
Stability: In development
Bug-reports: https://github.com/Daniel-Diaz/matrix/issues
Synopsis: A native implementation of matrix operations.
Description:
Matrix library. Basic operations and some algorithms.
.
To get the library update your cabal package list (if needed) with @cabal update@ and
then use @cabal install matrix@, assuming that you already have Cabal installed.
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.
Cabal-version: >= 1.8
Extra-source-files:
readme.md
-- Benchmarks
bench/mult.hs
Source-repository head
type: git
location: git://github.com/Daniel-Diaz/matrix.git
Library
Build-depends: base == 4.*
, vector >= 0.10 && < 0.11
, deepseq >= 1.3.0.0 && < 1.5
, primitive >= 0.5 && < 0.6
, loop >= 0.2
Exposed-modules: Data.Matrix
GHC-Options: -Wall -O2 -fstatic-argument-transformation
Benchmark matrix-mult
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
Test-Suite matrix-test
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
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Examples.hs
build-depends: base == 4.*
, matrix