-- 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.1.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: git@github.com:afiskon/simple-genetic-algorithm.git

library
  exposed-modules:     GA.Simple
  ghc-options:         -O2 -Wall -fno-warn-missing-signatures
  build-depends:       base >=4.6 && < 4.7,
                       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.6 && < 4.7,
                       random >= 1.0 && < 1.1,
                       deepseq >= 1.3 && < 1.4,
                       parallel >= 3.2 && < 3.3
  hs-source-dirs:      src
  default-language:    Haskell2010