Add some basic algorithms and eval functions for an AI
All checks were successful
Python tests (make) / test (push) Successful in 11s

This commit is contained in:
2025-08-23 13:10:05 -04:00
parent 60a987a7a1
commit 4fc982eac2
6 changed files with 409 additions and 21 deletions

4
engine/include/ai.h Normal file
View File

@@ -0,0 +1,4 @@
#include "bitboard.h"
int ai_find_best_move_with_window(struct Board *b, int depth, int window_cp, struct Move *best_out);
int ai_play(struct Board *b, int depth);