1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[cfg(feature = "gpu")]
pub mod dim;
pub mod topology;
mod ffi;
pub mod game;
pub mod neural_network;
pub mod train;
#[cfg(feature = "gpu")]
pub mod gpu_compute_instance;
#[cfg(test)]
mod tests;
#[cfg(target_arch = "wasm32")]
extern crate wasm_bindgen;