lbf/lib.rs
1use std::sync::LazyLock;
2use std::time::Instant;
3
4pub mod config;
5pub mod io;
6pub mod opt;
7pub mod samplers;
8
9pub static EPOCH: LazyLock<Instant> = LazyLock::new(Instant::now);
10
11//limits the number of items to be placed, for debugging purposes
12pub const ITEM_LIMIT: usize = usize::MAX;