From 014cc09edd1518df2ae2aa2b169018bb9fbed750 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Thu, 19 Jan 2017 17:14:51 +0000 Subject: [PATCH] Restore default check for cells in active.h --- src/active.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/active.h b/src/active.h index 8eec56a774..04175b43a1 100644 --- a/src/active.h +++ b/src/active.h @@ -61,7 +61,7 @@ __attribute__((always_inline)) INLINE static int cell_is_active( const struct cell *c, const struct engine *e) { #ifdef SWIFT_DEBUG_CHECKS - if (c->ti_end_min < e->ti_current && c->nodeID != e->nodeID) + if (c->ti_end_min < e->ti_current) error( "cell in an impossible time-zone! c->ti_end_min=%lld (t=%e) and " "e->ti_current=%lld (t=%e)", -- GitLab