1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! The core crate of [`kurobako`](https://github.com/optuna/kurobako).
#![warn(missing_docs)]

#[macro_use]
extern crate trackable;

pub use error::{Error, ErrorKind};

pub mod domain;
pub mod epi;
pub mod hypervolume;
pub mod json;
pub mod num;
pub mod problem;
pub mod registry;
pub mod rng;
pub mod solver;
pub mod trial;

mod error;

/// This crate specific `Result` type.
pub type Result<T, E = Error> = std::result::Result<T, E>;