本文整理汇总了Python中position.Position.get_pseudo_legal_moves方法的典型用法代码示例。如果您正苦于以下问题:Python Position.get_pseudo_legal_moves方法的具体用法?Python Position.get_pseudo_legal_moves怎么用?Python Position.get_pseudo_legal_moves使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类position.Position
的用法示例。
在下文中一共展示了Position.get_pseudo_legal_moves方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_single_step_pawn_move
# 需要导入模块: from position import Position [as 别名]
# 或者: from position.Position import get_pseudo_legal_moves [as 别名]
def test_single_step_pawn_move(self):
"""Tests that single step pawn moves are possible."""
pos = Position()
a3 = Move.from_uci('a2a3')
self.assertTrue(a3 in pos.get_pseudo_legal_moves())
self.assertTrue(a3 in pos.get_legal_moves())
pos.get_move_info(a3)
pos.make_move(a3)
示例2: test_pawn_move_generation
# 需要导入模块: from position import Position [as 别名]
# 或者: from position.Position import get_pseudo_legal_moves [as 别名]
def test_pawn_move_generation(self):
"""Tests pawn move generation in a specific position from a
Kasparov vs. Deep Blue game."""
pos = Position("8/2R1P3/8/2pp4/2k1r3/P7/8/1K6 w - - 1 55")
list(pos.get_pseudo_legal_moves())