-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsimple-genetic-algorithm.cabal
More file actions
41 lines (37 loc) · 1.42 KB
/
simple-genetic-algorithm.cabal
File metadata and controls
41 lines (37 loc) · 1.42 KB
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
41
-- 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: 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
build-depends: base >= 4.5 && < 4.11,
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 -threaded -rtsopts
main-is: MainSin.hs
build-depends: base >= 4.5 && < 4.11,
random >= 1.0 && < 1.2,
deepseq >= 1.3 && < 1.5,
-- package
simple-genetic-algorithm
hs-source-dirs: exe
default-language: Haskell2010