Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sunfish.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def bound(self, pos, gamma, depth, can_null=True):

# Let's not repeat positions. We don't chat
# - at the root (can_null=False) since it is in history, but not a draw.
# - at depth=0, since it would be expensive and break "futulity pruning".
# - at depth=0, since it would be expensive and break "futility pruning".
if can_null and depth > 0 and pos in self.history:
return 0

Expand Down
Loading