blob: ca4c0134cc23e4c4eece466a9fdff5e0fefdf9cf (
plain)
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: hmatrix-tests
Version: 0.2
License: GPL
License-file: LICENSE
Author: Alberto Ruiz
Maintainer: Alberto Ruiz <aruiz@um.es>
Stability: provisional
Homepage: http://perception.inf.um.es/hmatrix
Synopsis: Tests for hmatrix
Description: Tests for hmatrix
Category: Math
tested-with: GHC==7.0.4
cabal-version: >=1.8
build-type: Simple
extra-source-files: CHANGES
src/tests.hs
library
Build-Depends: base >= 4 && < 5,
hmatrix >= 0.14,
QuickCheck >= 2, HUnit, random
hs-source-dirs: src
exposed-modules: Numeric.LinearAlgebra.Tests
other-modules: Numeric.LinearAlgebra.Tests.Instances,
Numeric.LinearAlgebra.Tests.Properties
ghc-options: -Wall -fno-warn-missing-signatures -fno-warn-orphans
source-repository head
type: git
location: https://github.com/AlbertoRuiz/hmatrix
Test-Suite basic
Build-Depends: base, hmatrix-tests
type: exitcode-stdio-1.0
main-is: src/tests.hs
|