Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. rolloutTree t@(Tree state action noVisits score children) gen = if ((outcome state) == Ongoing)
  2.                                                                 then (rolloutTree (children !! (mod (fst (next gen)) (length children))) (snd (next gen))) : t : []
  3.                                                                 else (t : [], (outcome state), gen)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement