summaryrefslogtreecommitdiff
path: root/include/engine/transposition_table.h
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-07-18 18:45:15 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-07-18 18:45:15 +0530
commitc9d9bddf3df97ef7987c9824747ec1602522b542 (patch)
tree449acf383fb10ccf2210d9af96515275b52cf1a9 /include/engine/transposition_table.h
parent9395e857db95481f6e2494d3a841632be0ff97c8 (diff)
zobrist hashing
Diffstat (limited to 'include/engine/transposition_table.h')
-rw-r--r--include/engine/transposition_table.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/engine/transposition_table.h b/include/engine/transposition_table.h
new file mode 100644
index 0000000..f06ddbe
--- /dev/null
+++ b/include/engine/transposition_table.h
@@ -0,0 +1,16 @@
+#ifndef TRANSPOSITION_TABLE_H
+#define TRANSPOSITION_TABLE_H
+
+#include "bitboard.h"
+
+static struct zobrist_keys {
+ u64 piece[PIECE_TYPE_COUNT][64];
+ u64 castle[CASTLE_COUNT];
+ u64 turn[TURN_COUNT];
+ u64 en_passant[64];
+} zobrist_keys;
+
+void transposition_table_init();
+u64 zobrist_hash(position_t position);
+
+#endif // TRANSPOSITION_TABLE_H