Skip to content

Commit

Permalink
定跡を用いる最大手数を50手から120手に変更(まふ定跡対応)
Browse files Browse the repository at this point in the history
  • Loading branch information
tttak committed Dec 4, 2016
1 parent 3f2d669 commit ed6bb8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/usi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

namespace {

const auto kProgramName = "Gikou AperyEvalMixNoTurn_BothGains Stockfish7 20161008";
const auto kProgramName = "Gikou AperyEvalMixNoTurn_BothGains Stockfish7 20161204";
const auto kAuthorName = "Yosuke Demura";
const auto kBookFile = "book.bin";

Expand Down Expand Up @@ -341,7 +341,8 @@ UsiOptions::UsiOptions() {
map_.emplace("OwnBook", UsiOption(true));

// 定跡を用いる最大手数
map_.emplace("BookMaxPly", UsiOption(50, 0, 50));
//map_.emplace("BookMaxPly", UsiOption(50, 0, 50));
map_.emplace("BookMaxPly", UsiOption(70, 0, 120));

// 定跡手の評価値のしきい値(先手番)(先手番側から見た評価値がこの値未満の定跡手は選択しない)
map_.emplace("MinBookScoreForBlack", UsiOption(0, -500, 500));
Expand Down

0 comments on commit ed6bb8b

Please sign in to comment.