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

Also use the new name of the stars type enum in the gravity checks routine.

parent 87372dde
No related branches found
No related tags found
No related merge requests found
......@@ -487,7 +487,7 @@ void gravity_exact_force_compute_mapper(void *map_data, int nr_gparts,
long long id = 0;
if (gpi->type == swift_type_gas)
id = parts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_star)
else if (gpi->type == swift_type_stars)
id = sparts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_black_hole)
error("Unexisting type");
......@@ -676,7 +676,7 @@ void gravity_exact_force_check(struct space *s, const struct engine *e,
long long id = 0;
if (gpi->type == swift_type_gas)
id = parts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_star)
else if (gpi->type == swift_type_stars)
id = sparts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_black_hole)
error("Unexisting type");
......@@ -730,7 +730,7 @@ void gravity_exact_force_check(struct space *s, const struct engine *e,
long long id = 0;
if (gpi->type == swift_type_gas)
id = parts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_star)
else if (gpi->type == swift_type_stars)
id = sparts[-gpi->id_or_neg_offset].id;
else if (gpi->type == swift_type_black_hole)
error("Unexisting type");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment