diff --git a/Publication/src/Config.py b/Publication/src/Config.py index 2d5c2a37e..759d33590 100644 --- a/Publication/src/Config.py +++ b/Publication/src/Config.py @@ -56,8 +56,8 @@ def __init__(self) -> None: """ Default simulation parameter seteup. """ self.__num_steps = 120 # number of steps. - self.__num_replicates = 1 # number of replicates - self.__num_cores = 1 # number of cores to use + self.__num_replicates = 100 # number of replicates + self.__num_cores = 10 # number of cores to use @staticmethod def wgs2xy(value: np.ndarray) -> np.ndarray: diff --git a/Publication/src/run_temporal_replicates.py b/Publication/src/run_temporal_replicates.py index 6b1531e59..801fc37a3 100644 --- a/Publication/src/run_temporal_replicates.py +++ b/Publication/src/run_temporal_replicates.py @@ -48,7 +48,7 @@ def run_replicates(sws: np.ndarray = np.array([0, 102, 1., 1.])): print("Replicate: ", i, " | Seed: ", seed, " | Weight EIBV: ", weight_eibv, " | Weight IVR: ", weight_ivr) simulator = Simulator(weight_eibv=weight_eibv, weight_ivr=weight_ivr, random_seed=seed, replicate_id=i, debug=debug) - # simulator.run_myopic() + simulator.run_myopic() simulator.run_rrt()