packages feed

hmatrix-svdlibc-0.3.2: hmatrix-svdlibc.cabal

name:                hmatrix-svdlibc
version:             0.3.2
synopsis:            SVDLIBC bindings for HMatrix
description:
  Bindings for the sparse singular value decomposition
  provided by SVDLIBC.
homepage:            http://github.com/bgamari/hmatrix-svdlibc
license:             BSD3
license-file:        LICENSE
author:              Ben Gamari
maintainer:          bgamari.foss@gmail.com
copyright:           (c) 2014 Ben Gamari
category:            Math
build-type:          Simple
cabal-version:       >=1.8
extra-source-files:  cbits/*.c, include/*.h, svdlibc/*.c, svdlibc/*.h, svdlibc/README.md

source-repository head
  type:                git
  location:            git://github.com/bgamari/hmatrix-svdlibc.git

library
  exposed-modules:     Numeric.LinearAlgebra.SVD.SVDLIBC
  C-sources:           cbits/glue.c, svdlibc/svdlib.c, svdlibc/svdutil.c, svdlibc/las2.c
  Include-dirs:        include, svdlibc
  Includes:            glue.h, svdlib.h
  build-depends:       base >=4.6 && <5.0,
                       hmatrix >=0.16 && <0.18

executable svdlibc-test
  main-is:             Test.hs
  c-sources:           cbits/glue.c, svdlibc/svdlib.c, svdlibc/svdutil.c, svdlibc/las2.c
  include-dirs:        include, svdlibc
  includes:            glue.h, svdlib.h
  build-depends:       base >=4.6 && <5.0,
                       hmatrix >=0.16 && <0.18