diff --git a/study.py b/study.py index 52433c5..67dac5f 100644 --- a/study.py +++ b/study.py @@ -33,8 +33,11 @@ def study(): start = time.time() for shape in config.nextShape(): - if not config.deterministic: - random.seed(datetime.now()) + if config.deterministic: + random.seed("DASsimulator") + else: + random.seed(random.randint(0, 100)) + sim.resetShape(shape) sim.initValidators()