haru_cmaes 2.0.1

A simple CMA-ES optimization algorithm implementation based on Hansen's purecma Python implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # CMA-ES Algorithm Implementation
//!
//! This crate provides an implementation of the CMA-ES algorithm.
//!
//! For detailed usage and examples, please refer to `lib.rs` and the examples directory.

pub mod fitness;
pub mod params;
pub mod state;
pub mod strategy;

pub mod utils;