evaluation

This commit is contained in:
2024-03-24 16:53:44 +01:00
parent 84fad9abb8
commit 21de797d66
7 changed files with 144 additions and 11 deletions

View File

@ -26,7 +26,7 @@ uint_least8_t pieceValidMoves(struct gameState_t gameState, struct piece_t piece
void undoMove(uint_least64_t *board, struct move_t move, bool color);
struct gameState_t makeMove(struct gameState_t gameState, struct move_t move);
struct gameState_t computerMove(struct gameState_t gameState);
void initMagicTable();
bool kingInCheck(const uint_least64_t *board, const bool color);
#endif

View File

@ -28,3 +28,4 @@ void printerull(FILE *file, unsigned long long num);
void printPieceMask(uint_least64_t mask);
void fieldToString(uint_least8_t field, char *output);
void printMove(const struct move_t move);
void printMoveln(const struct move_t move);