1
2
3
4
5
6
7
8
9
//! Rust bindings for python interface and impl of AlphaZero policy evaluator
//!
//! It provides `rust-cpython` based bindings for some utilities to implement policy `AlphaZero`.
//!
pub use self::pybind_impl::*;
pub use self::pyeval::*;

mod pybind_impl;
mod pyeval;