Added EnableTranspositionTable UCI option to enable/disable transposition table.

This commit is contained in:
nodchip
2020-09-10 20:54:47 +09:00
parent 59402d4a6d
commit ac6e6f73f2
3 changed files with 21 additions and 1 deletions

View File

@@ -84,6 +84,10 @@ public:
return &table[mul_hi64(key, clusterCount)].entry[0];
}
#ifdef EVAL_LEARN
static bool enable_transposition_table;
#endif
private:
friend struct TTEntry;