Convert minimax to negamax and implement alpha-beta pruning

This commit is contained in:
stefiosif
2024-09-03 20:35:08 +03:00
parent ba0cbf4d7d
commit e817229d12
5 changed files with 130 additions and 114 deletions

View File

@@ -1,2 +1,2 @@
pub mod minimax;
pub mod negamax;
pub mod perft;