From 815cde44e5060ad093347bb47fc66d41c9d3a3ed Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Sun, 24 Jan 2021 12:07:18 -0500 Subject: Still trying | --- include/negamax.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/negamax.h') diff --git a/include/negamax.h b/include/negamax.h index 52a8fd2..f3a0a6c 100644 --- a/include/negamax.h +++ b/include/negamax.h @@ -2,16 +2,15 @@ #include #include #include -#include +#include extern const float infty; extern char negamax_ptn[9]; extern uint8_t negamax_search_depth; -extern uint32_t cache_fails; extern inline void negamax_display_progress(const uint8_t); void negamax_init(const uint8_t new_board_size); -void negamax_compute_zobrist(uint64_t hash[4]); +uint64_t negamax_compute_zobrist(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.2.3