demine 0.1.0

A minesweeper solver.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "use-mimalloc")]
mod use_mimalloc {
    use mimalloc::MiMalloc;

    #[global_allocator]
    static GLOBAL_ALLOCATOR: MiMalloc = MiMalloc;
}

pub mod board;
pub mod generator;
pub mod solver;
pub mod utils;