cribler 0.1.1

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
10
11
12
13
//! [`KsSuite`]: named-case batching over [`cribler_core::run_ks`].

use cribler_core::{KsConfig, KsError, KsResult, run_ks};

crate::suite::impl_f64_suite!(
    KsSuite,
    KsConfig,
    KsError,
    KsResult,
    run_ks,
    EmptyCaseName,
    DuplicateCaseName
);