mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Make razor_margin[4] ONE_PLY value independent
No functional change.
This commit is contained in:
parent
7ae3c05795
commit
b77bae0529
1 changed files with 1 additions and 1 deletions
|
@ -729,7 +729,7 @@ namespace {
|
|||
&& eval + razor_margin[depth / ONE_PLY] <= alpha)
|
||||
{
|
||||
if ( depth <= ONE_PLY
|
||||
&& eval + razor_margin[3 * ONE_PLY] <= alpha)
|
||||
&& eval + razor_margin[3] <= alpha)
|
||||
return qsearch<NonPV, false>(pos, ss, alpha, beta, DEPTH_ZERO);
|
||||
|
||||
Value ralpha = alpha - razor_margin[depth / ONE_PLY];
|
||||
|
|
Loading…
Add table
Reference in a new issue