Working on History struct. First test is passing.

This commit is contained in:
2022-06-12 23:11:13 +02:00
parent 5a7053fb5d
commit 4227617513
6 changed files with 241 additions and 18 deletions

View File

@@ -2,7 +2,7 @@ use std::fmt;
use crate::{Gaussian, BETA, GAMMA, N_INF};
#[derive(Debug)]
#[derive(Clone, Copy, Debug)]
pub struct Player {
pub prior: Gaussian,
pub beta: f64,