major-pickems-sim 0.2.2

Tool for analysing pick'ems for Counter-Strike major tournaments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(portable_simd)]
#![cfg_attr(
    feature = "pprof",
    allow(dead_code, unreachable_code, unused_imports, unused_variables)
)]

mod data;
mod simulate;
mod wizard;

pub use data::{inspect, wizard};
pub use simulate::{BasicReport, NullReport, Simulation, simulate};