mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Lower MultiPV max to MAX_MOVES
Link max value of MultiPV to that of MAX_MOVES which is 256 closes https://github.com/official-stockfish/Stockfish/pull/4951 No functional change
This commit is contained in:
parent
0fca5605fa
commit
154abb337e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ void init(OptionsMap& o) {
|
||||||
o["Hash"] << Option(16, 1, MaxHashMB, on_hash_size);
|
o["Hash"] << Option(16, 1, MaxHashMB, on_hash_size);
|
||||||
o["Clear Hash"] << Option(on_clear_hash);
|
o["Clear Hash"] << Option(on_clear_hash);
|
||||||
o["Ponder"] << Option(false);
|
o["Ponder"] << Option(false);
|
||||||
o["MultiPV"] << Option(1, 1, 500);
|
o["MultiPV"] << Option(1, 1, MAX_MOVES);
|
||||||
o["Skill Level"] << Option(20, 0, 20);
|
o["Skill Level"] << Option(20, 0, 20);
|
||||||
o["Move Overhead"] << Option(10, 0, 5000);
|
o["Move Overhead"] << Option(10, 0, 5000);
|
||||||
o["nodestime"] << Option(0, 0, 10000);
|
o["nodestime"] << Option(0, 0, 10000);
|
||||||
|
|
Loading…
Add table
Reference in a new issue