blob: b90bd8fb9144af3d7e5b477559f0be0e5470c844 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "types.h"
typedef U64 Bitboard;
#define BIT (U64)1
int pop_count(Bitboard bb);
void print_bitboard(Bitboard bb);
Bitboard ls1b(Bitboard bb);
Bitboard bitscan(Bitboard bb);
|