packages feed

HSGEP-0.1.2: HSGEP.cabal

Name:          HSGEP
Version:       0.1.2
Cabal-Version: >= 1.6
License:       BSD3
License-File:  LICENSE
Copyright:     (c) 2009-2010 Matthew Sottile
Author:        Matthew Sottile
Maintainer:    Matthew Sottile <mjsottile@computer.org>
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, haskell98, mersenne-random-pure64, monad-mersenne-random, vector
  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

Executable HSGEP_Regression
    GHC-Options: -Wall
    GHC-Prof-Options: -Wall -auto-all -caf-all

  Build-Depends:   csv
  Main-Is:         GEP/Examples/Regression/Driver.hs

Executable HSGEP_CADensity
    Buildable:  False
  Main-Is:         GEP/Examples/CADensity/Driver.hs