Hey Sune,
Wow, this thread grew exponentially overnight.
Sune Fischer wrote:Tom:
"The hash table returned an exact hit because the search had managed to create the same position by transposition except that the pawn took two moves to reach the critical mating square, when an en'passant was not valid. "
This would seem like the same problem, I'm guessing a hash bug.
It's possible of course, but I don't believe so (I've *never* had a bug in my hash table

:D). The position in question *
was* a mate if the opponent couldn't capture the checking pawn en'passant (the pawn actually delivered the mate). The search managed to create two identical positions but in one the en'passant capture was illegal and hence a real mate. In the 2nd the mate could be prevented by the pawn capture. The mate position was stored in the hash tree first and later retrieved incorrectly for the non-mate position because the hash keys, without the en'passant information, were the same.
Regardless, the problem was eliminated when I added en'passant information to the key.
"Tom:
So you see - when the uncastled king wanders to same location and same resulting position (and so same hashkey) the evaluation is going to be different depending on whether it was a castled into this position or transposed into this position. "
Um, actually I never said this, nor implied it. If two positions are *
identical* (ignoring 3-fold repetitions and such, since they are legitimately path dependent) then the hashkey and the evaluations should be identical. A number of people fold in a path-dependent "loss-of-castling-rights" penalty or bonus, but it's probably not the right thing to do. Real king safety is (IMHO) better.
You should hash the castle keys whenever the king loses its castle rights permanently, whether this is by doing the castle or moving the rook or king doesn't matter.
Yes, exactly--this is the right way to do it.
The same position should not have two corresponding keys (inefficient) and more importantly two positions must never have the same key (huge bug).
I would consider the same position with two different hashkeys a bug as well.
Unfortunately this is a bit ugly since you have to check for it at every rook and king move. At least I have not found a better way

Nor I.
regards,
--tom