Skip to content

Latest commit

 

History

History
58 lines (42 loc) · 1.26 KB

README.jp.md

File metadata and controls

58 lines (42 loc) · 1.26 KB

Girigiri

Rustで書かれた将棋AIです。

インストール

  1. Rustのインストール(https://www.rust-lang.org/en-US/install.html)

  2. Girigiriのインストール

    $ git clone https://github.com/bknshn/girigiri
    

遊び方

  1. バイナリの作成

    $ cargo build --release
    
  2. 将棋所のインストール

  3. 将棋所を起動し、エンジンにgirigiri/target/release/usiを設定

  • LinuxやMacではMonoを使う必要あり
mono /usr/local/bin/Shogidokoro/Shogidokoro.exe

その他

  • ローカルで自己対戦

    $ cargo run --bin auto --release
    
  • floodgateでの対局

    $ cargo run --bin floodgate --release
    
  • CSAの大会用

    $ cargo run --bin main --release
    
  • 評価関数の学習

    $ cargo run --bin learn --release
    
  • デバッグ

    $ cargo run --bin debug --release
    

入門

Rustで将棋AI入門 1-動かしてみる