本文整理汇总了Python中Grid.Grid.getAvailableMoves方法的典型用法代码示例。如果您正苦于以下问题:Python Grid.getAvailableMoves方法的具体用法?Python Grid.getAvailableMoves怎么用?Python Grid.getAvailableMoves使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Grid.Grid
的用法示例。
在下文中一共展示了Grid.getAvailableMoves方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: int
# 需要导入模块: from Grid import Grid [as 别名]
# 或者: from Grid.Grid import getAvailableMoves [as 别名]
## highest_value = Minimax.calculate(c, maxdepth, False)
## if m == 0 or m == 2:
## highest_value += 10000
if selection == 2:
maxdepth = 4
highest_value = Minimaxab.calculate(c, maxdepth,-np.inf,np.inf, False)
if m == 0 or m == 2:
highest_value += 10000
print highest_value,c,m
if highest_value > maxpath:
direction = m
maxpath = highest_value
## return int(raw_input())
return direction
if __name__ == '__main__':
player = PlayerAI()
g=Grid()
g.map[0][0] = 2
g.map[1][0] = 2
g.map[3][0] = 4
while True:
for i in g.map:
print i
print g.getAvailableMoves()
v = player.getMove(g)
g.move(v)