소스 검색

Add config variable for whether censors share info

Vecna 2 년 전
부모
커밋
62bb11ed30
1개의 변경된 파일과 2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/simulation/state.rs

+ 2 - 0
src/simulation/state.rs

@@ -17,4 +17,6 @@ pub struct State {
     pub prob_user_is_censor: f64,
     pub prob_user_is_censor: f64,
     pub prob_user_submits_reports: f64,
     pub prob_user_submits_reports: f64,
     pub probs_user_in_country: Vec<(String, f64)>,
     pub probs_user_in_country: Vec<(String, f64)>,
+    // Do the censors talk to each other?
+    pub sharing: bool,
 }
 }