fast_tak/
lib.rs

1mod board;
2mod colors;
3mod error;
4mod game;
5mod game_result;
6mod move_gen;
7mod ptn;
8mod reserves;
9mod stack;
10mod symm;
11mod tps;
12mod wins;
13
14pub use board::Board;
15pub use error::{PlayError, StackError, TakeError};
16pub use game::Game;
17pub use game_result::GameResult;
18pub use move_gen::perf_count;
19pub use reserves::Reserves;
20pub use symm::Symmetry;
21pub use takparse;
22pub use wins::MAX_REVERSIBLE_PLIES;