当前位置: 首页>>代码示例>>Python>>正文


Python Grid.map[1][0]方法代码示例

本文整理汇总了Python中Grid.Grid.map[1][0]方法的典型用法代码示例。如果您正苦于以下问题:Python Grid.map[1][0]方法的具体用法?Python Grid.map[1][0]怎么用?Python Grid.map[1][0]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Grid.Grid的用法示例。


在下文中一共展示了Grid.map[1][0]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: int

# 需要导入模块: from Grid import Grid [as 别名]
# 或者: from Grid.Grid import map[1][0] [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)



开发者ID:ss4936,项目名称:2048,代码行数:29,代码来源:PlayerAI.py


注:本文中的Grid.Grid.map[1][0]方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。