mcts icon indicating copy to clipboard operation
mcts copied to clipboard

A simple Monte Carlo Tree Search library

Results 2 mcts issues
Sort by recently updated
recently updated
newest added

In your readme you state that: getWinner() returns the winner or undefined if there is no winner But in the example below you use null. What should be used?

Major improvements: - Converted from Flow to modern TypeScript 5.3 with super strict linting - Removed inefficient deep cloning (_.cloneDeep) in favor of mutable game state with apply/undo moves -...