Search found 1 match
- Fri Jun 03, 2022 11:16 am
- Forum: Ataxx
- Topic: UCT / MCTS & transposition table
- Replies: 4
- Views: 2355
Re: UCT / MCTS & transposition table
Hi, Has anyone ever tried adding a transposition table to an UCT/MCTS implementation? I tried without much success. It works, but it plays worse than the non-tt version. What I do is: for each position I have a node. This node stores pointers to children (of course as it is a tree) and to all the p...