From 828a3a2941ea0521713af37d77ba8920a6f416ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Sierro?= Date: Fri, 11 Jun 2021 09:46:52 +0200 Subject: [PATCH] quick bug fix --- src/scgenerator/physics/simulate.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/scgenerator/physics/simulate.py b/src/scgenerator/physics/simulate.py index a9c7df0..9366854 100644 --- a/src/scgenerator/physics/simulate.py +++ b/src/scgenerator/physics/simulate.py @@ -626,9 +626,7 @@ class RaySimulations(Simulations, priority=2): self.propagator = ray.remote(RayRK4IP).options( override_environment_variables=env.all_environ() ) - self.sim_jobs_per_node = min( - self.param_seq.num_sim, self.param_seq["simulation", "parallel"] - ) + self.update_cluster_frequency = 3 self.jobs = [] self.actors = {}