From f9227df96ed4f19dde4bdcb408a6399c8ae20cff Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Fri, 6 Feb 2026 16:50:43 +0100 Subject: [PATCH] docs: update features list with boolean, enum, and derive support Co-Authored-By: Claude Opus 4.6 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1116318..1bc6e94 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,10 @@ A Rust library for black-box optimization with multiple sampling strategies. - **Random Search** - Simple random sampling for baseline comparisons - **TPE (Tree-Parzen Estimator)** - Bayesian optimization for efficient search - **Grid Search** - Exhaustive search over a specified parameter grid -- Float, integer, and categorical parameter types +- Float, integer, categorical, boolean, and enum parameter types - Log-scale and stepped parameter sampling - Sync and async optimization with parallel trial evaluation +- `#[derive(Categorical)]` for enum parameters ## Quick Start