forked from chrisnc/hvx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhvx.cabal
50 lines (47 loc) · 1.56 KB
/
hvx.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
name : hvx
version : 0.1.0.0
synopsis : Solves convex optimization problems with subgradient methods.
license-file : LICENSE
author : Chris Copeland and Michael Haggblade
category : Math
build-type : Simple
cabal-version : >=1.20
library
exposed-modules : HVX
, HVX.Primitives
, HVX.Internal.Constraints
, HVX.Internal.DCP
, HVX.Internal.Matrix
, HVX.Internal.Primitives
, HVX.Internal.Solvers
, HVX.Internal.SymbolicSubgrad
, HVX.Internal.TestUtil
, HVX.Internal.Util
other-extensions : GADTs, TypeFamilies, FlexibleContexts
build-depends : base < 5
, QuickCheck > 2.5
, hmatrix
hs-source-dirs : src
default-language : Haskell2010
ghc-options : -Wall
test-suite haskell-tests
type : exitcode-stdio-1.0
build-depends : base < 5
, QuickCheck > 2.5
, hspec
, hmatrix
, hvx
hs-source-dirs : test
main-is : Spec.hs
default-language : Haskell2010
ghc-options : -Wall
test-suite shell-tests
type : exitcode-stdio-1.0
build-depends : base < 5
, directory
, process
, filepath
hs-source-dirs : test
main-is : DcpTests.hs
default-language : Haskell2010
ghc-options : -Wall