Skip to main content

rustsim_schedulers/
lib.rs

1//! Re-exports of scheduler types from `rustsim-core`.
2//!
3//! This is a convenience crate - all types originate in
4//! [`rustsim_core::scheduler`]. Use `rustsim-schedulers` when you need
5//! schedulers without pulling in the full core crate.
6
7pub use rustsim_core::scheduler::{ByProperty, Fastest, PartiallyRandom, Randomly, Scheduler};