Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.77 KB

CHANGELOG.md

File metadata and controls

53 lines (34 loc) · 1.77 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

  • Added implementation of SPEA-II - improved version of the Strength Pareto Evolutionary Algorithm.

  • Added plots of objective functions' values for each example along with scripts that create plots from the examples. The plots can be found in the examples folder in the root of the project.

  • Added RouletteSelector, TournamentSelectorWithReplacement and TournamentSelectorWithoutReplacement selectors. These selectors select solutions based on their number of dominations over each other.

Changed

  • ParEach and ParBatch operator wrappers now put constraints on their operators and the solution type. This helps to catch parallelization errors sooner.

  • Miscellaneous documentation updates.

  • Miscellaneous examples updates.

Removed

  • Removed all re-exports from lib.rs.

  • Removed BestSelector and TournamentSelector original implementations. These selectors used to select solutions with minimal sum of their objective scores. This approach harmed diversity of population, favoring solutions, that leaned towards objectives with the smaller upper bound.

Added

  • MOGA is released on crates.io. Hello, MOGA!