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

Also skip the gravity force calculation when doing the fake step to convert hydro quantities.

parent d9acb43e
Branches
Tags
No related merge requests found
......@@ -2832,8 +2832,8 @@ void engine_skip_force_and_kick(struct engine *e) {
/* Skip everything that updates the particles */
if (t->type == task_type_drift || t->type == task_type_kick1 ||
t->type == task_type_kick2 || t->type == task_type_timestep ||
t->subtype == task_subtype_force || t->type == task_type_cooling ||
t->type == task_type_sourceterms)
t->subtype == task_subtype_force || t->subtype == task_subtype_grav ||
t->type == task_type_cooling || t->type == task_type_sourceterms)
t->skip = 1;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment