X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.cpp;h=8baf32a4cfa6e9c814c1c76684713206dbaab475;hp=06ea5e25d2da257d57a1668e0ed3d2c10aa6384d;hb=c376ffce0f666d289a22639de29b5c409db6a9d2;hpb=d9c7cad6302ddeff9f8a32a3fe66359c556a868e diff --git a/src/movepick.cpp b/src/movepick.cpp index 06ea5e25..8baf32a4 100644 --- a/src/movepick.cpp +++ b/src/movepick.cpp @@ -140,15 +140,6 @@ MovePicker::MovePicker(const Position& p, Move ttm, const HistoryStats& h, Piece } -/// stage_moves() returns a pointer to the beginning of moves array. It -/// is used to access already tried quiet moves when updating history. - -const ExtMove* MovePicker::stage_moves() const { - assert(stage == KILLERS_S1 || stage == QUIETS_1_S1 || stage == QUIETS_2_S1); - return stage == KILLERS_S1 ? killers : moves; -} - - /// score() assign a numerical move ordering score to each move in a move list. /// The moves with highest scores will be picked first. template<>