-- Initial spsa.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: spsa version: 0.1.1.0 synopsis: Simultaneous Perturbation Stochastic Approximation Optimization Algorithm description: The Simultaneous Perturbation Stochastic Approximation (SPSA) Optimization Algorithm implemented in Haskell. homepage: https://github.com/yanatan16/haskell-spsa license: MIT license-file: LICENSE author: Jon Eisen maintainer: jon@joneisen.me copyright: (c) 2013-2014 Jon Eisen (c) 2013-2013 Metric Feat LLC category: Math, Optimization stability: experimental build-type: Simple cabal-version: >=1.10 flag developer description: operate in developer mode default: False test-suite tests default-language: Haskell2010 type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: tests other-modules: Test.Test, Test.Types build-depends: base >=4 && < 5, spsa, random, hmatrix >= 0.15, test-framework >= 0.2.0, test-framework-quickcheck2 >= 0.2.0, QuickCheck >= 2, test-framework-hunit >= 0.2.0, HUnit >= 1.2 && < 2 default-extensions: GeneralizedNewtypeDeriving benchmark benchmarks default-language: Haskell2010 type: exitcode-stdio-1.0 hs-source-dirs: benchmarks main-is: Benchmarks.hs ghc-options: -O2 -rtsopts build-depends: base >=4 && < 5, spsa, hmatrix >= 0.15, criterion >= 0.8 library default-language: Haskell2010 exposed-modules: Math.Optimization.SPSA, Math.Optimization.LossFunctions other-modules: Math.Optimization.SPSA.Types, Math.Optimization.SPSA.Implementation hs-source-dirs: src build-depends: base >=4 && < 5, random, hmatrix >= 0.15 default-extensions: GeneralizedNewtypeDeriving if flag(developer) hs-source-dirs: tests other-modules: Test.Test, Test.Types build-depends: test-framework >= 0.2.0, test-framework-quickcheck2 >= 0.2.0, QuickCheck >= 2, test-framework-hunit >= 0.2.0, HUnit >= 1.2 && < 2 source-repository head type: git location: git://github.com/yanatan16/haskell-spsa.git