simulator: Reduce generated sequence size defaults

...otherwise the simulator runs forever...
This commit is contained in:
Pekka Enberg
2025-01-15 18:31:48 +02:00
parent 519ba75642
commit 4fafaba607

View File

@@ -18,14 +18,14 @@ pub struct SimulatorCLI {
short = 'n',
long,
help = "change the maximum size of the randomly generated sequence of interactions",
default_value_t = 20000
default_value_t = 5000
)]
pub maximum_size: usize,
#[clap(
short = 'k',
long,
help = "change the minimum size of the randomly generated sequence of interactions",
default_value_t = 10000
default_value_t = 1000
)]
pub minimum_size: usize,
#[clap(