mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 02:27:00 +08:00
committed by
Joona Kiiski
parent
ecd3218b6b
commit
1781439fc2
@@ -52,7 +52,7 @@ struct ButterflyHistory : public ButterflyBoards {
|
||||
void update(Color c, Move m, int v) {
|
||||
|
||||
const int D = 324;
|
||||
int& entry = (*this)[c][from_to(m)];
|
||||
auto& entry = (*this)[c][from_to(m)];
|
||||
|
||||
assert(abs(v) <= D); // Consistency check for below formula
|
||||
|
||||
@@ -68,7 +68,7 @@ struct PieceToHistory : public PieceToBoards {
|
||||
void update(Piece pc, Square to, int v) {
|
||||
|
||||
const int D = 936;
|
||||
int& entry = (*this)[pc][to];
|
||||
auto& entry = (*this)[pc][to];
|
||||
|
||||
assert(abs(v) <= D); // Consistency check for below formula
|
||||
|
||||
|
||||
Reference in New Issue
Block a user