Some verbose logging if wanted (I'm running 50000 and dear god I'm bored)
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-03-08 16:49:33 +00:00
parent b94d001ab2
commit 183293fe7e
3 changed files with 20 additions and 6 deletions
+6 -5
View File
@@ -1,5 +1,6 @@
#![feature(array_zip)]
#![feature(generic_const_exprs)]
#![feature(let_chains)]
use clap::Parser;
use rand::prelude::*;
@@ -35,7 +36,7 @@ fn main() {
cli.max_particles,
);
drive_system(&mut sys, cli.max_frames);
drive_system(&mut sys, cli.max_frames, cli.notify_every);
write(&sys, cli.format, &cli.output);
}
@@ -49,7 +50,7 @@ fn main() {
cli.max_particles,
);
drive_system(&mut sys, cli.max_frames);
drive_system(&mut sys, cli.max_frames, cli.notify_every);
write(&sys, cli.format, &cli.output);
}
@@ -63,7 +64,7 @@ fn main() {
cli.max_particles,
);
drive_system(&mut sys, cli.max_frames);
drive_system(&mut sys, cli.max_frames, cli.notify_every);
write(&sys, cli.format, &cli.output);
}
@@ -77,7 +78,7 @@ fn main() {
cli.max_particles,
);
drive_system(&mut sys, cli.max_frames);
drive_system(&mut sys, cli.max_frames, cli.notify_every);
write(&sys, cli.format, &cli.output);
}
@@ -91,7 +92,7 @@ fn main() {
cli.max_particles,
);
drive_system(&mut sys, cli.max_frames);
drive_system(&mut sys, cli.max_frames, cli.notify_every);
write(&sys, cli.format, &cli.output);
}
}