Skip to content

Commit 0db4a1b

Browse files
kevlu8vondele
authored andcommitted
Remove completedDepth condition for SE
Just removing the term Passed STC: LLR: 3.27 (-2.94,2.94) <-1.75,0.25> Total: 179840 W: 47211 L: 47126 D: 85503 Ptnml(0-2): 567, 17929, 52879, 17942, 603 https://tests.stockfishchess.org/tests/view/688bdd88502b34dd5e7111ea Passed LTC: LLR: 3.26 (-2.94,2.94) <-1.75,0.25> Total: 150708 W: 38738 L: 38637 D: 73333 Ptnml(0-2): 79, 12922, 49262, 13001, 90 https://tests.stockfishchess.org/tests/view/688ce857f17748b4d23c8026 Passed VLTC: LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 288312 W: 74104 L: 74152 D: 140056 Ptnml(0-2): 44, 26732, 90657, 26674, 49 https://tests.stockfishchess.org/tests/view/688ec4f57d68fe4f7f130ee3 closes official-stockfish#6221 functional at higher depths Bench: 3002300
1 parent d864148 commit 0db4a1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Justin Blanchard (UncombedCoconut)
133133
Kelly Wilson
134134
Ken Takusagawa
135135
Kenneth Lee (kennethlee33)
136+
kevlu8
136137
Kian E (KJE-98)
137138
kinderchocolate
138139
Kiran Panditrao (Krgp)

src/search.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,9 +1112,8 @@ Value Search::Worker::search(
11121112
// (*Scaler) Generally, higher singularBeta (i.e closer to ttValue)
11131113
// and lower extension margins scale well.
11141114

1115-
if (!rootNode && move == ttData.move && !excludedMove
1116-
&& depth >= 6 - (completedDepth > 26) + ss->ttPv && is_valid(ttData.value)
1117-
&& !is_decisive(ttData.value) && (ttData.bound & BOUND_LOWER)
1115+
if (!rootNode && move == ttData.move && !excludedMove && depth >= 6 + ss->ttPv
1116+
&& is_valid(ttData.value) && !is_decisive(ttData.value) && (ttData.bound & BOUND_LOWER)
11181117
&& ttData.depth >= depth - 3)
11191118
{
11201119
Value singularBeta = ttData.value - (56 + 79 * (ss->ttPv && !PvNode)) * depth / 58;

0 commit comments

Comments
 (0)