1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 08:43:09 +00:00

delete bitboard.cpp

This commit is contained in:
root 2015-01-10 14:43:34 +00:00
parent bca6a6a033
commit 3727e817b9

View file

@ -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];
}