~ruther/ctu-fee-eoa

ref: 7de4f4b41b92ce93559ea9182849a54ccc87e270 ctu-fee-eoa/codes/eoa_lib/src/perturbation/mod.rs -rw-r--r-- 11.6 KiB
1d889574 — Rutherther a month ago
feat: add utilities to perturbation to iterate through wrappers easily

Make PerturbationOperator implement Any, allowing it to be downcasted.
Make WrapperPerturbation for perturbations that wrap other
perturbations, such as the mutation perturbation and bounded perturbation.
Make ListWrapperPerturbation for pertrubations that wrap multiple
pertrubations, such as the combined perturbation.

This should allow for easily looking through perturbations, finding
all perturbations of a specific type and modifying them. One use
case can be for changing the probability of a mutation perturbation
during evolution.
b39687d4 — Rutherther a month ago
feat(binary_string): add single bit perturbation, flip perturbation
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.
26456170 — Rutherther a month ago
refactor: do perturbation in place instead of cloning
600d9ae9 — Rutherther a month ago
feat: add mutation and combined perturbations
8d13c275 — Rutherther a month ago
chore: move env to codes/eoa_lib
c66539e1 — Rutherther a month ago
refactor: Add dimension generic to BinaryString
3a92d736 — Rutherther a month ago
feat: add simple plotting of local search
ef07dac0 — Rutherther 2 months ago
feat: add evolutionary strategies to local search
ba97623c — Rutherther 2 months ago
fix: put Rng to Box instead of generics
abae7113 — Rutherther 2 months ago
feat: add PatternPerturbation

Move by +/- d in random single coordinate.
c5320f46 — Rutherther 2 months ago
feat: add uniform constructor for RandomDistributionPerturbation
f5bf8195 — Rutherther 2 months ago
feat: remove min, max from bounded perturbation
06f3259b — Rutherther 2 months ago
feat: add BoundedPerturbation

applies bounds on real numbers when performing the perturbation.
fcdc8b36 — Rutherther 2 months ago
feat: add RandomDistributionPerturbation

For vectors of reals, perturb by a random distribution with
expectation in 0.
f6dd4b7e — Rutherther 2 months ago
tests: move all tests to separate submodules
dfddcfde — Rutherther 2 months ago
chore: split types and functions to separate module files