From fbe7f2b3f792afa4bdfa58c1303104b9253fb58d Mon Sep 17 00:00:00 2001 From: tc85324 <158290903+tc85324@users.noreply.github.com> Date: Wed, 31 Jul 2024 08:57:11 +0100 Subject: [PATCH] docs: update changelog with recombination changes --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8268e8a..ee5df582 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added Kernelised Stein Discrepancy divergence in `coreax.metrics.KSD`. - +- Added the `coreax.solvers.recombination` module, which provides the following new solvers: + - `RecombinationSolver`: an abstract base class for recombination solvers. + - `CaratheodoryRecombination`: a simple deterministic approach to solving recombination problems. + - `TreeRecombination`: an advanced deterministic approach that utilises `CaratheodoryRecombination`, + but provides superior performance for solving all but the smallest recombination problems. ### Fixed