]> git.sesse.net Git - stockfish/history - src/tt.h
Ensure ttValue != VALUE_NONE in singular extension search
[stockfish] / src / tt.h
2014-05-24 Marco CostalbaTidy up tt.h
2014-03-23 Marco CostalbaFix an incorrect 'friend' declaration
2014-03-23 mstemberaRefresh TT entries generation automatically on probe
2014-03-03 mstemberaSome minor cleanup stuff
2014-02-09 Marco CostalbaAssorted tweaks from DON
2014-01-18 Marco CostalbaIncrease max hash size to 16GB
2014-01-02 Marco CostalbaUpdate copyright year
2013-12-02 Richard LloydBig assorted spelling fixes
2013-11-09 Lucas BraeschFutility pruning simplification
2013-11-07 Marco CostalbaRevert "Retire eval margin and gains"
2013-11-07 Lucas BraeschRetire eval margin and gains
2013-10-05 Lucas BraeschUse prefix operators wherever possible
2013-07-24 homoSapiensSapiensUse #ifndef instead of #if !defined
2013-06-29 Marco CostalbaUse calloc() in TranspositionTable::set_size()
2013-06-14 Marco CostalbaFix description of TT entry
2013-05-01 Marco CostalbaRe-add "Cache line aligned TT"
2013-04-30 Marco CostalbaRevert "Cache line aligned TT"
2013-04-26 Marco CostalbaCache line aligned TT
2013-02-20 Marco CostalbaMerge Gary's bishop_pin patch
2013-02-19 Marco CostalbaUpdate copyright year
2013-02-15 Marco CostalbaMerge Gary's king safety tweak
2013-02-11 Gary LinscottMerge branch 'master' into simplify_eval
2013-02-11 Gary LinscottBishop pins only
2013-02-09 Marco CostalbaFurther simplify first_entry()
2013-02-09 Marco CostalbaMicroptimize first_entry() for 32bits
2013-02-09 Marco CostalbaRetire TTCluster and simplify TT
2013-02-06 junderyRename posKey stored in the transposition table
2013-01-06 Marco CostalbaHave fun with union in book.cpp
2012-12-27 Marco CostalbaRevert evaluation cache
2012-12-15 Marco CostalbaRevert store of distinct upper and lower bounds
2012-12-10 Marco CostalbaMerge branch 'eval_cache'
2012-12-09 Marco CostalbaEnsure valueLower <= valueUpper
2012-12-09 Marco CostalbaStore distinct upper and lower bound scores
2012-12-04 Marco CostalbaMerge branch 'eval_cache'
2012-12-01 Marco CostalbaDon't save eval score in TT
2012-03-31 Marco CostalbaUse std::vector to implement HashTable
2012-03-31 Marco CostalbaRename Materials and Pawns hash stuff
2012-03-26 Marco CostalbaMerge pull request #9 from glinscott/master
2012-03-26 Marco CostalbaMove ThreadsManager::exit() to d'tor
2012-03-25 Marco CostalbaRefactor Thread class
2012-01-27 Marco CostalbaRename ValueType to Bound
2011-12-30 Marco CostalbaUpdate copyright year to 2012
2011-12-04 Marco CostalbaRetire move.h
2011-04-27 Marco CostalbaUse probe() as name for looking up into an hash table
2011-04-24 Marco CostalbaDon't allocate MAX_THREADS hash tables if not necessary
2011-04-24 Marco CostalbaMove pawn and material tables under Thread class
2011-04-16 Marco CostalbaCode style in tt.cpp
2011-04-10 Marco CostalbaAssorted code style and comments in pawns.cpp and pawns.h
2011-02-23 Marco CostalbaMove all enum types definitions to types.h
2011-01-18 Marco CostalbaFix some warnings under icc
2011-01-13 Marco CostalbaFix an hang on 32 bits while allocating big TT table
2011-01-09 Joona KiiskiTTEntry simplification
2011-01-07 Marco CostalbaRetire move.cpp
2011-01-07 Marco CostalbaUse 16 bits to store a move instead of 17
2011-01-07 Marco CostalbaUse a 32 bit bitwise 'and' in SimpleHash lookup
2011-01-07 Marco CostalbaIntroduce SimpleHash class
2011-01-03 Marco CostalbaWorkaround broken function-style cast support in HP-UX
2010-11-28 Marco CostalbaFix 'generation' type to uint8_t
2010-11-01 Marco CostalbaPrefer int to uint8_t when possible
2010-10-30 Marco CostalbaIntroduce and use TranspositionTable::refresh()
2010-10-16 Marco CostalbaFixed some warnings when using -Weffc++ gcc option
2010-08-24 Marco CostalbaRename ei.kingDanger in ei.margin
2010-07-22 Joona KiiskiValueType needs only 2 bits to be stored in TT
2010-07-22 Joona KiiskiUpdate TT documentation
2010-07-21 Marco CostalbaMove insert_pv() and extract_pv() out of TT class
2010-07-11 Joona KiiskiRemove TranspositionTable::overwrites variable
2010-07-04 Joona KiiskiFix TT documentation
2010-06-29 Marco CostalbaRename TranspositionTable 'writes' in 'overwrites'
2010-06-26 Marco CostalbaRetire update_pv() and sp_update_pv()
2010-06-19 Marco CostalbaMove prefetch() out of TT
2010-06-05 Marco CostalbaAvoid a double copy when saving a TTEntry
2010-05-22 Marco CostalbaFix a warning on array of size 0 under Windows
2010-05-22 Joona KiiskiAlways save static value and kingDanger to TT
2010-05-22 Joona KiiskiDrop TTClusterSize from 5 to 4
2010-04-17 Marco CostalbaRevert saving of null search value in TT
2010-04-10 Marco CostalbaUse a flag in TT to track null search values
2010-03-20 Marco CostalbaUpdated copyright year to 2010
2010-02-01 Marco CostalbaIncrease TT size limit to 8 GB
2009-10-09 Marco CostalbaFix an off-by-one bug in extract_pv()
2009-10-06 Marco CostalbaSmall code reformat in TranspositionTable::extract_pv()
2009-08-14 Marco CostalbaReuse 5 slots instead of 4
2009-08-10 Marco CostalbaUse aligned prefetch address
2009-08-10 Marco CostalbaEnable prefetch also for gcc
2009-08-09 Marco CostalbaAdd TT prefetching support
2009-08-09 Marco CostalbaUse 32 bit key in TT
2009-08-06 Tord RomstadMoved the code for extracting the PV from the TT to...
2009-06-13 Marco CostalbaReduce SMP contention on TT
2009-05-07 Marco CostalbaUpdate copyright year
2009-05-03 Marco CostalbaChange TT interface to ask directly for a position key
2009-04-28 Marco CostalbaMerge Joona's razoring tweaks
2009-04-27 Marco CostalbaCode style cleanup in transposition table code
2009-03-31 Marco CostalbaRevert setting a flag when TT value equals static evalu...
2009-03-30 Marco CostalbaRemember when TT value equals static evaluation value
2009-03-30 Marco CostalbaDocument TTEntry and move layouts
2009-03-29 Marco CostalbaA move needs 17 bits not 19
2009-03-24 Marco CostalbaCache evaluation score in qsearch
2008-10-20 Marco CostalbaUpdate copyright info
2008-10-19 Marco CostalbaUpdate copyright info
2008-09-23 Marco CostalbaWarnings termination fest
2008-09-06 Marco CostalbaSplit transposition table lookup in a separate function
next