mirror of
https://github.com/official-stockfish/Stockfish.git
synced 2026-07-23 05:07:14 +00:00
Merge branch 'master' into clusterMergeMaster3
This commit is contained in:
+2
-2
@@ -73,7 +73,7 @@ bool getline(std::istream& input, std::string& str);
|
||||
int size();
|
||||
int rank();
|
||||
inline bool is_root() { return rank() == 0; }
|
||||
void save(Thread* thread, TTEntry* tte, Key k, Value v, Bound b, Depth d, Move m, Value ev);
|
||||
void save(Thread* thread, TTEntry* tte, Key k, Value v, bool PvHit, Bound b, Depth d, Move m, Value ev);
|
||||
void pick_moves(MoveInfo& mi, std::string& PVLine);
|
||||
void ttRecvBuff_resize(size_t nThreads);
|
||||
uint64_t nodes_searched();
|
||||
@@ -90,7 +90,7 @@ inline bool getline(std::istream& input, std::string& str) { return static_cast<
|
||||
constexpr int size() { return 1; }
|
||||
constexpr int rank() { return 0; }
|
||||
constexpr bool is_root() { return true; }
|
||||
inline void save(Thread*, TTEntry* tte, Key k, Value v, Bound b, Depth d, Move m, Value ev) { tte->save(k, v, b, d, m, ev); }
|
||||
inline void save(Thread*, TTEntry* tte, Key k, Value v, bool PvHit, Bound b, Depth d, Move m, Value ev) { tte->save(k, v, PvHit, b, d, m, ev); }
|
||||
inline void pick_moves(MoveInfo&, std::string&) { }
|
||||
inline void ttRecvBuff_resize(size_t) { }
|
||||
uint64_t nodes_searched();
|
||||
|
||||
Reference in New Issue
Block a user