Skip to content

Commit

Permalink
Lower MultiPV max to MAX_MOVES
Browse files Browse the repository at this point in the history
Link max value of MultiPV to that of MAX_MOVES which is 256

closes #4951

No functional change
  • Loading branch information
bftjoe authored and Disservin committed Jan 4, 2024
1 parent 0fca560 commit 154abb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ucioption.cpp
Expand Up @@ -70,7 +70,7 @@ void init(OptionsMap& o) {
o["Hash"] << Option(16, 1, MaxHashMB, on_hash_size);
o["Clear Hash"] << Option(on_clear_hash);
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["Move Overhead"] << Option(10, 0, 5000);
o["nodestime"] << Option(0, 0, 10000);
Expand Down

0 comments on commit 154abb3

Please sign in to comment.