Small cleanups 13

No functional change
This commit is contained in:
Stéphane Nicolet
2020-11-12 14:05:28 +01:00
parent f9595828eb
commit 027626db1e
7 changed files with 13 additions and 14 deletions

View File

@@ -1058,7 +1058,7 @@ moves_loop: // When in check, search starts from here
&& captureHistory[movedPiece][to_sq(move)][type_of(pos.piece_on(to_sq(move)))] < 0)
continue;
// See based pruning
// SEE based pruning
if (!pos.see_ge(move, Value(-221) * depth)) // (~25 Elo)
continue;
}