Nullmove R=2/3 definition question

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?