-- Initial nonlinear-optimization-ad.cabal generated by cabal init. For -- further documentation, see http://haskell.org/cabal/users-guide/ name: nonlinear-optimization-ad version: 0.2.4 synopsis: Wrapper of nonlinear-optimization package for using with AD package description: This package enhance [nonlinear-optimization](https://hackage.haskell.org/package/nonlinear-optimization)'s usability by using [ad](https://hackage.haskell.org/package/ad)'s automatic differentiaion. You only need to specify a function to minimize and don't need to specify its gradient explicitly. homepage: https://github.com/msakai/nonlinear-optimization-ad bug-reports: https://github.com/msakai/nonlinear-optimization-ad/issues license: GPL-3 license-file: LICENSE copyright: (c) 2013 Masahiro Sakai author: Masahiro Sakai (masahiro.sakai@gmail.com) maintainer: masahiro.sakai@gmail.com category: Math, Algorithms, Optimisation, Optimization build-type: Simple cabal-version: >=1.10 extra-source-files: README.md CHANGELOG.markdown samples/galton.csv tested-with: GHC==8.8.2 tested-with: GHC==8.6.4 tested-with: GHC==8.4.4 tested-with: GHC==8.2.2 tested-with: GHC==8.0.2 tested-with: GHC==7.10.3 tested-with: GHC==7.8.4 source-repository head type: git location: git://github.com/msakai/nonlinear-optimization-ad.git flag BuildSamplePrograms Description: build sample programs Default: False Manual: True library exposed-modules: Numeric.Optimization.Algorithms.HagerZhang05.AD build-depends: base >=4 && <5 , nonlinear-optimization >=0.3.7 && <0.4 , ad >=3.4 && <4.5 , vector >= 0.5 && < 0.13 , primitive , reflection hs-source-dirs: src default-language: Haskell2010 other-extensions: ScopedTypeVariables Rank2Types TypeFamilies CPP -- Sample Programs Executable LinearRegression If !flag(BuildSamplePrograms) Buildable: False Main-is: LinearRegression.hs HS-Source-Dirs: samples Build-Depends: base, bytestring, cassava, nonlinear-optimization-ad, vector Default-Language: Haskell2010 Other-extensions: TypeFamilies