]> git.sesse.net Git - stockfish/blob - src/syzygy/tbprobe.h
Fix compile error with MSVC 2013
[stockfish] / src / syzygy / tbprobe.h
1 #ifndef TBPROBE_H
2 #define TBPROBE_H
3
4 #include "../search.h"
5
6 namespace Tablebases {
7
8 extern int MaxCardinality;
9
10 void init(const std::string& path);
11 int probe_wdl(Position& pos, int *success);
12 int probe_dtz(Position& pos, int *success);
13 bool root_probe(Position& pos, Search::RootMoveVector& rootMoves, Value& score);
14 bool root_probe_wdl(Position& pos, Search::RootMoveVector& rootMoves, Value& score);
15
16 }
17
18 #endif