]> git.sesse.net Git - stockfish/history - src/movepick.cpp
Cleanup steps 12, 14
[stockfish] / src / movepick.cpp
2010-02-07 Marco CostalbaUse gain table to order non-captures
2010-02-05 Marco CostalbaDelay sorting of negative scored non-captures
2010-02-05 Marco CostalbaBe sure negative see evasions are at the bottom
2010-02-04 Marco CostalbaScore non-captures only by history
2010-01-29 Marco CostalbaAvoid search tree explosion in qsearch
2010-01-27 Marco CostalbaSimplify locking in sp_search and sp_search_pv
2010-01-19 Marco CostalbaOrder check moves used in qsearch
2010-01-03 Marco CostalbaRetire 'finished' from MovePicker
2009-11-09 Marco CostalbaDefine Score as an enum
2009-11-07 Marco CostalbaIntroduce PieceSquareTable[16][64]
2009-11-06 Marco CostalbaSmall code-style touches in movegen.cpp
2009-11-05 Marco CostalbaEnable PH_TT_MOVES during evasion generation
2009-11-05 Marco CostalbaRetire MovePicker::discovered_check_candidates()
2009-11-05 Marco CostalbaRewrite generate_pawn_moves() and simplify evasions
2009-11-05 Marco CostalbaGenerate pseudo-legal moves in generate_evasions()
2009-11-01 Marco CostalbaReorder evasions
2009-10-22 Marco CostalbaPick best moves one per cycle instead of sorting
2009-10-17 Marco CostalbaUse an homegrown insertion sort instead of std::sort()
2009-10-12 Marco CostalbaRevert "Use std::stable_sort() instead of std::sort()"
2009-10-10 Marco CostalbaUse std::stable_sort() instead of std::sort()
2009-08-31 Marco CostalbaMovePicker: rename number_of_moves() in number_of_evasi...
2009-08-31 Marco CostalbaUse pointers instead of array indices also for badCaptures
2009-08-30 Marco CostalbaSkip TT_MOVES phase when possible
2009-08-30 Marco CostalbaMovepicker: take move's loop out of switch statement
2009-08-30 Marco CostalbaRevert "null move reorder" series
2009-08-29 Marco CostalbaConvert handling of tt moves and killers to standard...
2009-08-29 Marco CostalbaTry null move before captures
2009-08-29 Marco CostalbaUse pointers instead of array indices in MovePicker
2009-08-27 Marco CostalbaChange the flow in wich moves are generated and picked
2009-08-26 Joona KiiskiUse special null move technique in low depth.
2009-08-26 Joona KiiskiUse nullMove only through MovePicker.
2009-08-26 Joona KiiskiAdd Null move support to MovePicker.
2009-08-26 Marco CostalbaClean killers handling in movepicker
2009-08-15 Marco CostalbaL1/L2 friendly PhaseTable[]
2009-07-26 Marco CostalbaFix a spurious extra space
2009-07-24 Marco CostalbaDelay costly SEE call during captures ordering in MoveP...
2009-07-12 Marco CostalbaIntroduce see_sign() and use it to shortcut full see()
2009-06-28 Marco CostalbaExplicitly use delta psqt values when possible
2009-06-20 Marco CostalbaMicro optimize and rename move_promotion()
2009-06-12 Marco CostalbaMovePicker doesn't need to know if called from a pv...
2009-06-02 Marco CostalbaConvert History table H in a local variable
2009-06-02 Marco CostalbaAvoid using EmptySearchStack global
2009-05-29 Marco CostalbaOrder bad captures by SEE value
2009-05-25 Marco CostalbaMerge hardware POPCNT detection and use
2009-05-25 Marco CostalbaSplit killer moves from non-captures
2009-05-16 Marco CostalbaBetter document how history works
2009-05-07 Marco CostalbaUpdate copyright year
2009-05-02 Marco CostalbaNicely simplify MovePicker::pick_move_from_list
2009-05-02 Marco CostalbaSort moves just after scoring
2009-04-26 Marco CostalbaGreatly speedup has_mate_threat()
2009-04-18 Marco CostalbaMovePicker: retire per square MVV/LVA ordering
2009-04-18 Marco CostalbaIn qsearch store the cut move in TT
2009-03-27 Marco CostalbaRemove some obsolete code in movepick.cpp
2009-03-24 Marco CostalbaCache evaluation score in qsearch
2009-03-22 Marco CostalbaLMR dynamic reduction
2009-03-02 Marco CostalbaRevert hidden checkers rework
2009-02-19 Marco CostalbaDo not pass discovery check candidates in Position...
2009-02-19 Marco CostalbaDo not pass pinned argument in Position::pl_move_is_legal()
2009-02-19 Marco CostalbaCleanup pinned and friends in movegen.cpp
2009-02-11 Marco Costalbagenerate_evasions() avoid to calculate pinned pieces
2009-01-25 Marco CostalbaMovePicker, remove a variable
2009-01-25 Marco CostalbaMovePicker::find_best_index() never returns -1
2009-01-07 Marco CostalbaBig trailing whitespace cleanup part 1
2008-12-06 Marco CostalbaRevert see() shortcut for LxH and equal captures
2008-12-06 Marco CostalbaMovePicker: avoid calling see() for LxH and equal captures
2008-11-26 Marco CostalbaRevert threat move ordering
2008-11-25 Marco CostalbaMovePicker: take advantage of threat move for ordering
2008-11-24 Marco CostalbaGenerate moves for powerful pieces first
2008-11-19 Marco CostalbaFix a silly bug that disabled second killer
2008-11-16 Marco CostalbaMovePicker: fix a nasty bug in EvalInfo optimization
2008-11-16 Marco CostalbaConvert killers to a vector
2008-11-16 Marco CostalbaDisable per-square MVV/LVA for now
2008-11-16 Marco CostalbaMovePicker: use EvalInfo to skip generating captures
2008-11-16 Marco CostalbaEnable per-square MVV/LVA
2008-11-16 Marco CostalbaMovePicker:find bad captures during scoring
2008-11-16 Marco CostalbaMovePicker: introduce per square MVV/LVA ordering
2008-11-02 Marco CostalbaRevert movepick optimizations before to release
2008-11-02 Marco CostalbaUse MVV/LVA in score_evasions()
2008-11-02 Marco CostalbaDelay SEE for scoring captures
2008-11-01 Marco CostalbaRevert "MovePicker::score_captures() order with SEE...
2008-11-01 Marco CostalbaMovePicker::score_captures() order with SEE when pv
2008-10-26 Marco CostalbaManual merge
2008-10-26 Marco CostalbaPrefer out of loop variables in MovePicker::score_captu...
2008-10-26 Marco CostalbaEffectively use MVV/LVA in MovePicker::score_captures()
2008-10-26 Marco CostalbaReintroduce piece/square tables to score non-captures
2008-10-26 Marco CostalbaPosition: fix a couple of Intel compiler warnings
2008-10-26 Marco CostalbaBetter naming of pseudo-legality and legality testing
2008-10-26 Marco CostalbaTry to cleanup movepick
2008-10-26 Marco CostalbaRestore original movepick modulo space inflation
2008-10-20 Marco CostalbaUpdate copyright info
2008-10-19 Marco CostalbaUpdate copyright info
2008-10-18 Marco Costalbamovegen: revert see ordering in score_captures()
2008-10-18 Marco CostalbaSpace inflate movegen.cpp
2008-10-18 Marco CostalbaMovepick: add and use find_best_index() helper
2008-10-18 Marco CostalbaTest with see
2008-10-18 Marco CostalbaUse MVV to score captures when see >=0
2008-10-18 Marco CostalbaMovePicker: use const reference instead of pointers
2008-10-18 Marco CostalbaSpace inflate movepick.cpp
2008-10-18 Marco CostalbaBetter comment previous patch
2008-10-18 Marco CostalbaAlways add psqt scoring
next