aboutsummaryrefslogtreecommitdiff
path: root/src/zobrist.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-08-16 11:22:34 +0200
committerAdam <adammegarules1@gmail.com>2026-08-16 11:22:34 +0200
commit8e47b8f9f8a017f25a1c9a9baba05b0bf9b12d2d (patch)
tree6ee118919928e33d4115d78a6565940f26c8b30c /src/zobrist.cpp
parentb0ed5c409f822fa120ef2e2c830842204b0945c1 (diff)
perf(draw) instead of having a hash map for three fold repetion check now we have
Diffstat (limited to 'src/zobrist.cpp')
-rw-r--r--src/zobrist.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zobrist.cpp b/src/zobrist.cpp
index 20ac5e9..8c50d3d 100644
--- a/src/zobrist.cpp
+++ b/src/zobrist.cpp
@@ -1,6 +1,7 @@
#include "zobrist.hpp"
#include "board/board.hpp"
+#include <cstdint>
#include <random>
uint64_t PieceKeys[2][7][64];