Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 929 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 929 Bytes

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.