diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-29 08:59:01 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-29 08:59:01 +0200 |
| commit | 9ec09d7151ea8fa78d082ab931691a5db2f1be6a (patch) | |
| tree | eb6beb6132160f8d7f82e295028a532998771eb9 /src/uci.hpp | |
| parent | 815abe7aabf47814dc391d19dedd6e9b23f100a1 (diff) | |
making cache have depth
Diffstat (limited to 'src/uci.hpp')
| -rw-r--r-- | src/uci.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/uci.hpp b/src/uci.hpp index 4d84215..9352c48 100644 --- a/src/uci.hpp +++ b/src/uci.hpp @@ -7,6 +7,7 @@ Move UciToMove(std::string uci); void LogUci(const std::string &message); void Uci(); -Game initBoard(std::string startingFEN, - std::unordered_map<uint64_t, float> *transPositions); +Game initBoard( + std::string startingFEN, + std::unordered_map<uint64_t, TranspositionsEntry> *transPositions); #endif /* SRC_UCI_H_ */ |
