diff --git a/examples/Cooling/CoolingRates/cooling_rates.c b/examples/Cooling/CoolingRates/cooling_rates.c index f96701f4c5645818bc5c72d0c9b607ce29f1b597..e7ff0340853e5cd5361286bd8af5c547681b4f63 100644 --- a/examples/Cooling/CoolingRates/cooling_rates.c +++ b/examples/Cooling/CoolingRates/cooling_rates.c @@ -16,7 +16,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * ******************************************************************************/ -#include "../config.h" +#include "config.h" /* Some standard headers. */ #include <fenv.h> diff --git a/src/runner.h b/src/runner.h index 6af0cd227374afd616b3329a8dbd527634902922..60466dc922f445e79bd37b855a10ffb6751aa371 100644 --- a/src/runner.h +++ b/src/runner.h @@ -77,7 +77,7 @@ void runner_do_drift_part(struct runner *r, struct cell *c, int timer); void runner_do_drift_gpart(struct runner *r, struct cell *c, int timer); void runner_do_kick1(struct runner *r, struct cell *c, int timer); void runner_do_kick2(struct runner *r, struct cell *c, int timer); -void runner_do_end_force(struct runner *r, struct cell *c, int timer); +void runner_do_end_hydro_force(struct runner *r, struct cell *c, int timer); void runner_do_init(struct runner *r, struct cell *c, int timer); void runner_do_cooling(struct runner *r, struct cell *c, int timer); void runner_do_grav_external(struct runner *r, struct cell *c, int timer); diff --git a/tests/test125cells.c b/tests/test125cells.c index 3b49e71163d05afdc0e33a33306121dc48a22283..7fc743725a58ed82c815dc97b3a7b89351c3f2c0 100644 --- a/tests/test125cells.c +++ b/tests/test125cells.c @@ -809,7 +809,7 @@ int main(int argc, char *argv[]) { timings[26] += getticks() - self_tic; /* Finally, give a gentle kick */ - runner_do_end_force(&runner, main_cell, 0); + runner_do_end_hydro_force(&runner, main_cell, 0); const ticks toc = getticks(); time += toc - tic; @@ -960,7 +960,7 @@ int main(int argc, char *argv[]) { self_all_force(&runner, main_cell); /* Finally, give a gentle kick */ - runner_do_end_force(&runner, main_cell, 0); + runner_do_end_hydro_force(&runner, main_cell, 0); // runner_do_kick2(&runner, main_cell, 0); const ticks toc = getticks(); diff --git a/tests/test27cellsStars.c b/tests/test27cellsStars.c index 0377fc49edfedc8b1d9ce0630821622117187c9b..d94de68932a4c6e1f7381fd14105ce540be2de50 100644 --- a/tests/test27cellsStars.c +++ b/tests/test27cellsStars.c @@ -382,7 +382,6 @@ int main(int argc, char *argv[]) { struct stars_props stars_p; stars_p.eta_neighbours = h; stars_p.h_tolerance = 1e0; - stars_p.h_max = FLT_MAX; stars_p.max_smoothing_iterations = 1; struct engine engine;