]> git.sesse.net Git - stockfish/blobdiff - src/syzygy/tbprobe.h
LMR Simplification
[stockfish] / src / syzygy / tbprobe.h
index 9ed6f0a39330febb489fc1e8ecb0476fb35b27cb..2bcc0834c9cb8bb7896679703aa8627f067bba14 100644 (file)
@@ -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::RootMoves& rootMoves, Value& score);
+bool root_probe_wdl(Position& pos, Search::RootMoves& rootMoves, Value& score);
 
 }