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
/// Main entry point of the application.
///
/// This function prints a message directing users to check the library code
/// (`lib.rs`) and example files for more information on how to use the CMA-ES
/// algorithm implementation.
fn main() {
    println!("CMA-ES Algorithm Implementation");
    println!(
        "For detailed usage and examples, please refer to `lib.rs` and the examples directory."
    );
}