packages feed

simple-genetic-algorithm-0.2.0.0: simple-genetic-algorithm.cabal

-- Initial simple-genetic-algorithm.cabal generated by cabal init.  For 
-- further documentation, see http://haskell.org/cabal/users-guide/

name:                simple-genetic-algorithm
version:             0.2.0.0
synopsis:            Simple parallel genetic algorithm implementation
description:         Simple parallel genetic algorithm implementation
homepage:            http://eax.me/haskell-genetic-algorithm/
license:             BSD3
license-file:        LICENSE
author:              Alexander Alexeev
maintainer:          mail@eax.me
-- copyright:           
category:            AI
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

source-repository head
    type:     git
    location: https://github.com/afiskon/simple-genetic-algorithm

library
  exposed-modules:     AI.GeneticAlgorithm.Simple
  ghc-options:         -O2 -Wall -fno-warn-missing-signatures
  build-depends:       base >=4.5 && < 4.8,
                       random >= 1.0 && < 1.1,
                       parallel >= 3.2 && < 3.3
  hs-source-dirs:      src
  default-language:    Haskell2010

executable ga-sin-example
  ghc-options:         -O2 -Wall -fno-warn-missing-signatures -threaded -rtsopts
  main-is:             MainSin.hs
  build-depends:       base >= 4.5 && < 4.8,
                       random >= 1.0 && < 1.1,
                       deepseq >= 1.3 && < 1.4,
                       parallel >= 3.2 && < 3.3
  hs-source-dirs:      src
  default-language:    Haskell2010