aboutsummaryrefslogtreecommitdiff
path: root/src/zobrist.hpp
blob: 575d9128b6f6f2674c1bca9f9c6bfb35ea648b04 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include "board/board.hpp"
#include <cstdint>

extern uint64_t PieceKeys[2][7][64];
extern uint64_t SideKey;
extern uint64_t CastleKeys[16];
extern uint64_t EnPassantKeys[8];

void InitZobrist();
uint64_t GenerateZobristKey(Game *b);