From fba0dd79a1d874f0b631e13d69df47f87641c354 Mon Sep 17 00:00:00 2001 From: Pedro Gonnet <gonnet@google.com> Date: Tue, 25 Apr 2017 23:29:10 +0200 Subject: [PATCH] formatting. --- src/runner.c | 26 ++++++++++++-------------- src/runner_doiact.h | 5 +++-- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/src/runner.c b/src/runner.c index 4a769f7620..083b3de7c6 100644 --- a/src/runner.c +++ b/src/runner.c @@ -290,12 +290,10 @@ void runner_do_sort_ascending(struct entry *sort, int N) { } void runner_check_sorts(struct cell *c, int flags) { - if (flags & ~c->sorted) - error("Inconsistent sort flags (downward)!"); + if (flags & ~c->sorted) error("Inconsistent sort flags (downward)!"); if (c->split) for (int k = 0; k < 8; k++) - if (c->progeny[k] != NULL) - runner_check_sorts(c->progeny[k], c->sorted); + if (c->progeny[k] != NULL) runner_check_sorts(c->progeny[k], c->sorted); } /** @@ -321,15 +319,15 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int clock) { /* Check that the particles have been moved to the current time */ if (!cell_is_drifted(c, r->e)) error("Sorting un-drifted cell"); - + #ifdef SWIFT_DEBUG_CHECKS /* Make sure the sort flags are consistent (downward). */ runner_check_sorts(c, c->sorted); /* Make sure the sort flags are consistent (upard). */ - for (struct cell *finger = c->parent; finger != NULL; finger = finger->parent) { - if (finger->sorted & ~c->sorted) - error("Inconsistent sort flags (upward)."); + for (struct cell *finger = c->parent; finger != NULL; + finger = finger->parent) { + if (finger->sorted & ~c->sorted) error("Inconsistent sort flags (upward)."); } #endif @@ -344,7 +342,7 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int clock) { c->sorted = 0; } if (flags == 0) return; - + /* start by allocating the entry arrays. */ if (c->sort == NULL || c->sortsize < count) { if (c->sort != NULL) free(c->sort); @@ -357,7 +355,7 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int clock) { /* Does this cell have any progeny? */ if (c->split) { - + /* Fill in the gaps within the progeny. */ float dx_max_sort = 0.0f; for (int k = 0; k < 8; k++) { @@ -495,14 +493,14 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int clock) { if (finger[k].i >= count) error("Sorting failed, indices borked."); } } - + /* Make sure the sort flags are consistent (downward). */ runner_check_sorts(c, flags); /* Make sure the sort flags are consistent (upward). */ - for (struct cell *finger = c->parent; finger != NULL; finger = finger->parent) { - if (finger->sorted & ~c->sorted) - error("Inconsistent sort flags."); + for (struct cell *finger = c->parent; finger != NULL; + finger = finger->parent) { + if (finger->sorted & ~c->sorted) error("Inconsistent sort flags."); } #endif diff --git a/src/runner_doiact.h b/src/runner_doiact.h index 5861285b64..b7a3c3e20b 100644 --- a/src/runner_doiact.h +++ b/src/runner_doiact.h @@ -605,11 +605,12 @@ void DOPAIR_SUBSET(struct runner *r, struct cell *restrict ci, sid = sortlistID[sid]; /* Have the cells been sorted? */ - if (!(cj->sorted & (1 << sid)) || cj->dx_max_sort > space_maxreldx * cj->dmin) { + if (!(cj->sorted & (1 << sid)) || + cj->dx_max_sort > space_maxreldx * cj->dmin) { DOPAIR_SUBSET_NAIVE(r, ci, parts_i, ind, count, cj); return; } - + /* Pick-out the sorted lists. */ const struct entry *restrict sort_j = &cj->sort[sid * (cj->count + 1)]; const float dxj = cj->dx_max_sort; -- GitLab