-
Notifications
You must be signed in to change notification settings - Fork 3
/
SimpleEA.cabal
27 lines (24 loc) · 958 Bytes
/
SimpleEA.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
name: SimpleEA
category: AI
build-type: Simple
version: 0.2.1
synopsis: Simple evolutionary algorithm framework.
description: Simple framework for running an evolutionary algorithm by
providing selection, recombination, and mutation operators.
license: BSD3
License-file: LICENSE
author: Erlend Hamberg
maintainer: [email protected]
stability: experimental
tested-with: GHC==7.4.1
homepage: http://www.github.com/ehamberg/simpleea/
cabal-version: >=1.6
Library
build-depends: base >=4 && < 5,
MonadRandom,
mersenne-random-pure64 >= 0.2 && < 0.3
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-orphans
exposed-modules: AI.SimpleEA, AI.SimpleEA.Utils
source-repository head
type: git
location: git://github.com/ehamberg/simpleea.git