EvoLP - An evolutionary computation playground
Welcome to the documentation for EvoLP!
What is EvoLP?
EvoLP is a playground for evolutionary computation in Julia. It provides a set of predefined building blocks that can be coupled together to 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.
Getting started
- Read the quick start page for information about installation and to get a quick overview.
- Browse some of the examples to see how to use the built-in algorithms.
- For a more comprehensive tutorial, read the 8-queens problem where we make an algorithm from scratch.
Alternatively, you can browse the type and functions indices to view all available functionality.
Parallel evaluation and Island Models
EvoLP provides island support via MPI as an extension. Read more about island models in EvoLP and how to achieve parallel evaluation.
Citing EvoLP.jl
If you find EvoLP.jl useful in your work or research, we kindly request that you cite the following conference paper:
@inproceedings{Sanchez-DiazEvoLP2023a,
address = {Bergen, NO},
author = {Sánchez-Díaz, Xavier F. C. and Mengshoel, Ole Jakob},
booktitle = {Proceedings of the 5th Symposium of the Norwegian AI Society},
editor = {Galimullin, Rustam and Touileb, Samia},
month = jun,
publisher = {CEUR Workshop Proceedings},
series = {NAIS 2023: Symposium of the Norwegian AI Society 2023},
title = {{EvoLP.jl: A Playground for Evolutionary Computation in Julia}},
url = {https://ceur-ws.org/Vol-3431/},
year = {2023}
}
You can also cite EvoLPIslands, our MPI Extension, by citing the following conference paper:
@article{sanchez-DiazEvolutionaryComputationIslands2023,
title = {{Evolutionary Computation with Islands: Extending EvoLP.Jl for Parallel Computing}},
shorttitle = {{Evolutionary Computation with Islands}},
author = {Sánchez-Díaz, Xavier F. C. and Mengshoel, Ole Jakob},
year = {2023},
month = nov,
journal = {Norsk {IKT}-konferanse for forskning og utdanning},
number = {1},
issn = {1892-0721},
copyright = {Copyright (c) 2023 Norsk IKT-konferanse for forskning og utdanning},
}
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.
License
EvoLP is licensed under the MIT License which makes it free and open source.