usiagent 0.7.0

USIAgent is a framework for Shogi AI development that supports the usi protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate usiagent;
extern crate crossbeam_channel;
extern crate rand_xorshift;
extern crate rand;

mod common;
mod rule;
mod shogi;
mod agent;
mod selfmatch;
mod protocol;
mod event;
mod player;
mod hash;