MAHF bindings for the COCO benchmarking framework.
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 {
/* ... */
}
This project is licensed under the GNU General Public License v3.0.