Threat in null move
Posted: 31 May 2006, 10:56
In the null move, when we find a near value to a Mate, we extend because there is a threat.
Can somebody indicate me a position where when being analyzed you see this?
I have not been able to him to never see in a position.
I have used a matekiller for the ordination and that I find that it works me.
- Code: Select all
if (value >= beta) {
if (value > MATE-256)
value = MATE-256; // don't return unproven mates
return value;
}
if (value < -MATE + 256) {
threat = TRUE;
ext++;
}
Can somebody indicate me a position where when being analyzed you see this?
I have not been able to him to never see in a position.
I have used a matekiller for the ordination and that I find that it works me.