name: hfann version: 0.4 cabal-version: >= 1.6 build-type: Simple license: BSD3 license-file: LICENSE copyright: (c) Olivier Boudry 2008, David Himmelstrup 2011 author: David Himmelstrup, Olivier Boudry maintainer: Lemmih stability: Experimental package-url: synopsis: Haskell binding to the FANN library description: hfann is a Haskell binding to the Fast Artificial Neural Network (FANN) library . It provides functions to easily create, train, test and use Artificial Neural Networks. category: AI tested-with: GHC == 7.0 data-files: extra-source-files: AUTHORS, CHANGELOG, README, examples/xor/Train.hs, examples/xor/Use.hs, examples/xor/xor.data extra-tmp-files: source-repository head type: darcs location: http://mirror.seize.it/hfann/ flag test default: False library buildable: True build-depends: base >= 3 && < 5 exposed-modules: HFANN HFANN.Base HFANN.Data HFANN.IO HFANN.Train other-modules: extensions: hs-source-dirs: src ghc-options: -Wall -O2 ghc-prof-options: ghc-shared-options: hugs-options: nhc98-options: includes: install-includes: c-sources: pkgconfig-depends: fann extra-libraries: doublefann, m extra-lib-dirs: include-dirs: cc-options: ld-options: pkgconfig-depends: executable HFANNTest if flag(test) buildable: True else buildable: False build-depends: base main-is: HFANNTest.hs build-tools: ghc-options: -Wall -O2 cpp-options: cc-options: ld-options: pkgconfig-depends: frameworks: c-sources: extra-libraries: doublefann, m extra-lib-dirs: include-dirs: hs-source-dirs: src other-modules: HFANN HFANN.Base HFANN.Data HFANN.IO HFANN.Train