mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-05 01:35:50 +01:00
19 lines
414 B
C++
19 lines
414 B
C++
#ifndef TBPROBE_H
|
|
#define TBPROBE_H
|
|
|
|
#include "../search.h"
|
|
|
|
namespace Tablebases {
|
|
|
|
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, Search::RootMoveVector& rootMoves, Value& score);
|
|
bool root_probe_wdl(Position& pos, Search::RootMoveVector& rootMoves, Value& score);
|
|
|
|
}
|
|
|
|
#endif
|