matrices-0.4.5: matrices.cabal
-- Initial matrices.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: matrices
version: 0.4.5
synopsis: native matrix based on vector
description: Pure Haskell matrix library, supporting creating, indexing,
and modifying dense/sparse matrices.
license: BSD3
license-file: LICENSE
author: Kai Zhang
maintainer: kai@kzhang.org
copyright: (c) 2015-2017 Kai Zhang
category: Data
build-type: Simple
cabal-version: >=1.10
library
exposed-modules:
Data.Matrix
Data.Matrix.Mutable
Data.Matrix.Storable
Data.Matrix.Storable.Mutable
Data.Matrix.Unboxed
Data.Matrix.Unboxed.Mutable
Data.Matrix.Generic
Data.Matrix.Generic.Mutable
Data.Matrix.Dense.Generic
Data.Matrix.Dense.Generic.Mutable
Data.Matrix.Sparse.Generic
Data.Matrix.Symmetric
Data.Matrix.Symmetric.Mutable
ghc-options: -Wall -funbox-strict-fields
build-depends:
base >=4.8 && <5
, deepseq
, vector >=0.11
, primitive
hs-source-dirs: src
default-language: Haskell2010
benchmark benchmarks
type: exitcode-stdio-1.0
main-is: benchmarks.hs
hs-source-dirs: benchmarks
build-depends:
base
, matrices
, vector
, criterion
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/kaizhang/matrices.git
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: test.hs
other-modules:
default-language: Haskell2010
build-depends:
base
, matrices
, vector
, tasty
, tasty-hunit
, tasty-quickcheck