-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHSGEP.cabal
43 lines (36 loc) · 1.48 KB
/
HSGEP.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
41
42
Name: HSGEP
Version: 0.1.5
Cabal-Version: >= 1.6
License: BSD3
License-File: LICENSE
Copyright: (c) 2009-2012 Matthew Sottile
Author: Matthew Sottile
Maintainer: Matthew Sottile <[email protected]>
Stability: alpha
Homepage: http://github.com/mjsottile/hsgep/
Category: AI
Synopsis: Gene Expression Programming evolutionary algorithm in Haskell
Build-Type: Simple
Description: Gene Expression Programming evolutionary algorithm implemented
in Haskell.
Extra-Source-Files: Examples/Regression/*.in Examples/Regression/*.csv README README_Params.txt
Library
GHC-Options: -Wall
GHC-Prof-Options: -Wall -auto-all -caf-all
Build-Depends: base>=4&&<5, mtl, mersenne-random-pure64, monad-mersenne-random, vector, split
Exposed-modules:
GEP.Fitness, GEP.GeneOperations, GEP.MonadicGeneOperations,
GEP.Params, GEP.Random, GEP.Rmonad,
GEP.TimeStep, GEP.Selection, GEP.Util.ConfigurationReader,
GEP.Types, GEP.GenericDriver, GEP.Expression
Executable HSGEP_Regression
GHC-Options: -Wall
GHC-Prof-Options: -Wall -auto-all -caf-all
Build-Depends: csv
Main-Is: GEP/Examples/Regression/Driver.hs
Other-Modules: GEP.Examples.Regression.FitnessInput,
GEP.Examples.Regression.ArithmeticIndividual
Executable HSGEP_CADensity
GHC-Options: -Wall
GHC-Prof-Options: -Wall -auto-all -caf-all
Main-Is: GEP/Examples/CADensity/Driver.hs