packages feed

rc-0.3.0.0: rc.cabal

-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 17efef2c866ea47d85997d6bc72d2cfd2fe68053ff3dfecd15aed57a1004fe33

name:           rc
version:        0.3.0.0
synopsis:       Reservoir Computing, fast RNNs
description:    Please see the README on Github at <https://github.com/masterdezign/rc#readme>
category:       Machine Learning
homepage:       https://github.com/masterdezign/rc#readme
bug-reports:    https://github.com/masterdezign/rc/issues
author:         Bogdan Penkovsky
maintainer:     dev () penkovsky dot com
copyright:      Bogdan Penkovsky
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/masterdezign/rc

library
  hs-source-dirs:
      rc
  build-depends:
      Learning >=0.1.0
    , base >=4.7 && <5
    , dde >=0.3.0
    , hmatrix >=0.18.0.0
    , linear
    , random
    , vector
  exposed-modules:
      RC.Helpers
      RC.NTC
      RC.NTC.Reservoir
      RC.NTC.Types
  other-modules:
      Paths_rc
  default-language: Haskell2010

executable ntc
  main-is: Main.hs
  hs-source-dirs:
      examples/NTC
  build-depends:
      Learning >=0.1.0
    , base >=4.7 && <5
    , dde >=0.3.0
    , hmatrix >=0.18.0.0
    , linear
    , random
    , rc
    , vector
  other-modules:
      Paths_rc
  default-language: Haskell2010

test-suite rc-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      Learning >=0.1.0
    , base >=4.7 && <5
    , dde >=0.3.0
    , hmatrix >=0.18.0.0
    , linear
    , random
    , rc
    , vector
  other-modules:
      Paths_rc
  default-language: Haskell2010