Added benchmark for Batch

This commit is contained in:
2022-12-19 07:42:08 +01:00
parent 2bdd3d9b89
commit 2b83ee5ef9
8 changed files with 131 additions and 66 deletions

View File

@@ -4,15 +4,15 @@ use std::collections::HashMap;
use std::f64::consts::{FRAC_1_SQRT_2, FRAC_2_SQRT_PI, SQRT_2};
use std::hash::Hash;
mod agent;
pub mod agent;
#[cfg(feature = "approx")]
mod approx;
mod batch;
pub mod batch;
mod game;
mod gaussian;
pub mod gaussian;
mod history;
mod message;
mod player;
pub mod player;
pub use game::Game;
pub use gaussian::Gaussian;