Skip to content

Commit

Permalink
- eval_learn版、version文字列が数字以外だとコンパイルエラーになるの修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
yaneurao committed May 14, 2024
1 parent 692ae2f commit b327a27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/book/makebook2015.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ namespace Book
Move nextMove = (rootMoves.pv.size() >= 1) ? rootMoves.pv[1] : MOVE_NONE;

// 出現頻度は、バージョンナンバーを100倍したものにしておく)
// ⇨ ENGINE_VERSIONに数字以外の文字列入れたいことがあるので、これは良くない仕様。
// 800固定とする。(いま最新がV8.00系だから)
BookMove bp(rootMoves.pv[0], nextMove , rootMoves.score
, search_depth, int(atof(ENGINE_VERSION) * 100));
, search_depth, /*int(atof(ENGINE_VERSION) * 100)*/ 800);

// MultiPVで思考しているので、手番側から見て評価値の良い順に並んでいることは保証される。
// (書き出しのときに並び替えなければ)
Expand Down

0 comments on commit b327a27

Please sign in to comment.