From cb143299411851667a8e3aae4d7a55f729694b12 Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Sun, 24 Jan 2021 21:31:59 -0500 Subject: This is the basic idea, there's ≥ 1 bug (generates illegals...) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/negamax.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/negamax.h') diff --git a/include/negamax.h b/include/negamax.h index 1cfebdd..8a67638 100644 --- a/include/negamax.h +++ b/include/negamax.h @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -12,7 +13,7 @@ extern uint8_t negamax_search_depth; extern inline void negamax_display_progress(const uint8_t); void negamax_init(const uint8_t new_board_size); -uint64_t negamax_compute_zobrist(void); +void negamax_free(void); // Do negamax to depth negamax_search_depth and return PTN of best move // in negamax_ptn, along with its value as the return. The -- cgit v1.3.1