Add basic iterative deepening implementation

This commit is contained in:
stefiosif
2024-10-29 22:55:35 +02:00
parent ff6bbafc50
commit 802bdcdb37
2 changed files with 54 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
pub mod iterative_deepening;
pub mod move_ordering;
pub mod negamax;
pub mod perft;