|
|
|
|
|
by opportune
3283 days ago
|
|
Monte Carlo Tree Search isn't quite suitable for chess, because it's really only a substitute for games like Go which don't have suitable evaluation functions. If you have the ability to write a good evaluation function, as in chess, you don't need to do the "simulation" phase of MCTS. As a result, you basically just use the "tree" phase, but in conjunction with adversarial search heuristics. |
|