Raise max Hash to 1TB

And use size_t where appropriate, as suggested on FishCooking.

No functional change.
This commit is contained in:
lucasart
2014-07-01 18:13:20 +08:00
parent 6b354305e1
commit 24ba204931
3 changed files with 5 additions and 7 deletions

View File

@@ -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);