facebook twitter hatena line email

将棋プログラム/技巧/usi

提供: 初心者エンジニアの簡易メモ
2017年10月6日 (金) 14:16時点におけるAdmin (トーク | 投稿記録)による版 (usiのコマンド一覧)

移動: 案内検索

usi使い方

> bin/release
info string Unsupported Command:
> usi
id name Gikou 2 (v2.0.2)
id author Yosuke Demura
option name BookFile type filename default book.bin
option name BookMaxPly type spin default 20 min 0 max 50
option name ByoyomiMargin type spin default 100 min 0 max 10000
option name DepthLimit type spin default 100 min 1 max 100
option name DrawScore type spin default 0 min -200 max 200
option name FischerMargin type spin default 12000 min 0 max 60000
option name MinThinkingTime type spin default 1000 min 10 max 60000
option name MultiPV type spin default 1 min 1 max 700
option name NarrowBook type check default false
option name OwnBook type check default true
option name ResignScore type spin default -10000 min -32600 max -500
option name SuddenDeathMargin type spin default 60 min 0 max 600
option name Threads type spin default 4 min 1 max 64
option name TinyBook type check default false
usiok
> setoption name USI_Ponder value false
> setoption name USI_Hash value 256
> setoption name MultiPV value 1
> isready
readyok
> usinewgame
> position startpos moves 2g2f 8c8d 7g7f 4a3b 6i7h 8d8e 8h7g 3c3d 7i8h 2b7g+ 8h7g 3a4b 3i3h 7a7b 4g4f 6c6d 3g3f 7b6c 5i6h 4b3c 3h4g 7c7d
> go btime 0 wtime 0 byoyomi 3000
info depth 1 seldepth 1 time 1 nodes 190 nps 190000 hashfull 142 score cp 151 multipv 1 pv 6h7i
info depth 2 seldepth 2 time 1 nodes 827 nps 827000 hashfull 142 score cp 227 multipv 1 pv 4i5h 6a5b
info depth 21 seldepth 22 time 2904 nodes 2092176 nps 720446 hashfull 176 score cp 104 multipv 1 pv 9g9f 9c9d 1g1f 1c1d 6h7i 6a5b 2i3g 8a7c 6g6f 5a4b 4g5f 6c5d 4f4e 4b3a 4i5h 5b6c 2h4h 6d6e 6f6e 5d6e
bestmove 9g9f

局面をsfenで入力する場合

> position sfen lnsg1k3/1r3+P3/p1ppp3p/7+B1/6p2/1+pP2L3/P2PPPP1P/9/LNSGKGSNL w BGSNP2r 1
> go btime 0 wtime 0 byoyomi 3000
info depth 1 seldepth 1 time 1 nodes 2 nps 2000 hashfull 0 score mate -2 multipv 1 pv 8b4b
info depth 2 seldepth 3 time 1 nodes 5 nps 5000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 3 seldepth 3 time 1 nodes 8 nps 8000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 4 seldepth 3 time 1 nodes 11 nps 11000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 5 seldepth 3 time 1 nodes 14 nps 14000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 6 seldepth 3 time 1 nodes 17 nps 17000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 7 seldepth 3 time 1 nodes 20 nps 20000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 8 seldepth 3 time 1 nodes 23 nps 23000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
info depth 9 seldepth 3 time 1 nodes 26 nps 26000 hashfull 0 score mate -2 multipv 1 pv 8b4b 4f4b+
bestmove 8b4b

usiのコマンド一覧

公式 http://www.geocities.jp/shogidokoro/usi.html

expectを使った実行コマンド

#!/usr/bin
expect -c "
spawn bin/release
expect \"info string Failed to open probability.bin.\"
send -- \"usi\n\"
expect \"usiok\"
send -- \"isready\n\"
expect \"readyok\"
send -- \"usinewgame\n\"
send -- \"position sfen l3g2G1/1+B+Rskp3/p1pp4p/4GB1K1/5Gps1/1LPP1P1n1/P+n2PGP1P/9/+s3s1SNL w R2BSN2L2P4 1\n\"
send -- \"go btime 0 wtime 0 byoyomi 30\n\"
expect \"bestmove resign\"
send -- \"exit\n\"
"