mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-22 12:47:08 +00:00
Revert f8aa78e0a7
The two links given in the PR description for #6826 are not for the same code changes. The code that was eventually committed passed LTC non-reg, but not STC non-reg. However, it was a meaningful code change and so would have needed gainer bounds. See https://tests.stockfishchess.org/tests/view/69fa69c83a3c3e525bb2b645 and https://tests.stockfishchess.org/tests/view/6a00a2549392f0c317214085. closes https://github.com/official-stockfish/Stockfish/pull/6831 Bench: 2259945
This commit is contained in:
committed by
Joost VandeVondele
parent
90890c5f1f
commit
78d8f09bc8
+1
-1
@@ -1274,7 +1274,7 @@ moves_loop: // When in check, search starts here
|
|||||||
|
|
||||||
// For first picked move (ttMove) reduce reduction
|
// For first picked move (ttMove) reduce reduction
|
||||||
else if (move == ttData.move)
|
else if (move == ttData.move)
|
||||||
r -= 2016 + 150 * cutNode;
|
r = std::max(-10, r - 2016 + 150 * cutNode);
|
||||||
|
|
||||||
if (capture)
|
if (capture)
|
||||||
ss->statScore = 809 * int(PieceValue[pos.captured_piece()]) / 128
|
ss->statScore = 809 * int(PieceValue[pos.captured_piece()]) / 128
|
||||||
|
|||||||
Reference in New Issue
Block a user