From f3ade95a00f6341abbb4f43a02d78fdac567b946 Mon Sep 17 00:00:00 2001 From: Keshav Date: Sun, 22 Feb 2026 19:37:26 +0100 Subject: [PATCH] An RNG-related bug covered by tests was solved with this change. --- neat/read_simulator/utils/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neat/read_simulator/utils/options.py b/neat/read_simulator/utils/options.py index fd05b6de..cf0abe88 100644 --- a/neat/read_simulator/utils/options.py +++ b/neat/read_simulator/utils/options.py @@ -266,7 +266,7 @@ def from_cli(output_dir: Path, # Update items to config or default values base_options.__dict__.update(final_args) - base_options.set_random_seed() + base_options.rng = base_options.set_random_seed() # Some options checking to clean up the args dict base_options.check_options()