mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 08:13:08 +00:00
Revert VLTC regression from #5634
https://tests.stockfishchess.org/tests/view/671bf61b86d5ee47d953cf23 And thanks to @xu-shawn for suggesting running a VLTC regress test since depth modifications affect scaling. Also, the LTC was showing a slight regress after 680+k games ~= -0.34 , for reference: https://tests.stockfishchess.org/tests/view/67042b1f86d5ee47d953be7c closes https://github.com/official-stockfish/Stockfish/pull/5663 Bench: 1307308
This commit is contained in:
parent
ecf5646f6e
commit
54cf226604
1 changed files with 1 additions and 1 deletions
|
@ -850,7 +850,7 @@ Value Search::Worker::search(
|
|||
// For cutNodes, if depth is high enough, decrease depth by 2 if there is no ttMove,
|
||||
// or by 1 if there is a ttMove with an upper bound.
|
||||
if (cutNode && depth >= 7 && (!ttData.move || ttData.bound == BOUND_UPPER))
|
||||
depth -= 2;
|
||||
depth -= 1 + !ttData.move;
|
||||
|
||||
// Step 11. ProbCut (~10 Elo)
|
||||
// If we have a good enough capture (or queen promotion) and a reduced search
|
||||
|
|
Loading…
Add table
Reference in a new issue