From a0970bddbd9f6b97b6a12ba7f73fd1810a2e1e1b Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Sun, 19 Jul 2026 17:52:26 +0530 Subject: ttable lookup & probe --- include/engine/transposition_table.h | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 include/engine/transposition_table.h (limited to 'include/engine/transposition_table.h') diff --git a/include/engine/transposition_table.h b/include/engine/transposition_table.h deleted file mode 100644 index f06ddbe..0000000 --- a/include/engine/transposition_table.h +++ /dev/null @@ -1,16 +0,0 @@ -#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 -- cgit v1.2.3