From c5891a499f180da91aa14ad7273f00092a7b3e45 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 17 Aug 2026 20:01:05 +0200 Subject: adding zobrist hashing --- src/zobrist.hpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/zobrist.hpp') diff --git a/src/zobrist.hpp b/src/zobrist.hpp index 575d912..e23facf 100644 --- a/src/zobrist.hpp +++ b/src/zobrist.hpp @@ -1,11 +1,7 @@ #pragma once -#include "board/board.hpp" #include -extern uint64_t PieceKeys[2][7][64]; -extern uint64_t SideKey; -extern uint64_t CastleKeys[16]; -extern uint64_t EnPassantKeys[8]; +struct Game; void InitZobrist(); uint64_t GenerateZobristKey(Game *b); -- cgit v1.2.3