X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=d49ea3b6a2a995ba0d2a9947265a5f766386293e;hp=60a44a6fac71ee3e24b5aab6bb782be7a4ecd287;hb=f026517e5ee4db8dca5eb2bfd9ce7078a9d39725;hpb=99e547f4cb190e462d0c582b731a0fcf25ce1545 diff --git a/src/movepick.h b/src/movepick.h index 60a44a6f..d49ea3b6 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 @@ -35,7 +35,7 @@ /// and is used for reduction and move ordering decisions. Gains records the move's /// best evaluation gain from one ply to the next and is used for pruning decisions. /// Countermoves store the move that refute a previous one. Entries are stored -/// according only to moving piece and destination square, hence two moves with +/// using only the moving piece and destination square, hence two moves with /// different origin but same destination and piece will be considered identical. template struct Stats { @@ -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(); @@ -102,9 +102,9 @@ private: Move ttMove; ExtMove killers[4]; Square recaptureSquare; - int captureThreshold, phase; + int captureThreshold, stage; ExtMove *cur, *end, *endQuiets, *endBadCaptures; ExtMove moves[MAX_MOVES]; }; -#endif // !defined(MOVEPICK_H_INCLUDED) +#endif // #ifndef MOVEPICK_H_INCLUDED