-
Notifications
You must be signed in to change notification settings - Fork 0
/
LATS.cabal
63 lines (54 loc) · 840 Bytes
/
LATS.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
name:
LATS
version:
0.5.0
synopsis:
Linear Algebra on Typed Spaces
description:
Please see README.md
homepage:
http://github.com/guaraqe/LATS#readme
license:
BSD3
license-file:
LICENSE
author:
guaraqe
maintainer:
copyright:
Copyright 2016 guaraqe
category:
Numeric
build-type:
Simple
cabal-version:
>=1.10
library
hs-source-dirs:
src
exposed-modules:
LATS.Matrix.Raw
LATS.Vector.Raw
LATS.Vector.Mutable
LATS.Matrix
LATS.Vector
LATS
build-depends:
base,
constraint-classes >= 0.6,
hmatrix >= 0.17,
semigroups >= 0.18,
vector >= 0.11,
newtype,
phantom-index
ghc-options:
-Wall
-O2
-fno-warn-orphans
extra-libraries:
openblas
default-extensions:
TypeOperators
default-language:
Haskell2010