Skip to content

Commit

Permalink
Update bitboard.h
Browse files Browse the repository at this point in the history
adressing issue LeelaChessZero#825
  • Loading branch information
KarlKfoury authored Aug 24, 2024
1 parent 0c65aa6 commit f7374aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chess/bitboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class BoardSquare {

// Represents a board as an array of 64 bits.
// Bit enumeration goes from bottom to top, from left to right:
// Square a1 is bit 0, square a8 is bit 7, square b1 is bit 8.
// Square a1 is bit 0, square b1 is bit 7, square a8 is bit 8.
class BitBoard {
public:
constexpr BitBoard(std::uint64_t board) : board_(board) {}
Expand Down

0 comments on commit f7374aa

Please sign in to comment.