Page 1 of 1

Nullmove R=2/3 definition question

PostPosted: 05 May 2006, 14:02
by Vladimir Medvedev
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?

Re: Nullmove R=2/3 definition question

PostPosted: 05 May 2006, 14:35
by smcracraft
Vladimir Medvedev wrote: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?


It is the first of the above, specifically

...
... search(depth-1-R)
...

Stuart