1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! A black-box optimization benchmarking framework.
#![warn(missing_docs)]

#[macro_use]
extern crate trackable;

macro_rules! track_write {
    ($writer:expr, $($arg:tt)*) => {
        track!(write!($writer, $($arg)*).map_err(::kurobako_core::Error::from))
    }
}

macro_rules! track_writeln {
    ($writer:expr) => {
        track!(writeln!($writer).map_err(::kurobako_core::Error::from))
    };
    ($writer:expr, $($arg:tt)*) => {
        track!(writeln!($writer, $($arg)*).map_err(::kurobako_core::Error::from))
    }
}

pub mod dataset;
pub mod plot;
pub mod problem;
pub mod problem_suites;
pub mod report;
pub mod runner;
pub mod solver;
pub mod study;
pub mod time;
pub mod variable;

mod markdown;
mod record;