EvoLP.jl

A playground for evolutionary computation in Julia
Author ntnu-ai-lab
Popularity
10 Stars
Updated Last
1 Year Ago
Started In
July 2022

Stable Julia version GitHub

Code Style: Blue ColPrac: Contributor's Guide on Collaborative Practices for Community Packages


EvoLP is a playground for evolutionary computation in Julia. It provides a set of predefined building blocks that can be coupled together to play around: quickly generate evolutionary computation solvers and compute statistics for a variety of optimisation tasks, including discrete, continuous and combinatorial optimisation.

Features

  • Random population generators (vectors and particles)
  • Parent selection operators
  • Several crossover and mutation methods
  • Test functions for benchmarking
  • Convenient result reporting and a statistics logbook

Combine these blocks to make your own algorithms or use some of the included minimisers: GA, 1+1EA and PSO. Additionally, you can extend EvoLP to create new operators.

Installation

You can install EvoLP from the REPL using the built-in package manager:

julia> import Pkg
julia> Pkg.add("EvoLP")

Alternatively, you can enter Pkg mode by pressing the ] key and then add EvoLP like so:

julia> ] # upon typing ], the prompt changes (in place) to: pkg>
pkg> add EvoLP

Getting started

  • Read the documentation.
  • Browse some of the examples to see how to use the built-in algorithms.
  • For a more comprehensive tutorial, read the 8-queen problem where we construct an algorithm from scratch.

Bug Reports

Please report any issues via the GitHub issues tracker.

Acknowledgements

       

EvoLP started as a toolbox for internal use by PhD students of NTNU's Open AI Lab, and whose funding is provided by Project no. 311284 by The Research Council of Norway. EvoLP is licensed under the MIT License which makes it free and open source.

Used By Packages

No packages found.