Skip to content

Commit

Permalink
- Lower MultiPV max to MAX_MOVES : official-stockfish/Stockfish@154abb3
Browse files Browse the repository at this point in the history
  • Loading branch information
yaneurao committed Feb 14, 2024
1 parent 41c528c commit 99e4eca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/usi_option.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ namespace USI {
o["Stochastic_Ponder"] << USI::Option(false);

// その局面での上位N個の候補手を調べる機能
o["MultiPV"] << Option(1, 1, 800);
// ⇨ これMAX_MOVESで十分。
o["MultiPV"] << Option(1, 1, MAX_MOVES);

// 指し手がGUIに届くまでの時間。
#if defined(YANEURAOU_ENGINE_DEEP)
Expand Down

0 comments on commit 99e4eca

Please sign in to comment.