Dev Builds » 20140214-0943

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 b3470d7ab1d8cfe0bacffc42fc9b30347940b5f4
Author Marco Costalba
Date 2014-02-14 09:43:37 UTC
Fix magic boosters conversion Fix small overflow error while converting magic boosters from right rotate to left rotate, in particular booster 38 was converted to 4122 instead of the corrcet value 26. Formula used was: s1 = original & 63, s2 = (original >> 6) & 63; new = (64 - s1) | ((64 - s2) << 6); Instead of: s1 = original & 63, s2 = (original >> 6) & 63; new = ((64 - s1) & 63) | (((64 - s2) & 63) << 6); This has no impact in number of cycles needed, but just in the resultig number that yields to a rotate amount bigger than 63. Spotted by Ehsan Rashid. No functional change.
Copyright 2011–2024 Next Chess Move LLC