Uri Blass wrote:
2 null moves in a row cause repetition of a previous position and it seems not logical to analyze position that you already visited again.
Actually this isn't detected as a repetition draw in my code, the first repetition must be 4 moves back. Otherwise you are right that it would not make much sense to do if beta<0.
In principle even a single nullmove could trigger a draw score, because if my opponent believes his best choice is not to make any moves, then how is he ever going to mate me?
It also seems to me that you do effectively search two nullmoves in a row, compare e.g. the lines:
A) null Ng1f3 null Nf3g1 and
B) null null
Not much difference except the remaining depth.
Now since the object here is to see if the first nullmove is a FH or a FL, if A works then so should B. If you don't want to search B for principle reasons then you should try and avoid searching A too, imho.
Of course I've always used nullmove this way, so perhaps it works better because everything else has been developed around it, if you know what I mean.
The engine is becomming so complex it hard to figure out why it actually works, but whatever the reason it seems slightly better (10 Elo?) I'd say, at least in my engine.
-S.