From c812010ee3be06b6c6da4e1db85875cb2f216787 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Mon, 10 Jul 2017 13:31:11 +0200 Subject: [PATCH] No need to specify the cell_split_size if we use the default value. --- examples/EAGLE_12/eagle_12.yml | 3 --- src/runner.c | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/EAGLE_12/eagle_12.yml b/examples/EAGLE_12/eagle_12.yml index 7d07b2cef2..b4697f96d4 100644 --- a/examples/EAGLE_12/eagle_12.yml +++ b/examples/EAGLE_12/eagle_12.yml @@ -12,9 +12,6 @@ TimeIntegration: time_end: 1e-2 # The end time of the simulation (in internal units). dt_min: 1e-10 # The minimal time-step size of the simulation (in internal units). dt_max: 1e-4 # The maximal time-step size of the simulation (in internal units). - -Scheduler: - cell_split_size: 400 # Parameters governing the snapshots Snapshots: diff --git a/src/runner.c b/src/runner.c index c6aeb6db89..5af652d8a7 100644 --- a/src/runner.c +++ b/src/runner.c @@ -464,7 +464,7 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int cleanup, if (c->sorted == 0) { #ifdef SWIFT_DEBUG_CHECKS if (xparts != NULL && c->nodeID != engine_rank) - error("Have non-NULL xparts in foreign cell"); + error("Have non-NULL xparts in foreign cell"); #endif /* And the individual sort distances if we are a local cell */ -- GitLab