mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-17 07:36:23 +08:00
Use compiler name lookup to simplify code
We don't need different names between a function and a template. Compiler will know when use one or the other. This let use restore original count_1s_xx() names instead of sw_count_1s_xxx so to simplify a bit the code. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -2091,7 +2091,7 @@ bool Position::is_ok(int* failedStep) const {
|
||||
|
||||
// Is there more than 2 checkers?
|
||||
if (failedStep) (*failedStep)++;
|
||||
if (debugCheckerCount && count_1s<false>(st->checkersBB) > 2)
|
||||
if (debugCheckerCount && count_1s(st->checkersBB) > 2)
|
||||
return false;
|
||||
|
||||
// Bitboards OK?
|
||||
@@ -2166,7 +2166,7 @@ bool Position::is_ok(int* failedStep) const {
|
||||
if (debugPieceCounts)
|
||||
for (Color c = WHITE; c <= BLACK; c++)
|
||||
for (PieceType pt = PAWN; pt <= KING; pt++)
|
||||
if (pieceCount[c][pt] != count_1s<false>(pieces_of_color_and_type(c, pt)))
|
||||
if (pieceCount[c][pt] != count_1s(pieces_of_color_and_type(c, pt)))
|
||||
return false;
|
||||
|
||||
if (failedStep) (*failedStep)++;
|
||||
|
||||
Reference in New Issue
Block a user