From 62a7e839fd6e1cb24cbadeb13ce61ced7cb20f67 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <schaller@strw.leidenuniv.nl> Date: Tue, 2 Apr 2019 10:03:47 +0200 Subject: [PATCH] Make the unskipping of star tasks also activate the time-integration tasks. --- src/cell.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cell.c b/src/cell.c index 6ed5b6f9dc..b102489863 100644 --- a/src/cell.c +++ b/src/cell.c @@ -3612,6 +3612,9 @@ int cell_unskip_stars_tasks(struct cell *c, struct scheduler *s) { if (c->stars.ghost != NULL) scheduler_activate(s, c->stars.ghost); if (c->stars.stars_in != NULL) scheduler_activate(s, c->stars.stars_in); if (c->stars.stars_out != NULL) scheduler_activate(s, c->stars.stars_out); + if (c->kick1 != NULL) scheduler_activate(s, c->kick1); + if (c->kick2 != NULL) scheduler_activate(s, c->kick2); + if (c->timestep != NULL) scheduler_activate(s, c->timestep); if (c->logger != NULL) scheduler_activate(s, c->logger); } -- GitLab