This commit is contained in:
Simon Gardling
2021-03-26 15:11:18 +00:00
parent a7bc5599bc
commit 7965d55de9
3 changed files with 17 additions and 25 deletions

View File

@@ -4,10 +4,13 @@ use physarum::model;
use rand::Rng;
fn main() {
let n_iterations = 16384;
// let n_iterations = 16384;
let n_iterations = 4096;
// let n_iterations = 10;
// let (width, height) = (512, 512);
// let (width, height) = (1024, 1024);
let (width, height) = (2048, 2048);
let (width, height) = (1024, 1024);
// let (width, height) = (2048, 2048);
let n_particles = 1 << 22;
println!("n_particles: {}", n_particles);