blob: 372f007926f0480827fb4e6ae7dbdb3c2314885c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef SRC_UCI_H_
#define SRC_UCI_H_
#include "board/board.hpp"
#include <string>
#include <unordered_map>
Move UciToMove(const std::string uci);
void LogUci(const std::string &message);
void Uci();
Game initBoard(
std::string startingFEN,
std::unordered_map<uint64_t, TranspositionsEntry> *transPositions);
void SaveTranspositionTable(
const std::unordered_map<uint64_t, TranspositionsEntry> &table);
bool LoadTable(
const std::string &filename,
std::unordered_map<uint64_t, TranspositionsEntry> *transpositions);
#endif /* SRC_UCI_H_ */
|