haru_cmaes 0.6.3

A simple CMA-ES optimization algorithm implementation based on Hansen's purecma Python implementation.
Documentation
//! # 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.

#[allow(unused_imports)]
#[allow(clippy::single_component_path_imports)]
use blas_src; // necessary for eig

pub mod params;
pub use crate::params::CmaesParams;

pub mod state;

pub mod strategy;

pub mod fitness;
pub mod simple_use;
pub mod utils;

// TODO:
// Check code and refactor more to mutable, mostly state
// initialize vectors with capacity
// use arrays where possible
// use nalgebra for better eig