Dev Builds » 20120916-1214

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 22a5f91aa79e065387e780bbffc1bbadfd84e8d6
Author Marco Costalba
Date 2012-09-16 12:14:55 UTC
Fix crash under Chess 960 We have a crash with this position: rkqbnnbr/pppppppp/8/8/8/8/PPPPPPPP/RKQBNNBR w HAha - What happens is that even if we are castling QUEEN_SIDE, in this case we have kfrom (B8) < kto (C8) so the loop that checks for attackers runs forever leading to a crash. The fix is to check for (kto > kfrom) instead of Side == KING_SIDE, but this is slower in the normal case of ortodhox chess, so rewrite generate_castle() to handle the chess960 case as a template parameter and allow the compiler to optimize out the comparison in case of normal chess. Reported by Ray Banks.
Copyright 2011–2024 Next Chess Move LLC