Navigation Menu

Skip to content

Commit

Permalink
Fix spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aujicini authored and thomasahle committed Jan 2, 2021
1 parent c1a6b82 commit 4af2b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sunfish.py
Expand Up @@ -288,7 +288,7 @@ def moves():
if depth > 0 and not root and any(c in pos.board for c in 'RBNQ'):
yield None, -self.bound(pos.nullmove(), 1-gamma, depth-3, root=False)
# For QSearch we have a different kind of null-move, namely we can just stop
# and not capture anythign else.
# and not capture anything else.
if depth == 0:
yield None, pos.score
# Then killer move. We search it twice, but the tp will fix things for us.
Expand Down

0 comments on commit 4af2b5d

Please sign in to comment.