Skip to content
Snippets Groups Projects
Commit 2d35ec05 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Use a separate function to check whether a cell has active sparts.

parent cc546377
No related branches found
No related tags found
2 merge requests!745Rewrite of MPI loops - Add stellar feedback loops,!744Mpi stars2 matthieu
......@@ -85,9 +85,16 @@ __attribute__((always_inline)) INLINE static int cell_are_gpart_drifted(
__attribute__((always_inline)) INLINE static int cell_are_spart_drifted(
const struct cell *c, const struct engine *e) {
/* Currently just use the gpart drift
* This function is just for clarity */
return cell_are_gpart_drifted(c, e);
#ifdef SWIFT_DEBUG_CHECKS
if (c->stars.ti_old_part > e->ti_current)
error(
"Cell has been drifted too far forward in time! c->ti_old=%lld (t=%e) "
"and e->ti_current=%lld (t=%e)",
c->stars.ti_old_part, c->stars.ti_old_part * e->time_base,
e->ti_current, e->ti_current * e->time_base);
#endif
return (c->stars.ti_old_part == e->ti_current);
}
/* Are cells / particles active for regular tasks ? */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment