mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 09:06:45 +08:00
Raise max Hash to 1TB
And use size_t where appropriate, as suggested on FishCooking. No functional change.
This commit is contained in:
@@ -60,7 +60,7 @@ void init(OptionsMap& o) {
|
||||
o["Contempt Factor"] << Option(0, -50, 50);
|
||||
o["Min Split Depth"] << Option(0, 0, 12, on_threads);
|
||||
o["Threads"] << Option(1, 1, MAX_THREADS, on_threads);
|
||||
o["Hash"] << Option(32, 1, 16384, on_hash_size);
|
||||
o["Hash"] << Option(32, 1, 1024 * 1024, on_hash_size);
|
||||
o["Clear Hash"] << Option(on_clear_hash);
|
||||
o["Ponder"] << Option(true);
|
||||
o["MultiPV"] << Option(1, 1, 500);
|
||||
|
||||
Reference in New Issue
Block a user