mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
delete bitboard.cpp
This commit is contained in:
parent
bca6a6a033
commit
3727e817b9
1 changed files with 0 additions and 15 deletions
|
@ -1,15 +0,0 @@
|
|||
int A[8];
|
||||
int B[8];
|
||||
int C;
|
||||
|
||||
int main() {
|
||||
|
||||
for (int f = 0; f <= 7; ++f)
|
||||
A[f] = f;
|
||||
|
||||
for (int f = 0; f <= 7; ++f)
|
||||
B[f] = (f > 0 ? A[f - 1] : 0) | (f < 7 ? A[f + 1] : 0);
|
||||
|
||||
C = B[7];
|
||||
}
|
||||
|
Loading…
Add table
Reference in a new issue