From 4fafaba60732919aecd264e932a689530dcedd20 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 15 Jan 2025 18:31:48 +0200 Subject: [PATCH] simulator: Reduce generated sequence size defaults ...otherwise the simulator runs forever... --- simulator/runner/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simulator/runner/cli.rs b/simulator/runner/cli.rs index 2ad69d4ea..b4a6d94f1 100644 --- a/simulator/runner/cli.rs +++ b/simulator/runner/cli.rs @@ -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(