Move RNG gen to elsewhere

This commit is contained in:
2023-03-03 10:46:00 +00:00
parent 0752370ee7
commit fcda9726d5
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ fn main() {
let cli = Cli::parse();
let mut sys = DLASystem::<SmallRng, VectorStorage, LocalRandomWalker>::new(
cli.seed,
SmallRng::seed_from_u64(cli.seed),
cli.max_particles,
cli.stick_probability
);