mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 12:07:43 +00:00
Use self-describing constants instead of numbers
And remove now useless comments. No functional change.
This commit is contained in:
+2
-2
@@ -44,8 +44,8 @@ public:
|
||||
static const Value MaxValue = Value(2000);
|
||||
|
||||
private:
|
||||
Value history[16][64]; // [piece][to_square]
|
||||
Value maxGains[16][64]; // [piece][to_square]
|
||||
Value history[PIECE_NB][SQUARE_NB];
|
||||
Value maxGains[PIECE_NB][SQUARE_NB];
|
||||
};
|
||||
|
||||
inline void History::clear() {
|
||||
|
||||
Reference in New Issue
Block a user