Skip to content

Commit

Permalink
ConsiderBookMoveCountが無効の場合にBookEvalDiffが無視されるバグを修正した
Browse files Browse the repository at this point in the history
  • Loading branch information
nodchip committed May 17, 2017
1 parent 7307652 commit 9ca540a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/engine/2017-early-engine/2017-early-search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ namespace {
}
}
}
return move_list[prng.rand(move_list.size())];
return move_list[prng.rand(book_move_max)];
};
}

Expand Down

0 comments on commit 9ca540a

Please # to comment.