mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 01:03:09 +00:00
Disable again null move at depth == OnePly
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
b088f0aefd
commit
129cde008c
1 changed files with 1 additions and 1 deletions
|
@ -1282,7 +1282,7 @@ namespace {
|
||||||
bool isCheck = pos.is_check();
|
bool isCheck = pos.is_check();
|
||||||
|
|
||||||
bool useNullMove = ( allowNullmove
|
bool useNullMove = ( allowNullmove
|
||||||
//&& depth > OnePly
|
&& depth > OnePly
|
||||||
&& !isCheck
|
&& !isCheck
|
||||||
&& !value_is_mate(beta)
|
&& !value_is_mate(beta)
|
||||||
&& ok_to_do_nullmove(pos)
|
&& ok_to_do_nullmove(pos)
|
||||||
|
|
Loading…
Add table
Reference in a new issue