~ruther/ctu-fee-eoa

ref: ff86cab83b7a8afcf2cba73d12cb63b074544207 ctu-fee-eoa/codes/eoa_lib/src/evolution.rs -rw-r--r-- 11.7 KiB
ea435de8 — Rutherther 6 days ago
Lots of changes I lost track of
ab9a6739 — Rutherther 11 days ago
fix: implement possibility of best candidate not being found
51a8da0c — Rutherther 11 days ago
refactor: add possibility to use different logic for obtaining best candidate
c0b18ff7 — Rutherther 25 days ago
feat: add possibility to map EvolutionResult evaluations
0420a0cc — Rutherther a month ago
refactor(lib): Allow fitting whole population at once

The fitness function gets fit_population function. The default
implementation is going over fit() one by one, but it can be
reimplemented by specific types.
f39d2461 — Rutherther a month ago
feat(lib): allow modifying fitness function in evolution_algorithm
62595f5e — Rutherther a month ago
chore: move population structs to separate module
0f5f2903 — Rutherther a month ago
feat: add a lot of algorithm showcases
8eb3e894 — Rutherther a month ago
feat(lib): add evaluation count to EA stats
4d86e224 — Rutherther a month ago
feat: add possibility to evolve strategy during evolution_algorithm
c6e0be8a — Rutherther a month ago
chore: do not pass pairing as mut
de36016c — Rutherther a month ago
tests: tweak one_max parameters
c47387eb — Rutherther a month ago
refactor: abstract pairing to n-ary
372dc756 — Rutherther a month ago
tests: adjust evolution one_max algorithm to always find optimum
7adc5812 — Rutherther a month ago
refactor: pass rng as argument

Instead of having the Rng stored
inside the structs, pass it through
the functions. This means it's no longer
necessary to pass perturbations etc. as mutable.
4ef3d988 — Rutherther a month ago
tests: add simple test for evolution on one_max
26456170 — Rutherther a month ago
refactor: do perturbation in place instead of cloning
8d13c275 — Rutherther a month ago
chore: move env to codes/eoa_lib
d8580bdc — Rutherther a month ago
feat: add evolution algorithm