Author: Sorin Gherman
Try your Go skills against an Artificial Brain. Pay attention, the first who captures something is the winner.
There are several types of players you can choose from:
- 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.
|