aboutsummaryrefslogtreecommitdiff
path: root/include/negamax.h
diff options
context:
space:
mode:
authortslil clingman <tslil@posteo.de>2021-01-28 13:53:19 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit1be9fac33c8227564079356c63840d227c88725f (patch)
tree15322705ce1dd73c1eb863678360a0e403490337 /include/negamax.h
parentb5b337d4044a8e64956b8a2309739353f9ce339e (diff)
Removed treap in favour of linked-list chained hash table
Diffstat (limited to 'include/negamax.h')
-rw-r--r--include/negamax.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/negamax.h b/include/negamax.h
index bba5af9..b41871e 100644
--- a/include/negamax.h
+++ b/include/negamax.h
@@ -2,10 +2,11 @@
#include <math.h>
#include <tak.h>
+
#include <actions.h>
-#include <xorshift64.h>
#include <cnn1986.h>
-#include <tt_treap.h>
+#include <tt_llcht.h>
+#include <xorshift64.h>
#include <zobrist.h>
extern const float infty;