divy-07 / chess-engine

Implementing a basic Java chess engine
Apache License 2.0
1 stars 0 forks source link

Implement basic mini-max algorithm #16

Closed divy-07 closed 1 year ago

divy-07 commented 1 year ago

We currently have a placeholder non-tested algorithm to find the best move, we need to replace this with a solid and thoroughly-tested mini-max algorithm.

Note: We will add alpha-beta pruning later.