2023-12-28 12:08:37 -07:00
|
|
|
// Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
2025-06-20 14:23:57 -07:00
|
|
|
mod evaluation;
|
2024-01-19 18:11:27 -08:00
|
|
|
mod position;
|
2023-12-26 11:25:27 -07:00
|
|
|
|
2024-01-24 17:08:27 -08:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
2025-06-20 14:23:57 -07:00
|
|
|
pub use chessfriend_board::{PlacePieceError, PlacePieceStrategy, fen};
|
2025-06-07 20:09:51 -07:00
|
|
|
pub use chessfriend_moves::{GeneratedMove, ValidateMove};
|
2025-05-31 19:01:20 -07:00
|
|
|
pub use position::Position;
|
2025-06-06 21:45:07 -07:00
|
|
|
|
2025-06-16 09:01:58 -07:00
|
|
|
pub mod perft;
|
2025-06-06 21:45:07 -07:00
|
|
|
#[macro_use]
|
|
|
|
pub mod testing;
|