This made the code so fast, that the `board` benchmark became completely useless. So that benchmark was removed. Overall, we're looking at a futher 20% performance increase in `future_moves`
9 lines
151 B
Rust
9 lines
151 B
Rust
mod bitboard;
|
|
mod board;
|
|
mod coords;
|
|
mod piece;
|
|
|
|
pub use board::{Board, PosMap, Winner};
|
|
pub use coords::{CoordAxis, CoordPair};
|
|
pub use piece::Piece;
|