X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=27c33047f7728839fd6c9743126122db7f45c9c3;hp=9bab654798a3819a9e760d78508669748a7af764;hb=fca0a2dd881e6bde0a01d3342dd385600e01730b;hpb=462a39ec496a94cf3f05ca60b4ddcc31150904ac diff --git a/src/movepick.h b/src/movepick.h index 9bab6547..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(); @@ -55,7 +55,7 @@ private: const History& H; Move ttMove; MoveStack killers[2]; - int badCaptureThreshold, phase; + int captureThreshold, phase; const uint8_t* phasePtr; MoveStack *curMove, *lastMove, *lastGoodNonCapture, *badCaptures; MoveStack moves[MAX_MOVES];