mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 01:56:58 +08:00
Rename MoveStack to ExtMove
Stack has no meaning here, while ExtMove (extended move), better clarifies that we have a move + a score. No functional change.
This commit is contained in:
@@ -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];
|
||||
ExtMove *cur, *end, *endQuiets, *endBadCaptures;
|
||||
ExtMove moves[MAX_MOVES];
|
||||
};
|
||||
|
||||
#endif // !defined(MOVEPICK_H_INCLUDED)
|
||||
|
||||
Reference in New Issue
Block a user