From 62bb11ed30aed33027376241e8efb14ebbd88cd2 Mon Sep 17 00:00:00 2001 From: Vecna Date: Fri, 24 May 2024 17:34:37 -0400 Subject: [PATCH] Add config variable for whether censors share info --- src/simulation/state.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/simulation/state.rs b/src/simulation/state.rs index 88842a6..96288a0 100644 --- a/src/simulation/state.rs +++ b/src/simulation/state.rs @@ -17,4 +17,6 @@ pub struct State { pub prob_user_is_censor: f64, pub prob_user_submits_reports: f64, pub probs_user_in_country: Vec<(String, f64)>, + // Do the censors talk to each other? + pub sharing: bool, }