]> git.sesse.net Git - stockfish/blobdiff - src/syzygy/tbprobe.h
Sync with master
[stockfish] / src / syzygy / tbprobe.h
index 9ed6f0a39330febb489fc1e8ecb0476fb35b27cb..4233e1aae14829037995aaf8d1bddbdd42ab6ffe 100644 (file)
@@ -1,15 +1,17 @@
 #ifndef TBPROBE_H
 #define TBPROBE_H
 
 #ifndef TBPROBE_H
 #define TBPROBE_H
 
+#include "../search.h"
+
 namespace Tablebases {
 
 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);
 
 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);
 
 }
 
 
 }