X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=c444615f5b9f2e8ab4a0952ff47e3c97bf642079;hp=37027ace23153d1dff36b88446df58d5b4be495d;hb=343544f3f7fe780a4231b78646ab2fd61760e294;hpb=4ede49cd850392f28bc9da9537c111d2c3f0b297 diff --git a/src/movepick.h b/src/movepick.h index 37027ace..c444615f 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if !defined MOVEPICK_H_INCLUDED +#ifndef MOVEPICK_H_INCLUDED #define MOVEPICK_H_INCLUDED #include // For std::max @@ -86,7 +86,7 @@ class MovePicker { public: MovePicker(const Position&, Move, Depth, const HistoryStats&, Square); MovePicker(const Position&, Move, const HistoryStats&, PieceType); - MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*, Value); + MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*); template Move next_move(); @@ -100,11 +100,11 @@ private: Move* countermoves; Depth depth; Move ttMove; - MoveStack killers[4]; + ExtMove killers[4]; Square recaptureSquare; - int captureThreshold, phase; - MoveStack *cur, *end, *endQuiets, *endBadCaptures; - MoveStack moves[MAX_MOVES]; + int captureThreshold, stage; + ExtMove *cur, *end, *endQuiets, *endBadCaptures; + ExtMove moves[MAX_MOVES]; }; -#endif // !defined(MOVEPICK_H_INCLUDED) +#endif // #ifndef MOVEPICK_H_INCLUDED