adapt to brlib 0.3

This commit is contained in:
2024-01-06 19:54:22 +01:00
parent 558be57c58
commit 1aa419392e
6 changed files with 12 additions and 20 deletions

View File

@@ -14,10 +14,10 @@
#ifndef BITBOARD_H
#define BITBOARD_H
#include <bits.h>
#include "br.h"
#include "chessdefs.h"
#include "piece.h"
#include "bitops.h"
enum bb_square {
A1 = 1UL << 0, B1 = 1UL << 1, C1 = 1UL << 2, D1 = 1UL << 3,

View File

@@ -14,7 +14,7 @@
#ifndef CHESSDEFS_H
#define CHESSDEFS_H
#include <bits.h>
#include "br.h"
/* piece_t bits structure
* MSB 8 7 6 5 4 3 2 1 LSB

View File

@@ -11,8 +11,8 @@
*
*/
#include <bits.h>
#include <debug.h>
#include "br.h"
#include "debug.h"
#include "piece.h"
#include "eval-simple.h"

View File

@@ -15,9 +15,10 @@
#define POSITION_H
#include <stdint.h>
#include <pool.h>
#include <list.h>
#include <bits.h>
#include "pool.h"
#include "list.h"
#include "bitops.h"
#include "board.h"
#include "chessdefs.h"