forked from afiskon/simple-genetic-algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-genetic-algorithm.cabal
41 lines (36 loc) · 1.46 KB
/
simple-genetic-algorithm.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
-- 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.1.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: [email protected]
-- 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.2,
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.2,
deepseq >= 1.3 && < 1.4,
parallel >= 3.2 && < 3.3
hs-source-dirs: src
default-language: Haskell2010