Added #if to fix compile errors.

This commit is contained in:
Hisayori Noda
2019-06-24 23:18:17 +09:00
parent a413bf7aad
commit 26271586cb
3 changed files with 12 additions and 7 deletions

View File

@@ -118,7 +118,7 @@ void TranspositionTable::clear() {
/// TTEntry t2 if its replace value is greater than that of t2.
TTEntry* TranspositionTable::probe(const Key key, bool& found) const {
#if defined(EVAL_LEARN)
#if defined(DISABLE_TT)
return found = false, first_entry(0);
#else