From 8d54fa1eb116b2a8bff28b5d6bd3468aaa6a53e8 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 27 Mar 2025 14:17:38 -0400 Subject: [PATCH] settings update --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index c9b27a3..0381b56 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ fn main() { let (width, height) = (1024, 1024); let n_particles = 1 << 22; let diffusivity = 1; - let n_populations = 1; + let n_populations = 3; let mut model = model::Model::new(width, height, n_particles, n_populations, diffusivity); model.print_configurations(); @@ -32,8 +32,6 @@ fn main() { "libx264", "-preset", "fast", - "-crf", - "23", "output.mp4", ]) .stdin(std::process::Stdio::piped())