Skip to content

Commit 4aba82c

Browse files
Update src/search.cpp
Co-authored-by: 87 <dev@87flowers.com>
1 parent c911b1b commit 4aba82c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Value Worker::search(Position& pos, Stack* ss, Value alpha, Value beta, Depth de
254254
break;
255255
}
256256
}
257-
auto see_threshold = quiet ? -67 * depth : -32 * depth;
257+
Value see_threshold = quiet ? -67 * depth : -32 * depth;
258258
// SEE PVS Pruning
259259
if (depth <= 10 && !ROOT_NODE && !SEE::see(pos, m, see_threshold)) {
260260
continue;

0 commit comments

Comments
 (0)