Dev Builds » 20260909-1650

You are viewing an old NCM Stockfish dev build test. You may find the most recent dev build tests using Stockfish 15 as the baseline here.

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 55cf867cf5f37471c159ed26d3164a6a1f01c828
Author Carlos Esparza
Date 2026-09-09 16:50:03 UTC
Make dbg_* methods return the inspected variable This is intended as a small QoL improvement for devs: The idea is that if you want to investigate the branching in ```cpp if (long_complicated_condition) ``` you can just use ```cpp if (dbg_hit_on(long_complicated_condition)) ``` instead of having to do ```cpp dbg_hit_on(long_complicated_condition); if (long_complicated_condition) ``` or something even more complicated if evaluating the condition has side effects. Same idea for `dbg_mean_of`, `dbg_stdev_of` and `dbg_extremes_of`, closes https://github.com/official-stockfish/Stockfish/pull/7121 No functional change
Copyright 2011–2026 Next Chess Move LLC