X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=d2f8d287670ec2b0efcd4b37c8e8feff3bf3f4fa;hp=13fcdf247d65ba6d62570d05c3f72b368ff1bb57;hb=3d2aab11d89493311e0908a9ee1a8288b9ff9b42;hpb=79fa72f392343fb93c16c133dedc3dbdf795e746 diff --git a/src/position.cpp b/src/position.cpp index 13fcdf24..d2f8d287 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -34,8 +34,6 @@ using std::string; -CACHE_LINE_ALIGNMENT - Value PieceValue[PHASE_NB][PIECE_NB] = { { VALUE_ZERO, PawnValueMg, KnightValueMg, BishopValueMg, RookValueMg, QueenValueMg }, { VALUE_ZERO, PawnValueEg, KnightValueEg, BishopValueEg, RookValueEg, QueenValueEg } }; @@ -122,7 +120,7 @@ std::ostream& operator<<(std::ostream& os, const Position& pos) { } os << "\nFen: " << pos.fen() << "\nKey: " << std::hex << std::uppercase - << std::setfill('0') << std::setw(16) << pos.st->key << "\nCheckers: "; + << std::setfill('0') << std::setw(16) << pos.st->key << std::dec << "\nCheckers: "; for (Bitboard b = pos.checkers(); b; ) os << UCI::format_square(pop_lsb(&b)) << " ";