1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

Avoid a compilation warning

Avoid a warning while compiling with gcc version 4.9.2

No functional change.
This commit is contained in:
Alain SAVARD 2018-02-21 00:52:26 +01:00 committed by Stéphane Nicolet
parent 67f5f54a29
commit 6c898a10be

View file

@ -758,7 +758,7 @@ namespace {
&& (pos.pieces(PAWN) & KingSide);
// Compute the initiative bonus for the attacking side
int initiative = 8 * outflanking
int complexity = 8 * outflanking
+ 8 * pe->pawn_asymmetry()
+ 12 * pos.count<PAWN>()
+ 16 * pawnsOnBothFlanks
@ -767,7 +767,7 @@ namespace {
// Now apply the bonus: note that we find the attacking side by extracting
// the sign of the endgame value, and that we carefully cap the bonus so
// that the endgame score will never change sign after the bonus.
int v = ((eg > 0) - (eg < 0)) * std::max(initiative, -abs(eg));
int v = ((eg > 0) - (eg < 0)) * std::max(complexity, -abs(eg));
if (T)
Trace::add(INITIATIVE, make_score(0, v));