mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-08 13:19:29 +01:00
17 lines
319 B
C++
17 lines
319 B
C++
#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
|