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


Python Board.possible_killing_moves方法代码示例

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


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

示例1: test_en_passant_killing_moves

# 需要导入模块: from cython.importer import Board [as 别名]
# 或者: from cython.importer.Board import possible_killing_moves [as 别名]
 def test_en_passant_killing_moves(self):
     board = Board(False)
     board.load_fen("8/8/8/8/2pP4/8/7P/8 b kQkq d3 0 1")
     expected_moves_white = set()
     expected_moves_black = set([
         ((2, 3), (3, 2)),
     ])
     self.assertEqual(tuples(board.possible_killing_moves(WHITE)),
                      expected_moves_white)
     self.assertEqual(tuples(board.possible_killing_moves(BLACK)),
                      expected_moves_black)
开发者ID:GRUPO-ES2-GJLRT,项目名称:XADREZ_ES2,代码行数:13,代码来源:test_board.py

示例2: test_capture_killing_moves

# 需要导入模块: from cython.importer import Board [as 别名]
# 或者: from cython.importer.Board import possible_killing_moves [as 别名]
 def test_capture_killing_moves(self):
     board = Board(False)
     board.load_fen("8/8/8/8/8/2p5/3P3P/8 w kQkq - 0 1")
     expected_moves_white = set([
         ((3, 1), (2, 2)),
     ])
     expected_moves_black = set([
         ((2, 2), (3, 1)),
     ])
     self.assertEqual(tuples(board.possible_killing_moves(WHITE)),
                      expected_moves_white)
     self.assertEqual(tuples(board.possible_killing_moves(BLACK)),
                      expected_moves_black)
开发者ID:GRUPO-ES2-GJLRT,项目名称:XADREZ_ES2,代码行数:15,代码来源:test_board.py


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