Make some variables public, just to be able to test ga.

This commit is contained in:
2018-10-26 16:09:49 +02:00
parent f16cc50901
commit 073a250701

View File

@@ -89,9 +89,9 @@ fn draw_margin(p: f64, beta: f64, total_players: f64) -> f64 {
pub struct TrueSkill {
mu: f64,
sigma: f64,
beta: f64,
tau: f64,
draw_probability: f64,
pub beta: f64,
pub tau: f64,
pub draw_probability: f64,
delta: f64,
}