Evolutionary.jl

The package Evolutionary aims to provide a library for evolutionary optimization. It provides implementation of $(\mu/\rho \; \stackrel{+}{,} \;\lambda)$-Evolution Strategy, $(\mu/\mu_I, \;\lambda)$-Covariance Matrix Adaptation Evolution Strategy, Genetic Algorithm, and Differential Evolution as well as a rich set of mutation, recombination, crossover and selection functions.

Getting started

To install the package just type

] add Evolutionary

A simple example of using the GA algorithm to find minimum of the Sphere function.

julia> using Evolutionary

julia> result = Evolutionary.optimize(
             x -> sum(x.^2), ones(3),
             GA(populationSize = 100, selection = susinv,
                crossover = discrete, mutation = domainrange(ones(3))))

 * Status: success

 * Candidate solution
    Minimizer:  [6.67572021484375e-6, 5.7220458984375e-6, -4.76837158203125e-6]
    Minimum:    1.000444171950221e-10
    Iterations: 159

 * Found with
    Algorithm: GA[P=100,x=0.8,μ=0.1,ɛ=0]