//! Simulon is a lite discrete event simulation engine used for simulating latency sensitive IO
//! bound applications. It provides a small set of API that can be used inside of a simulation
//! to interact with other nodes in the same simulation, and perform basic IO.
use Duration;
/// The api to use inside the simulation executor.
/// The types and implementations around the latency data provider.
/// The types used for generating reports after a simulation.
/// The simulator engine.
/// How many frames is one millisecond?
pub const FRAME_TO_MS: u64 = 4;
/// The duration of one frame.
pub const FRAME_DURATION: Duration = from_micros;