From e6a5b63bbeb36ff9d9d5f2c002395012a0d41fdf Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Fri, 22 Jan 2021 13:36:32 -0500 Subject: Trying caching to speed things up --- include/negamax_cnn1986.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/negamax_cnn1986.h') diff --git a/include/negamax_cnn1986.h b/include/negamax_cnn1986.h index 799ca4c..3002837 100644 --- a/include/negamax_cnn1986.h +++ b/include/negamax_cnn1986.h @@ -1,10 +1,12 @@ #include -#include "tak.h" +#include +#include #include "weights.h" extern const float infty; extern char negamax_cnn1986_ptn[9]; extern uint8_t negamax_cnn1986_search_depth; +extern uint8_t negamax_cnn1986_cache_threshold; extern inline void negamax_cnn1986_display_progress(const uint8_t); // Do negamax to depth ct1986_search_depth and return PTN of best move -- cgit v1.3.1