lbf/
lib.rs

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