aboutsummaryrefslogtreecommitdiff
path: root/include/negamax_cnn1986.h
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-01-23 18:20:05 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit18496a371a2204e8c1b448921a87108f4aa7ada3 (patch)
treea2a0882c46882f40cd00906e59f52a0a0118a794 /include/negamax_cnn1986.h
parent2439dc2ab6a6c2a840c2d2c1deb3949b7b88f415 (diff)
Attempting Zobrist hashing
Diffstat (limited to 'include/negamax_cnn1986.h')
-rw-r--r--include/negamax_cnn1986.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/negamax_cnn1986.h b/include/negamax_cnn1986.h
deleted file mode 100644
index fc0d5f2..0000000
--- a/include/negamax_cnn1986.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdint.h>
-#include <tak.h>
-#include <cnn1986_treap_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
-// in ct1986_ptn, along with its value as the return. The
-// ct1986_display_progress function is called on every new square at
-// the top level.
-float negamax_cnn1986_generate(void);
-
-// Internal utility function
-float cnn1986_evaluate_black_win(void);