Guest User

Untitled

a guest
Oct 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. current_board_state = move_states[move]
  2. if first_unvisited_node:
  3. rollout_path.append((current_board_state, current_side))
  4. if current_board_state not in state_samples:
  5. first_unvisited_node = False
  6. state_values[current_board_state] = value_func(current_board_state)
Add Comment
Please, Sign In to add comment