From 41ce61793c37ac9c5667f104c818407e952663b0 Mon Sep 17 00:00:00 2001 From: nikohansen Date: Wed, 25 Jan 2023 18:45:55 +0100 Subject: [PATCH] v3.3.0 --- README.md | 13 +++++++++++++ cma/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 91a75aa..1384b0d 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,19 @@ either of these with ``sudo``. ## Version History +* [Release ``3.3.0``](https://github.com/CMA-ES/pycma/releases/tag/r3.3.0) + implements + - diagonal acceleration via diagonal decoding (option + `CMA_diagonal_decoding`, by default still off). + - `fmin_lq_surr2` for running the surrogate assisted + [lq-CMA-ES](https://cma-es.github.io/lq-cma). + - `optimization_tools.ShowInFolder` to facilitate rapid experimentation. + - `verb_disp_overwrite` option starts to overwrite the last line of the + display output instead of continuing adding lines to avoid screen + flooding with longish runs (off by default). + - various smallish improvements, bug fixes and additional features and + functions. + * [Release ``3.2.2``](https://github.com/CMA-ES/pycma/releases/tag/r3.2.2) fixes some smallish interface and logging bugs in `ConstrainedFitnessAL` and a bug when printing a warning. Polishing mainly in the plotting diff --git a/cma/__init__.py b/cma/__init__.py index bc752e8..61cd325 100644 --- a/cma/__init__.py +++ b/cma/__init__.py @@ -150,7 +150,7 @@ # fcts = ff # historical reasons only, replace cma.fcts with cma.ff first -__version__ = "3.2.2" +__version__ = "3.3.0" # $Source$ # according to PEP 8 style guides, but what is it good for? # $Id: __init__.py 4432 2020-05-28 18:39:09Z hansen $ # bash $: svn propset svn:keywords 'Date Revision Id' __init__.py