Popularity
5.0
Declining
Activity
0.0
Stable
7
3
3

Monthly Downloads: 19
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: AI    
Latest version: v0.2.1

SimpleEA alternatives and similar packages

Based on the "AI" category.
Alternatively, view SimpleEA alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SimpleEA or a related project?

Add another 'AI' Package

README

Build Status

SimpleEA is a Haskell library for evolutionary algorithms. It is written to be easy to understand and use.

A simple example program using the library is included in AI/SimpleEA.hs. The documentation is also available at Hackage.

Given a function for evaluating a genome's fitness, a function for probabilistic selection among a pool of genomes, and recombination and mutation operators, an infinite list of generations is produced. You can choose to take a predefined number of these generations or takeWhile a predicate holds (e.g. that the fitness is below some value).

Utility functions for analyzing a run and for producing plotting data is included in AI/SimpleEA/Utils.hs.