X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=6b5d89c093ff690e7fb41c60dfc7ad6774fe5cb2;hp=5084f1e06e06d6edab80ca13d8391b26849f6885;hb=0de92576100bba948cae854ebb9cd5a7a9502b43;hpb=662d1859bde420b2cc87891fa23c6702a11dbc11 diff --git a/src/movepick.h b/src/movepick.h index 5084f1e0..6b5d89c0 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -41,7 +41,7 @@ public: MovePicker(const Position&, Move, Depth, const History&, Search::Stack*, Value); MovePicker(const Position&, Move, Depth, const History&, Square); MovePicker(const Position&, Move, const History&, PieceType); - Move next_move(); + template Move next_move(); private: void score_captures(); @@ -51,12 +51,13 @@ private: const Position& pos; const History& H; + Search::Stack* ss; Depth depth; Move ttMove; MoveStack killers[2]; Square recaptureSquare; int captureThreshold, phase; - MoveStack *curMove, *lastMove, *lastQuiet, *badCaptures; + MoveStack *curMove, *lastMove, *lastQuiet, *lastBadCapture; MoveStack moves[MAX_MOVES]; };