X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fsyzygy%2Ftbprobe.h;h=4233e1aae14829037995aaf8d1bddbdd42ab6ffe;hp=9ed6f0a39330febb489fc1e8ecb0476fb35b27cb;hb=6fa6da3ee13d2b7bdbec3cd24ff8ca43233c74fb;hpb=7caa6cd3383cf90189a1947c9bdf9c6fea1172a6 diff --git a/src/syzygy/tbprobe.h b/src/syzygy/tbprobe.h index 9ed6f0a3..4233e1aa 100644 --- a/src/syzygy/tbprobe.h +++ b/src/syzygy/tbprobe.h @@ -1,15 +1,17 @@ #ifndef TBPROBE_H #define TBPROBE_H +#include "../search.h" + namespace Tablebases { -extern int TBLargest; +extern int MaxCardinality; 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); +bool root_probe(Position& pos, Search::RootMoveVector& rootMoves, Value& score); +bool root_probe_wdl(Position& pos, Search::RootMoveVector& rootMoves, Value& score); }