This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generic UCT implementation | |
Actions are represented by integers in [0,<num_actions>). | |
An action sequence must terminate within <seq_length> actions. | |
""" | |
__author__ = "Jack Goffinet" | |
__date__ = "December 2016 - February 2017" |