X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=c71ff1a990f98879c842c483dfc67560039ed440;hp=f989121f378f474551227f7c173d6ec3d3cc9a98;hb=d4ded09e17c607c6f814e398aea9ea559c35f8ee;hpb=a4a0ffce711962c0b04b35998c3c06491be373bf diff --git a/src/movepick.h b/src/movepick.h index f989121f..c71ff1a9 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -56,7 +56,7 @@ public: private: void score_captures(); void score_noncaptures(); - void score_evasions_or_checks(); + void score_evasions(); void go_next_phase(); const Position& pos; @@ -65,8 +65,8 @@ private: MoveStack ttMoves[2], killers[2]; int badCaptureThreshold, phase; const uint8_t* phasePtr; - MoveStack *curMove, *lastMove, *lastGoodNonCapture, *lastBadCapture; - MoveStack moves[256], badCaptures[64]; + MoveStack *curMove, *lastMove, *lastGoodNonCapture, *badCaptures; + MoveStack moves[MOVES_MAX]; };