aboutsummaryrefslogtreecommitdiff
path: root/src/book.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-08-17 20:01:05 +0200
committerAdam <adammegarules1@gmail.com>2026-08-17 20:01:05 +0200
commitc5891a499f180da91aa14ad7273f00092a7b3e45 (patch)
tree4af50ef60979368a298940732e86c9ea7786c2c4 /src/book.hpp
parent11e2da3df8a4bf598f630dbad8bb666047c22bce (diff)
adding zobrist hashing
Diffstat (limited to 'src/book.hpp')
-rw-r--r--src/book.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/book.hpp b/src/book.hpp
new file mode 100644
index 0000000..4382dc7
--- /dev/null
+++ b/src/book.hpp
@@ -0,0 +1,7 @@
+#pragma once
+#include <cstdint>
+#include <string>
+
+void InitBook(const std::string &path);
+uint16_t ProbeBook(uint64_t key);
+int GetBookDepth();