Difference between revisions of "Evaluation Hash Table"

From Chessprogramming wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
  
 
=Forum Posts=
 
=Forum Posts=
 +
==1998 ...==
 
* [https://www.stmintz.com/ccc/index.php?id=14226 Hash tables and data-cache, some programmer stuff...] by [[Ed Schroder|Ed Schröder]], [[CCC]], January 17, 1998
 
* [https://www.stmintz.com/ccc/index.php?id=14226 Hash tables and data-cache, some programmer stuff...] by [[Ed Schroder|Ed Schröder]], [[CCC]], January 17, 1998
 +
==2000 ...==
 +
* [https://www.stmintz.com/ccc/index.php?id=151211 Pawn and Eval hash tables] by [[Peter Fendrich]], [[CCC]], January 21, 2001
 
* [http://www.open-aurec.com/wbforum/viewtopic.php?f=4&t=4620&p=23957 Evaluation cache] by [[Klaus Friedel]], [[Computer Chess Forums|Winboard Forum]], April 03, 2006 » [[Snitch]]
 
* [http://www.open-aurec.com/wbforum/viewtopic.php?f=4&t=4620&p=23957 Evaluation cache] by [[Klaus Friedel]], [[Computer Chess Forums|Winboard Forum]], April 03, 2006 » [[Snitch]]
 +
* [http://www.hiarcs.net/forums/viewtopic.php?p=2921 What is the Difference between Mainhash, Evalhash, Pawnhash?] by Thomas Wallendik, [[Computer Chess Forums|Hiarcs Forum]], October 13, 2007
 +
==2010 ...==
 
* [http://www.talkchess.com/forum/viewtopic.php?t=35496 Stockfish 1.8 - eval cache] by [[Ralph Stoesser]], [[CCC]], July 18, 2010 » [[Stockfish]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=35496 Stockfish 1.8 - eval cache] by [[Ralph Stoesser]], [[CCC]], July 18, 2010 » [[Stockfish]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=58758 crafty eval cache] by [[Alvaro Cardoso]], [[CCC]], January 01, 2016 » [[Crafty]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=58758 crafty eval cache] by [[Alvaro Cardoso]], [[CCC]], January 01, 2016 » [[Crafty]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=59566 hash eval, hash pawn or twice ?] by [[Daniel Anulliero]], March 19, 2016 » [[Pawn Hash Table]]
 
* [http://www.talkchess.com/forum/viewtopic.php?t=59566 hash eval, hash pawn or twice ?] by [[Daniel Anulliero]], March 19, 2016 » [[Pawn Hash Table]]
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=70938 Using evaluation hash score as current bestscore (initial guess)] by [[Vivien Clauzon]], [[CCC]], June 06, 2019
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=70938 Using evaluation hash score as current bestscore (initial guess)] by [[Vivien Clauzon]], [[CCC]], June 06, 2019
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=72030 Eval hashtable replacement scheme] by [[Pawel Koziol]], [[CCC]], October 08, 2019
  
 
'''[[Evaluation|Up one level]]'''
 
'''[[Evaluation|Up one level]]'''

Latest revision as of 21:03, 8 October 2019

Home * Evaluation * Evaluation Hash Table

An Evaluation Hash Table may be used in a similar fashion as the transposition table, that is using Zobrist- or BCH-hashing, to cache various computational expensive positional evaluation scores and flags. Despite the fact that the transposition table entries may contain evaluation scores as well, a tighter, dedicated evaluation hash table with its own replacement policy may gain a considerable amount of additional hits.

See also

Forum Posts

1998 ...

2000 ...

2010 ...

Up one level