~ruther/ctu-fee-eoa

296be2cc — Rutherther 11 months ago
feat: add test for local search with PatternPerturbation
abae7113 — Rutherther 11 months ago
feat: add PatternPerturbation

Move by +/- d in random single coordinate.
c5320f46 — Rutherther 11 months ago
feat: add uniform constructor for RandomDistributionPerturbation
f5bf8195 — Rutherther 11 months ago
feat: remove min, max from bounded perturbation
967210c0 — Rutherther 11 months ago
tests: add test for Linear fitness function
06f3259b — Rutherther 11 months ago
feat: add BoundedPerturbation

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

For vectors of reals, perturb by a random distribution with
expectation in 0.
79c83af9 — Rutherther 11 months ago
feat: add real fitness functions

Add linear, step, rastrigin, griewank and schwefel fitness functions
along with the tests for them.

Try using static vector where appropriate, but use OVector for those
where filling with zeros won't work. This is mostly a constrain for
the tests... rather than a real constrain. In the end the dimensions
will be given for each problem.
2ae23262 — Rutherther 11 months ago
chore: add nalgebra
b1a2bbaa — Rutherther 11 months ago
refactor: extend local search to accept any inputs

Instead of accepting only BinaryString, accept anything.
Extend the operators to accept anything.
f6dd4b7e — Rutherther 11 months ago
tests: move all tests to separate submodules
a52b682c — Rutherther 11 months ago
tests: add rosenbrock test
13e5d2f1 — Rutherther 11 months ago
feat: add MaximizingOperator
cab8e171 — Rutherther a year ago
chore: guard test imports by #[cfg(test)]
dfddcfde — Rutherther a year ago
chore: split types and functions to separate module files
2d3672a3 — Rutherther a year ago
tests: let EqualTerminatingCondition remember matches to return even if no longer equal
70ae200e — Rutherther a year ago
tests: For local search test, wait 100 cycles after optimum found
357cb2ea — Rutherther a year ago
feat: add AndTerminatingConditions that ands multiple conditions
5536e19f — Rutherther a year ago
chore: rename NoMatchForTerminatingCondition to NoBetterForTerminatingCondition
9eb722b9 — Rutherther a year ago
Initial commit