blob: 94334215934bdab3dfa133cd611e18e722d20898 (
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);
|