diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-22 13:36:32 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | e6a5b63bbeb36ff9d9d5f2c002395012a0d41fdf (patch) | |
| tree | 36419c24a19ea6a7ec511cd67a54d9229d67ae1c /include/negamax_cnn1986.h | |
| parent | 703c875144bb365e6448b41493aa0d6615e10520 (diff) | |
Trying caching to speed things up
Diffstat (limited to 'include/negamax_cnn1986.h')
| -rw-r--r-- | include/negamax_cnn1986.h | 4 |
1 files changed, 3 insertions, 1 deletions
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 <stdint.h> -#include "tak.h" +#include <tak.h> +#include <cnn1986_cache.h> #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 |
