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

@@ -1,10 +1,10 @@
use crate::{gaussian::Gaussian, player::Player, N_INF};
#[derive(Debug)]
pub(crate) struct Agent {
pub(crate) player: Player,
pub(crate) message: Gaussian,
pub(crate) last_time: i64,
pub struct Agent {
pub player: Player,
pub message: Gaussian,
pub last_time: i64,
}
impl Agent {