diff --git a/src/Makefile.am b/src/Makefile.am index 8b1b6c92471735829e88da333bba2a96fe43eec2..e00acf87999414616f1d07fb9eb0456e8f008bb6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,7 +96,7 @@ nobase_noinst_HEADERS = align.h approx_math.h atomic.h barrier.h cycle.h error.h gravity_iact.h kernel_long_gravity.h vector.h cache.h \ runner_doiact_nosort.h runner_doiact_hydro.h runner_doiact_stars.h runner_doiact_black_holes.h runner_doiact_grav.h \ runner_doiact_functions_hydro.h runner_doiact_functions_stars.h runner_doiact_functions_black_holes.h \ - units.h intrinsics.h minmax.h \ + runner_doiact_functions_limiter.h runner_doiact_limiter.h units.h intrinsics.h minmax.h \ kick.h timestep.h drift.h adiabatic_index.h io_properties.h dimension.h part_type.h periodic.h memswap.h \ dump.h logger.h sign.h logger_io.h timestep_limiter.h timestep_sync.h timestep_sync_part.h hashmap.h \ gravity.h gravity_io.h gravity_cache.h \ diff --git a/src/engine.c b/src/engine.c index 38c874e648227ac05a1cae6708d71701686471e3..131f1bfcca6cca9699cc75614bafdb07d7280928 100644 --- a/src/engine.c +++ b/src/engine.c @@ -1779,7 +1779,8 @@ void engine_skip_force_and_kick(struct engine *e) { t->type == task_type_kick1 || t->type == task_type_kick2 || t->type == task_type_timestep || t->type == task_type_timestep_limiter || - t->type == task_type_timestep_sync || t->subtype == task_subtype_force || + t->type == task_type_timestep_sync || + t->subtype == task_subtype_force || t->subtype == task_subtype_limiter || t->subtype == task_subtype_grav || t->type == task_type_end_hydro_force || t->type == task_type_end_grav_force ||