X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=27c33047f7728839fd6c9743126122db7f45c9c3;hp=fdbd834e43742e63edea39f16cd0bc77a793657f;hb=fca0a2dd881e6bde0a01d3342dd385600e01730b;hpb=4c3a000211bea046dd9506bae748576ecf6368fa diff --git a/src/movepick.h b/src/movepick.h index fdbd834e..27c33047 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -42,8 +42,8 @@ class MovePicker { public: MovePicker(const Position&, Move, Depth, const History&, SearchStack*, Value); MovePicker(const Position&, Move, Depth, const History&); + MovePicker(const Position&, Move, const History&, int parentCapture); Move get_next_move(); - bool isBadCapture() const; private: void score_captures(); @@ -53,8 +53,9 @@ private: const Position& pos; const History& H; - MoveStack ttMoves[2], killers[2]; - int badCaptureThreshold, phase; + Move ttMove; + MoveStack killers[2]; + int captureThreshold, phase; const uint8_t* phasePtr; MoveStack *curMove, *lastMove, *lastGoodNonCapture, *badCaptures; MoveStack moves[MAX_MOVES];