Skip to content

mahf-opt/mahf-coco

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MAHF COCO

Crates.io docs.rs GitHub Workflow Status (with event) GitHub

MAHF bindings for the COCO benchmarking framework.

Getting Started

Add the following to your Cargo.toml:

[dependencies]
mahf = "0.1.0"
mahf_coco = "0.1.0"

Constructing the bbob suite and iterating through the problem instances:

use mahf_coco::{Suite, SuiteName};

let mut suite = Suite::new(SuiteName::Bbob);

for problem in suite {
    /* ... */
}

License

This project is licensed under the GNU General Public License v3.0.