use lazy_static::lazy_static;
mod maxvaluetrack;
pub mod jaccard;
pub mod probminhasher;
pub mod densminhash;
pub mod setsketcher;
pub mod superminhasher;
pub mod exp01;
pub mod fyshuffle;
pub mod weightedset;
#[cfg(feature = "sminhash2")]
pub mod superminhasher2;
pub mod invhash;
pub mod nohasher;
lazy_static! {
#[allow(dead_code)]
pub static ref LOG: u64 = {
init_log()
};
}
fn init_log() -> u64 {
env_logger::Builder::from_default_env().init();
println!("\n ************** initializing logger from env *****************\n");
1
}