Dev Builds » 20130803-1418

Use this dev build

NCM plays each Stockfish dev build 20,000 times against Stockfish 14. This yields an approximate Elo difference and establishes confidence in the strength of the dev builds.

Summary

Host Duration Avg Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo

Test Detail

ID Host Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo CLI PGN

Commit

Commit ID f7096ea7cedeb81d9799e4440a670736825c6a7e
Author Dan Schmidt
Date 2013-08-03 14:18:28 UTC
Refactor do_castle() Not a real functional change, but bench changed due to different piecelist reordering. To verify it a temporary my canonicalize_rooks function was written as follows. It just ensures that the rook on the "smaller" square is listed first. void Position::canonicalize_rooks(Color c) { if (pieceCount[c][ROOK] == 2) { Square s0 = pieceList[c][ROOK][0]; Square s1 = pieceList[c][ROOK][1]; if (s0 > s1) { pieceList[c][ROOK][0] = s1; pieceList[c][ROOK][1] = s0; index[s0] = 1; index[s1] = 0; } } } With this both bench and the test on Chess960 positions ./stockfish bench 128 1 8 Chess960.epd file > /dev/null Gives same result. bench: 4424151
Copyright 2011–2024 Next Chess Move LLC