packages feed

matrices-0.2.0: matrices.cabal

-- Initial matrices.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                matrices
version:             0.2.0
synopsis:            native matrix based on vector
description:         This library provide the APIs for creating, indexing,
                     modifying matrices (2d arrays). The underling data
                     structure is vector. It's not intended to be a linear
                     algebra library.
license:             BSD3
license-file:        LICENSE
author:              Kai Zhang
maintainer:          kai@kzhang.org
copyright:           (c) 2014 Kai Zhang
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:
      Data.Matrix
    , Data.Matrix.Mutable
    , Data.Matrix.Generic
    , Data.Matrix.Generic.Mutable
    , Data.Matrix.Generic.Base
    , Data.Matrix.Generic.Types
    , Data.Matrix.Storable
    , Data.Matrix.Storable.Mutable
    , Data.Matrix.Unboxed
    , Data.Matrix.Unboxed.Mutable

  ghc-options: -Wall -fwarn-tabs -funbox-strict-fields

  -- other-modules:       

  build-depends:
      base >=4.0 && <4.8
    , vector >=0.9
    , primitive

  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/kaizhang/matrices.git