Add fen loader and a test script for c
All checks were successful
Python tests (make) / test (push) Successful in 10s
Python tests (make) / test (pull_request) Successful in 9s

This commit is contained in:
2025-08-16 12:44:04 -04:00
parent db11521329
commit c80826710d
6 changed files with 103 additions and 6 deletions

View File

@@ -52,6 +52,7 @@ struct Board {
int fullmove_number;
};
void create_knight_attack_cache(void);
void create_pawn_attack_cache(void);
void create_king_attack_cache(void);
void create_knight_attack_cache();
void create_pawn_attack_cache();
void create_king_attack_cache();
void print_board();

1
engine/include/fen.h Normal file
View File

@@ -0,0 +1 @@
int load_fen();