cribler 0.3.0

Statistical randomness-test toolkit (chi-squared, serial, runs, KS, birthday spacing, NIST SP 800-22, paranoid meta-test). Batteries-included layer over cribler_core.
Documentation
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! suite {
    ($seed:expr) => {
        $crate::suite::Suite::new($seed)
    };
    () => {
        suite!(0)
    };
}