| There are several types of players you can choose from. Clicking 'settings' will let you control the search depth of the selected algorithm. A bigger number will make the game slower, but more challenging. A "Greedy" Go player. It uses a statical evaluation (heuristic) to choose his next move. A Min-Max based Go player. It's the classical way to choose the optimal move when we have the game tree. The AlphaBeta Go player). Faster than Min-Max (it does not explore branches that are clearly worse than what was already explored) but the idea is the same. |