Dev Builds » 20260519-1641

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 94984fe5cbe198559a54b6f5ebfb2c737f621f42
Author FauziAkram
Date 2026-05-19 16:41:36 UTC
Simplify Mated Conditions in Iterative Deepening Follow-up to #6785 After completing an iteration, the engine verifies if a "mate in x" condition is met to stop searching. Currently, it checks is_mate() and is_mated() independently using two separate bulky logic branches. However, VALUE_MATE equals 32000, so both a mate (e.g., 31998) and a mated score (e.g., -31998) satisfy VALUE_MATE - std::abs(score) == 2. By utilizing is_mate_or_mated() and applying std::abs(), we mathematically combine these checks into a single concise expression. Can someone please help run a matetrack with a --mate 100 limit for this? closes https://github.com/official-stockfish/Stockfish/pull/6829 No functional change
Copyright 2011–2026 Next Chess Move LLC