1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![allow(dead_code)]

pub mod board;
pub mod minimax;
pub mod mcts;
pub mod game;
//pub mod hmcts;
pub mod bot_game;

mod tests;

#[macro_use]
extern crate lazy_static;