X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsyzygy%2Ftbprobe.h;fp=src%2Fsyzygy%2Ftbprobe.h;h=9ed6f0a39330febb489fc1e8ecb0476fb35b27cb;hp=0000000000000000000000000000000000000000;hb=7caa6cd3383cf90189a1947c9bdf9c6fea1172a6;hpb=4509eb1342fe282d08bd90340efaff4df5947a87 diff --git a/src/syzygy/tbprobe.h b/src/syzygy/tbprobe.h new file mode 100644 index 00000000..9ed6f0a3 --- /dev/null +++ b/src/syzygy/tbprobe.h @@ -0,0 +1,16 @@ +#ifndef TBPROBE_H +#define TBPROBE_H + +namespace Tablebases { + +extern int TBLargest; + +void init(const std::string& path); +int probe_wdl(Position& pos, int *success); +int probe_dtz(Position& pos, int *success); +bool root_probe(Position& pos, Value& TBScore); +bool root_probe_wdl(Position& pos, Value& TBScore); + +} + +#endif