Occupancy & square control bitboards + continue printf->logX

This commit is contained in:
2021-11-08 08:38:38 +01:00
parent c7faa88bfa
commit d38e2f4543
13 changed files with 184 additions and 89 deletions

View File

@@ -69,9 +69,14 @@ typedef unsigned char castle_t;
#define CASTLE_W 0x03 /* 00000011 W castle mask */
#define CASTLE_B 0x0C /* 00001100 B castle mask */
/* bitboard
*/
typedef uint64_t bitboard_t;
/* eval type
*/
typedef int64_t eval_t;
typedef int64_t eval_t;
/* forward typedefs
*/