Tianshou/AlphaGo/test.py
2017-12-05 23:42:18 +08:00

12 lines
153 B
Python

from game import Game
from engine import GTPEngine
import utils
g = Game()
e = GTPEngine(game_obj = g)
res = e.run_cmd('8 genmove BLACK')
print(res)