(self, config)
| 8 | |
| 9 | class MCTS(object): |
| 10 | def __init__(self, config): |
| 11 | self.config = config |
| 12 | |
| 13 | def search(self, roots, model, hidden_state_roots, reward_hidden_roots): |
| 14 | """Do MCTS for the roots (a batch of root nodes in parallel). Parallel in model inference |
nothing calls this directly
no outgoing calls
no test coverage detected