if my NULL move search looks like this, (where null_red = 2)
Code: Select all
null_score = -search (-beta, -beta+1, depth-null_red-1, FALSE);
Code: Select all
score = -search (-beta, -alpha, depth-1+extensions, TRUE);
I was trying -search (-alpha-1, -alpha, depth-2, TRUE), but that seems to make it think for the wrong side. Thanks. [/code]