]> git.sesse.net Git - stockfish/blob - src/syzygy/tbprobe.h
9ed6f0a39330febb489fc1e8ecb0476fb35b27cb
[stockfish] / src / syzygy / tbprobe.h
1 #ifndef TBPROBE_H
2 #define TBPROBE_H
3
4 namespace Tablebases {
5
6 extern int TBLargest;
7
8 void init(const std::string& path);
9 int probe_wdl(Position& pos, int *success);
10 int probe_dtz(Position& pos, int *success);
11 bool root_probe(Position& pos, Value& TBScore);
12 bool root_probe_wdl(Position& pos, Value& TBScore);
13
14 }
15
16 #endif