packages feed

HSGEP-0.1.5: HSGEP.cabal

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 <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, 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
    Buildable:  False
  Main-Is:         GEP/Examples/CADensity/Driver.hs