haru_cmaes 0.5.0

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
13
14
#[allow(unused_imports)]
#[allow(clippy::single_component_path_imports)]
use blas_src; // necessary for eig
pub mod fitness;
pub mod params;
pub mod simple_use;
pub mod state;
pub mod strategy;
pub mod utils;

// TODO:
// initialize vectors with capacity
// use arrays where possible
// use nalgebra for better eig