lbf/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
use std::time::Instant;

use once_cell::sync::Lazy;

pub mod io;
pub mod lbf_config;
pub mod lbf_cost;
pub mod lbf_optimizer;
pub mod samplers;

pub static EPOCH: Lazy<Instant> = Lazy::new(Instant::now);