-
Notifications
You must be signed in to change notification settings - Fork 535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect comment on bit order in class BitBoard? #825
Comments
Yeah initially it was wrong in both places, but then fixed in one but apparently not another. |
There are some other improvements possible in bitboard.h. E.g. And I also don’t quite understand the rationale to vertically mirror the inputs for training, could you explain? I could send a PR later. What do you think? |
Those are good suggestsions, PR will be appreciated! |
Still Relevant? |
Yes, I've just check, still wrong (the comments issue in the very first comment). :) |
adressing issue LeelaChessZero#825
adressing issue LeelaChessZero#825
In bitboard.h, for
class BoardSquare
the comment on line 43/44 states:In contrast, for the
class BitBoard
the comment on line 88/89 states:However, the subsequent
BitBoard
member functionsset
,reset
etc. take a BoardSquare parameter. So in fact BitBoard has the same ordering as BoardSquare.Should this comment in
class BitBoard
be updated?The text was updated successfully, but these errors were encountered: