Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2026-06-26

### Added

- Validation / correctness benchmark suite: GA + NSGA-II parity vs pymoo and DEAP
across single- and multi-objective problems, with committed 30-seed results, a
rendered report, and a published Validation docs page.

### Notes

- No breaking changes. The optimizer API and core are unchanged since 0.1.0; the
benchmark numbers therefore remain valid for 0.2.0.

## [0.1.0] - 2026-06-25

### Added
Expand All @@ -19,5 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Optional parallel evaluation via joblib (`n_workers`).
- Typed public API shipping a `py.typed` marker (PEP 561).

[Unreleased]: https://github.com/hydrosolutions/ctrl-freak/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/hydrosolutions/ctrl-freak/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/hydrosolutions/ctrl-freak/releases/tag/v0.2.0
[0.1.0]: https://github.com/hydrosolutions/ctrl-freak/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ artifact.
| Field | Value |
|---|---|
| Seeds | 30 (0–29) |
| ctrl-freak | 0.1.0 |
| ctrl-freak | 0.2.0 |
| pymoo | 0.6.1.6 |
| deap | 1.4.3 |
| numpy | 2.4.1 |
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,15 @@ def _provenance_table(meta: dict) -> str:
--------
>>> meta = {
... "n_seeds": 30,
... "versions": {"ctrl_freak": "0.1.0", "pymoo": "0.6.1.6", "deap": "1.4.3", "numpy": "2.4.1"},
... "versions": {"ctrl_freak": "0.2.0", "pymoo": "0.6.1.6", "deap": "1.4.3", "numpy": "2.4.1"},
... "budgets": {"so_pop_size": 100, "so_n_generations": 200, "mo_pop_size": 100,
... "mo_n_generations": 250, "sbx_eta": 15.0, "pm_eta": 20.0},
... }
>>> print(_provenance_table(meta)) # doctest: +ELLIPSIS
| Field | Value |
|---|---|
| Seeds | 30 (0–29) |
| ctrl-freak | 0.1.0 |
| ctrl-freak | 0.2.0 |
...
| SBX / PM eta | 15.0 / 20.0 |
"""
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/results/benchmark_results.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
],
"statistic": "overlapping_variance: equivalent iff |mean_cf - mean_lib| < max(std_cf, std_lib)",
"versions": {
"ctrl_freak": "0.1.0",
"ctrl_freak": "0.2.0",
"pymoo": "0.6.1.6",
"deap": "1.4.3",
"numpy": "2.4.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ and figure, regenerated from the committed results JSON) lives in the repository
| Field | Value |
|---|---|
| Seeds | 30 (0–29) |
| ctrl-freak | 0.1.0 |
| ctrl-freak | 0.2.0 |
| pymoo | 0.6.1.6 |
| deap | 1.4.3 |
| numpy | 2.4.1 |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ctrl-freak"
version = "0.1.0"
version = "0.2.0"
description = "Pure-numpy genetic algorithm framework for single-objective (GA) and multi-objective (NSGA-II) optimization"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading