packages feed

GA-1.0: GA.cabal

Name:                GA
Version:             1.0
Synopsis:            Genetic algorithm library
License:             BSD3
License-file:        LICENSE
Author:              Kenneth Hoste
Maintainer:          kenneth.hoste@gmail.com
Copyright:           (c) 2011 Kenneth Hoste
Homepage:            http://boegel.kejo.be
Bug-reports:         mailto:kenneth.hoste@gmail.com
Category:            AI, Algorithms, Optimisation
Stability:           Experimental
Build-type:          Simple
Cabal-version:       >= 1.6
Description:
  This package provides a framework for working with genetic
  algorithms. A genetic algorithm is an evolutionary technique, 
  inspired by biological evolution, to evolve entities that perform
  as good as possible in terms of a predefined criterion (the scoring 
  function). Note: lower scores are assumed to indicate better entities.
  The GA module provides a type class for defining entities and the
  functions that are required by the genetic algorithm.
  Checkpointing in between generations is available, as is automatic
  restoring from the last available checkpoint. 
  
Extra-source-files:  examples/example1.hs, 
                     examples/example2.hs, 
                     examples/example3.hs, 
                     Makefile
Tested-with:         GHC==6.12.1

Library
  exposed-modules:     GA
  extensions:          FunctionalDependencies, MultiParamTypeClasses
  ghc-options:         -Wall
  build-depends:       base >= 4 && < 5, directory, 
                       random, transformers

source-repository head
  type: git
  location: git://github.com/boegel/GA.git