1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate trackable;

pub use self::error::{Error, ErrorKind};

pub mod budget;
pub mod observation;
pub mod optimizers;
pub mod range;
pub mod spaces;

mod error;
mod float;
mod iter;

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