From b5f8e635fa0a8c5981c845d58fe2bec2dccb6fd2 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <schaller@strw.leidenuniv.nl> Date: Wed, 1 May 2019 15:50:37 +0200 Subject: [PATCH] Code formatting. --- src/cell.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cell.c b/src/cell.c index c92ca44460..2e49e57d1f 100644 --- a/src/cell.c +++ b/src/cell.c @@ -3031,11 +3031,11 @@ int cell_unskip_hydro_tasks(struct cell *c, struct scheduler *s) { if (with_star_formation && with_feedback) { if (ci_active && ci->hydro.count > 0) { scheduler_activate_recv(s, ci->mpi.recv, task_subtype_sf_counts); - scheduler_activate_recv(s, ci->mpi.recv, task_subtype_ti); + scheduler_activate_recv(s, ci->mpi.recv, task_subtype_tend_spart); } if (cj_active && cj->hydro.count > 0) { scheduler_activate_send(s, cj->mpi.send, task_subtype_sf_counts, ci_nodeID); - scheduler_activate_send(s, cj->mpi.send, task_subtype_ti, ci_nodeID); + scheduler_activate_send(s, cj->mpi.send, task_subtype_tend_spart, ci_nodeID); } } @@ -3087,11 +3087,11 @@ int cell_unskip_hydro_tasks(struct cell *c, struct scheduler *s) { if (with_star_formation && with_feedback) { if (cj_active && cj->hydro.count > 0) { scheduler_activate_recv(s, cj->mpi.recv, task_subtype_sf_counts); - scheduler_activate_recv(s, cj->mpi.recv, task_subtype_ti); + scheduler_activate_recv(s, cj->mpi.recv, task_subtype_tend_spart); } if (ci_active && ci->hydro.count > 0) { scheduler_activate_send(s, ci->mpi.send, task_subtype_sf_counts, cj_nodeID); - scheduler_activate_send(s, ci->mpi.send, task_subtype_ti, cj_nodeID); + scheduler_activate_send(s, ci->mpi.send, task_subtype_tend_spart, cj_nodeID); } } } -- GitLab