mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix a bogus assert in tt.cpp
Max hash size is 4096 MB, not 1024 MB, see the corresponding "Hash" UCI parameter in ucioption.cpp No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
fb560fa5d7
commit
2550c6383b
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ TranspositionTable::~TranspositionTable() {
|
|||
|
||||
void TranspositionTable::set_size(unsigned mbSize) {
|
||||
|
||||
assert(mbSize >= 4 && mbSize <= 1024);
|
||||
assert(mbSize >= 4 && mbSize <= 4096);
|
||||
|
||||
unsigned newSize = 1024;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue