Nullmove R=2/3 definition question
Posted: 05 May 2006, 14:02
When you write R=2, what do you mean?
...
MakeNullMove();
e = Search( ..., depth - 1 - 2 );
UnmakeNullMove();
...
or
...
MakeNullMove();
e = Search( ..., depth - 2 );
UnmakeNullMove();
...
What is the "standard" definition?
...
MakeNullMove();
e = Search( ..., depth - 1 - 2 );
UnmakeNullMove();
...
or
...
MakeNullMove();
e = Search( ..., depth - 2 );
UnmakeNullMove();
...
What is the "standard" definition?