Difference between revisions of "Hash Move"

From Chessprogramming wiki
Jump to: navigation, search
Line 7: Line 7:
 
=See also=
 
=See also=
 
* [[Best Move]]
 
* [[Best Move]]
 +
* [[Internal Iterative Deepening]]
 
* [[Killer Move]]
 
* [[Killer Move]]
 
* [[Mate Killers]]
 
* [[Mate Killers]]

Revision as of 17:46, 23 May 2020

Home * Chess * Moves * Hash Move

The Hash Move is a Move Ordering related issue.

The Hash Move is a move probed from the transposition table, either a best move of a stored PV-node - a PV-move, or a good enough refutation move to cause a cutoff. This move should most importantly searched first [1] [2]. One may save the move generation at all, if the hash move actually fails high. To guard against rare TT key collisions, one may apply a legality test of the hash move [3].

See also

Collisions

Forum Posts

References

Up one Level