From 7193fb2b16c8dccebd138f53f262b709bef03b72 Mon Sep 17 00:00:00 2001 From: Rene Luria Date: Tue, 3 May 2022 20:57:12 +0200 Subject: [PATCH] use 1000 x 1000 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9810be2..e9d5872 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,7 @@ fn main() { .expect("Oops Looks like we have a problem here..."); let disease = Disease::new(20, 10, 5, String::from("Covid 44")); - let mut population = Population::new(20, 10, 5, 300, 300, disease); + let mut population = Population::new(20, 10, 5, 1000, 1000, disease); //population.change_disease(disease); println!("Before Filling"); //population.display();