~ruther/ctu-fee-eoa

ref: 372dc756e002ef91480f4455c046b8d8da30458d ctu-fee-eoa/codes/eoa_lib/src/perturbation/mod.rs -rw-r--r-- 8.9 KiB
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