mcts
mcts copied to clipboard
Generic, parallel Monte Carlo tree search library
First of all, thanks a lot for this library. It's super well thought and designed and works great. I'm using this in a real-time context in a deterministic full information...
Very minor but this took seconds so... Slightly reduces the number of allocations in this very non-critical function ^^
I have noticed that a custom trait, `TranspositionHash`, is used for the transposition table. Is there a reason why the standard `Hash` trait cannot be used here?
Hi, I was just curious how move evaluations are meant to be used? In the counting game example, the evaluation returns a vector of `()` for each move, and just...
Hi, When using `playout_parallel_for`, is there a way to diagnose the final number of playouts that were done between when it was started and when the timeout was reached? My...
This is my very first pull request. I noticed that the example in /examples/counting_game.rs would panic when run so I added back the cycle behaviour overload for MyMCTS. I also...