X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fpawns.cpp;h=16c902d127c85ac98f7cf3a44a378733d3d24ee7;hp=1408687348fa8f485a14406cc52f22e793517ca8;hb=d477a0d611ad6f4e11b0e137569eb4b09b349f0f;hpb=54889618c20504f6ac636fc89b0db40d3def69cc diff --git a/src/pawns.cpp b/src/pawns.cpp index 14086873..16c902d1 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -110,9 +110,9 @@ namespace { const Square Right = (Us == WHITE ? DELTA_NE : DELTA_SW); const Square Left = (Us == WHITE ? DELTA_NW : DELTA_SE); - Bitboard b, neighbours, doubled, connected, supported, phalanx; + Bitboard b, neighbours, doubled, supported, phalanx; Square s; - bool passed, isolated, opposed, backward, lever; + bool passed, isolated, opposed, backward, lever, connected; Score score = SCORE_ZERO; const Square* pl = pos.list(Us); const Bitboard* pawnAttacksBB = StepAttacksBB[make_piece(Us, PAWN)];