Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. def select_leaf(self):
  2. current = self
  3. while current.is_expanded:
  4. best_move = current.best_child()
  5. current = current.maybe_add_child(best_move)
  6. return current
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement